Hide price of products in category if not logged in
-
Hi,
I have found some code, that hides all product prices if users are not logged in. However, I would like it to only hide prices on a category-slug with ‘carel’. Is this possible to add in this code below:
// Hide prices
add_action(‘after_setup_theme’,’magik_activate_filter’) ;function magik_activate_filter()
{
add_filter(‘woocommerce_get_price_html’, ‘magik_show_price_logged’);
}function magik_show_price_logged($price)
{
if(is_user_logged_in() )
{
return $price;
}
else
{
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_price’, 10 );
remove_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_price’, 10 );
return ‘Log ind for at se priser‘;
}
}`
- The topic ‘Hide price of products in category if not logged in’ is closed to new replies.