Advertisement
michaellevelup

Hide out of stock

Nov 3rd, 2022
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function king_hide_out_of_stock( $option ) {
  2.  
  3.     if( is_search() || is_product_category() || is_front_page() || ){
  4.        
  5.         $option = 'yes';
  6.         return $option;
  7.  
  8.     }
  9.     else{
  10.         return $option;
  11.     }
  12.    
  13. }
  14.  
  15. add_filter( 'pre_option_woocommerce_hide_out_of_stock_items', 'king_hide_out_of_stock' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement