Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #359080

    Hi I really satisfied with your enfold theme.
    I’m using woocommerce for my website (http://berceuse.co.kr)
    It’s korean, You might get confused little bit or a lot. sorry for that.
    Here is my issue page(http://berceuse.co.kr/shop/5-cm-single/)
    I’d like to put all my product detail image at under #tab description box. like full with contents.
    When I apply side bar for shop page it’s cover one single product page too.
    Also i want to use side bar for shop page, but i don’t want to use side bar at single products page. what can i do?

    How can i customize that? please help me out.

    Thanks

    #359402

    Hey bkinckorea!

    Thank you for using Enfold.

    If you don’t mind, please provide a screenshot of what you’re trying to accomplish within the single product page? It’ll help. If you want to make the tab section full width, use this on functions.php:

    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 );
    }

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.