Advertisement
wpgenie

remove lottery history tab on single lottery page

Mar 7th, 2021
995
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /* this code snippet should be copy pasted to your child theme's functions.php file */
  2.  
  3. add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
  4. function woo_remove_product_tabs( $tabs ) {
  5.     // Remove lottery history tab
  6.     unset( $tabs['lottery_history'] );
  7.     return $tabs;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement