Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save endurtech/14e152c14fbbbdc309b4a652ee589fad to your computer and use it in GitHub Desktop.

Select an option

Save endurtech/14e152c14fbbbdc309b4a652ee589fad to your computer and use it in GitHub Desktop.
<?php
// Hide Product Pricing for Logged-Out Users in WooCommerce
// https://endurtech.com/hide-product-pricing-for-logged-out-users-in-woocommerce/
if( ! is_user_logged_in() )
{
add_filter( 'woocommerce_get_price_html', 'woocommerce_hide_product_price' );
function woocommerce_hide_product_price( $price )
{
return '<a href="' . get_permalink(wc_get_page_id('myaccount')) . '">' . __('Login to see prices', 'enfold-child') . '</a>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment