Guest User

Untitled

a guest
Dec 15th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. add_action( 'template_redirect', 'bb_clean_start_page_without_tabs_upsell_related', 1 );
  2. function bb_clean_start_page_without_tabs_upsell_related(){
  3.  
  4. // remove product tabs, upsell and related products IF
  5. // the page is the selected front page by using
  6. // WP is_front_page function
  7. if( is_front_page() ) {
  8. remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); // Product tabs
  9. remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 ); // Upsells
  10. remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); // Related products
  11. } }
Add Comment
Please, Sign In to add comment