Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #447960

    Hello,

    I want to modify woocommerce-tabs Product Description position.

    Here is an image that it is to describe what I mean.

    http://jmja.com.cn/rose/position.png

    Thanks

    #448872

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    if(is_singular('product')){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$('.single-product-summary').after($('.woocommerce-tabs').detach())
        });
    })(jQuery);
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    #449436

    Hi,

    Thanks for your help.

    Regards,
    Zeng

    #449488

    Hi!

    Glad we could help.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘modify woocommerce-tabs Product Description position’ is closed to new replies.