Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save MinaPansuriya/fc1ba81800c93000e84687657728deed to your computer and use it in GitHub Desktop.

Select an option

Save MinaPansuriya/fc1ba81800c93000e84687657728deed to your computer and use it in GitHub Desktop.

Revisions

  1. MinaPansuriya created this gist Nov 11, 2016.
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    /**
    * @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/>';
    }
    }