• Resolved Daniel

    (@marketinggreenpaint)


    Hi, I am looking to hide price in this specific category for all products.
    The category is called NAF.

    I have tried this code I found online but unsuccessfully, hope you guys can help me out.

    function tyches_hide_prices_on_all_categories( $price, $product ) {
    if ( is_product_category('NAF') ) {
    return ''; // Empty string = no price!
    }
    
    return $price;
    }
    
    add_filter( 'woocommerce_get_price_html', 'tyches_hide_prices_on_all_categories', 10, 2 ); 

    EDIT: Just realised the code I tried adds a sentence saying “No price!”, I have no need for that. Not showing the price is more than enough for me.

    Thank you in advance,
    Daniel

    • This topic was modified 4 years, 9 months ago by Daniel.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hiding prices in specific category’ is closed to new replies.