Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MinaPansuriya/fc1ba81800c93000e84687657728deed to your computer and use it in GitHub Desktop.
Save MinaPansuriya/fc1ba81800c93000e84687657728deed to your computer and use it in GitHub Desktop.
/**
* @Title: WooCommerce Show Custom Text on Shop page to non-logged in Customer* @Author: Mina Pansuriya
* @Website: http://minapansuriya.com
*/
add_action( 'woocommerce_archive_description', 'pbs_woo_product_archive_additiona_details', 20 );
function pbs_woo_product_archive_additiona_details( ){
if(! is_user_logged_in() )
{
echo '<div>Add your custom message for non-logged in user here!!</div><br/>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment