Guest User

Untitled

a guest
Oct 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. /**
  3. * Prevent products being purchased from archive
  4. * @return Boolean
  5. */
  6. function pewc_filter_is_purchasable( $is_purchasable, $product ) {
  7. if( is_archive() ) {
  8. return false;
  9. }
  10. return $is_purchasable;
  11. }
  12. add_filter( 'woocommerce_is_purchasable', 'pewc_filter_is_purchasable', 10, 2 );
Add Comment
Please, Sign In to add comment