Hide Price for the guest users
Using functions.php
If you want to add the “Hide price for the guest users” functionality from the functions.php then you can use this hook :
Go to wp-content folder
Open theme folder
Choose your template theme
Open functions.php with code editor and use this snippet at the bottom
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 '<a href="' . get_permalink(woocommerce_get_page_id('myaccount')) . '">Login for Price</a>';
}
}
add_filter('woocommerce_is_purchasable', 'my_woocommerce_is_purchasable', 10, 2);
function my_woocommerce_is_purchasable($is_purchasable, $product) {
$isLoggedIn = is_user_logged_in();
if(true == $isLoggedIn){
return true;
}
return false;
}
Using Code Snippet:
Same above code you can use in code snippet plugin
Create a simple php template, paste the above code and run your php template to the whole website
Thanks
[Phantasm Digital Works]

