Advertisement
Guest User

Woo Catalog mode - businessbloomer

a guest
Jul 27th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. /**
  2. * @snippet Hide Price & Add to Cart for Logged Out Users
  3. * @how-to Watch tutorial @ https://businessbloomer.com/?p=19055
  4. * @sourcecode https://businessbloomer.com/?p=299
  5. * @author Rodolfo Melogli
  6. * @testedwith WooCommerce 3.3.4
  7. */
  8.  
  9. add_action( 'init', 'bbloomer_hide_price_add_cart_not_logged_in' );
  10.  
  11. function bbloomer_hide_price_add_cart_not_logged_in() {
  12. if ( !is_user_logged_in() ) {
  13. remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
  14. remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
  15. remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
  16. remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement