Guest User

Untitled

a guest
Jul 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // 1. Remove the description product tab
  2. add_filter( 'woocommerce_product_tabs', 'remove_descrip_product_tab', 98 );
  3. function remove_descrip_product_tab( $tabs ) {
  4. // Remove the description tab
  5. unset( $tabs['description'] );
  6.  
  7. return $tabs;
  8. }
  9.  
  10. // 2. Add the product description after the product short description
  11. add_action( 'woocommerce_single_product_summary', 'my_custom_action', 25 );
  12. function my_custom_action() {
  13. global $post;;
  14.  
  15. // Product description output
  16. echo '<div class="product-post-content">' . the_content() . '</div>';
  17. }
Add Comment
Please, Sign In to add comment