Advertisement
michaellevelup

Hide out of stock related pages

Nov 3rd, 2022
686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. function kt_hide_out_of_stock_option( $option ){
  2.     return 'yes';
  3. }
  4.  
  5. add_action( 'woocommerce_before_template_part', function( $template_name ) {
  6.  
  7.     if( $template_name !== "single-product/related.php" ) {
  8.         return;
  9.     }
  10.  
  11.     add_filter( 'pre_option_woocommerce_hide_out_of_stock_items', 'kt_hide_out_of_stock_option' );
  12.  
  13. } );
  14.  
  15. add_action( 'woocommerce_after_template_part', function( $template_name ) {
  16.  
  17.     if( $template_name !== "single-product/related.php" ) {
  18.         return;
  19.     }
  20.  
  21.     remove_filter( 'pre_option_woocommerce_hide_out_of_stock_items', 'kt_hide_out_of_stock_option' );
  22.  
  23. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement