Tagged: enfold, tabs, woocommerce
-
AuthorPosts
-
April 28, 2020 at 6:13 pm #1207896
Hello, I added the following code to my functions.php in order to display woocommerce tabs under the product image/gallery but it displays the tabs at the end of the content section and as full width.
How can I make the show righ under the product image with the same width?
Here’s the code I used:add_action(‘init’, ‘avf_move_product_output’);
function avf_move_product_output() {
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 10 );
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 1 );
add_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 5 );
}Thanks in advance.
May 1, 2020 at 5:02 am #1208713Hey Jorge,
Maybe this will help you out? https://businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/
Best regards,
RikardMay 8, 2020 at 3:01 pm #1211058Hello, plese consider this ticket as solved.
Thank you.May 8, 2020 at 9:33 pm #1211234Hi jorgepelaez,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
VictoriaMay 8, 2020 at 9:33 pm #1211236Hi jorgepelaez,
I’m glad to hear that Rikard could help you out :)
Thanks for using Enfold and have a great day!Best regards,
NikkoNovember 29, 2022 at 4:40 pm #1374320Hello. I need to move my WooCommerce tabs to underneath the product images too. Can someone help with this code?
November 30, 2022 at 2:50 am #1374394Hi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function av_woo_tabs_below_product_image() { remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 ); add_action( 'woocommerce_product_thumbnails', 'woocommerce_output_product_data_tabs', 10 ); } add_action( 'init', 'av_woo_tabs_below_product_image');Best regards,
MikeDecember 7, 2022 at 12:25 pm #1375332This reply has been marked as private.December 7, 2022 at 2:09 pm #1375343Hi,
To open a new thread please click this link.
Thank you for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘Move woocommerce tabs under image gallery’ is closed to new replies.

