Hello,
There is no option available for this in the theme settings. This requires customization, which is beyond our support policy.
I have searched for a possible solution and found a custom function that you can add to your functions.php file. I have tested this code on our test site, and it is working fine.
If the provided code does not work as expected, unfortunately, we are unable to modify it further.
Add this to your theme’s functions.php file of the theme.
function hide_products_without_price( $query ) {
if ( ! is_admin() && $query->is_main_query() && ( is_shop() || is_product_category() ) ) {
$meta_query = $query->get( 'meta_query' );
// Add the condition to check if price is empty
$meta_query[] = array(
'key' => '_price',
'value' => '',
'compare' => '!=',
);
$query->set( 'meta_query', $meta_query );
}
}
add_action( 'pre_get_posts', 'hide_products_without_price' );
Hope this Helps!
Best Regards.