Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. add_filter( 'woocommerce_product_tabs', 'vagelis_dev_merge_tabs', 99 );
  2. function vagelis_dev_merge_tabs( $tabs ) {
  3. $tabs['description']['callback'] = function() {
  4. global $product;
  5. the_content();
  6. do_action( 'woocommerce_product_additional_information', $product );
  7. };
  8. unset( $tabs['additional_information'] );
  9.  
  10. return $tabs;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement