Advertisement
GochiSiyan

remove product

Mar 7th, 2022
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'njengah_remove_products_from_shop_page' );
  2.  
  3. function njengah_remove_products_from_shop_page( $q ) {
  4. if ( ! $q->is_main_query() ) return;
  5. if ( ! $q->is_post_type_archive() ) return;
  6. if ( ! is_admin() && is_shop() ) {
  7. $q->set( 'post__in', array(0) );
  8. }
  9. remove_action( 'pre_get_posts', 'njengah_remove_products_from_shop_page' );
  10.  
  11. }
  12. remove_action( 'woocommerce_no_products_found', 'wc_no_products_found' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement