Home Forums WoodMart support forum Hide products without price

Hide products without price

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #651406

    grcp
    Participant

    Hi support,

    Is it possible to hide the products from shop if we have not added any price?

    Thank you

    #651488

    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.

    #651608

    grcp
    Participant

    Thank you !

    #651714

    Hello,

    You’re very welcome! I’m glad I could help. If you need anything else, feel free to reach out!

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards,

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Hide products without price’ is closed to new replies.