Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #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.

    #1208713

    Hey Jorge,

    Maybe this will help you out? https://businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/

    Best regards,
    Rikard

    #1211058

    Hello, plese consider this ticket as solved.
    Thank you.

    #1211234

    Hi jorgepelaez,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1211236

    Hi jorgepelaez,

    I’m glad to hear that Rikard could help you out :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1374320

    Hello. I need to move my WooCommerce tabs to underneath the product images too. Can someone help with this code?

    #1374394

    Hi,
    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');

    the expected results:
    woo_move_description_tabs_under_product_image.jpeg

    Best regards,
    Mike

    #1375332
    This reply has been marked as private.
    #1375343

    Hi,
    To open a new thread please click this link.
    Thank you for using Enfold.

    Best regards,
    Mike

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Move woocommerce tabs under image gallery’ is closed to new replies.