This is a simple snippet that will allow you to move the Related Products from below the tabs to inside the single product tabs, in a brand new tab.
PHP Snippet: Move Related Products to a Tab – WooCommerce Single Product Page
/**
* @snippet Related Products in a New Product Tab - WooCommerce
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 7
* @community https://businessbloomer.com/club/
*/
// First, let's remove related products from their original position
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
// Second, let's add a new tab
add_filter( 'woocommerce_product_tabs', 'bbloomer_new_product_tab' );
function bbloomer_new_product_tab( $tabs ) {
$tabs['related_products'] = array(
'title' => __( 'Try it with', 'woocommerce' ),
'priority' => 50,
'callback' => 'bbloomer_new_product_tab_content'
);
return $tabs;
}
// Third, let's put the related products inside
function bbloomer_new_product_tab_content() {
woocommerce_output_related_products();
}
Hello, is it possible to add multiple tabs using this code?
Sure, check https://www.businessbloomer.com/woocommerce-add-tab-single-product-page/ please
Hi, awesome blog and tips, is it possible to have a single tab with the long description and the additional information? both in one, thanks
Hi Hectorius, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi, can you please confirm if this code still works on the latest WP/WC update? I tried just copying and pasting your exact code into my functions.php, and nothing shows up on the frontend.
Thanks!
Hey Harv, positive, still works 🙂
Awesome … you are great man
Thank you 🙂
The code works well but it shows only 2 related products on me,any thoughts?
Hey Alex, thanks for your comment! You’re right 🙂 I updated the snippet and it should work now – let me know
Hi there,
Thanks for taking the time to post this. I was just wondering if you knew of any way to hide Out-of-Stock items from the Woocommerce Related products slider?
Thank you.
Hey, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R