Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1132349

    Hello,
    With code snippet, I’ve moved product tabs below image

    function av_woo_tabs_below() { 
    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', 20 );
    
    } 
    add_action( 'init', 'av_woo_tabs_below');

    and this works OK.
    Additionally, I want to keep the content of the tabs: (tabs headings and tabs content) .container width but tabs wrapper (woocommerce-tabs wc-tabs-wrapper to be full viewport width. How can I make that?

    #1132812

    Hey adplusdesign,

    Could you post a link to where we can see the results you are getting and point out what you would like to change there please?

    Best regards,
    Rikard

    #1132899

    Hello,
    English is not my native language, so I will try to explain.
    On my page (localhost) my single product page layout is:
    https://drive.google.com/file/d/1SlndHZ9jevsjU1fzrsDtAP3g0fATOWb7/view?usp=sharing
    Tabs with description open are container width.
    I want the background for tabs to look like this (removing tabs and showing additional info under description is another topic):
    https://drive.google.com/file/d/15kvVg9hLgT59k9R2a2nbJOUSVdn8Rq1a/view?usp=sharing

    • This reply was modified 5 years, 1 month ago by adplusdesign.
    #1133330

    Hello,
    I have found solution.

    function av_woo_tabs_below() { 
    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', 20 );
    add_action(    'woocommerce_after_main_content', 'woocommerce_template_product_description', 10 );
    
    } 
    add_action( 'init', 'av_woo_tabs_below');
    
    function woocommerce_template_product_description() {
    	echo '<div class="container_wrap long_description">';
    		echo '<div class="container">';
    			woocommerce_get_template( 'single-product/tabs/description.php' );			
    		echo '</div>';
    	echo '</div>';
    }
    #1133930

    Hi,

    Glad to know that you’ve a solution. And thanks for sharing. We’ll close the thread now. Please don’t hesitate to open a new one if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

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