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

    Hi everyone,

    on single product pages the sidebar is on the left side. I was happy to find the code to get it on the right side:
    http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/

    It worked well except that the sidebar is a bit smaller than the normal one. It looks like that:

    http://erfolgswelt24.com/auf-einen-blick/marketing-werkstatt-no-1-marketing-konzeption/

    As you can see the text within “product search” is being cropped. Is there a way to get the sidebar bigger or can I change the words within the product seach (Suche nach Produkten). I didn’t find a possibility to change.

    Also the rating field is not correct. Without sidebar, the checking field is above the name and with sidebar it’s getting worse.

    Thanks, Sophie

    #294028

    Hey Sophieja23!

    Please change the code you have posted from documentation to following one

    
    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    	echo "<div class='four units single-product-main-image alpha'>";
    }
     
    function avia_close_image_div()
    {
    	global $avia_config;
    	$avia_config['currently_viewing'] = "shop_single";
     
    	echo "</div>";
    }
     
     
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    add_action( 'woocommerce_after_single_product_summary',  'avia_close_summary_div', 3);
    function avia_add_summary_div()
    {
    	echo "<div class='four units single-product-summary'>";
    }
     
     
     
    function avia_close_summary_div()
    {
    	echo "</div>"; //close out the summary
    	echo "<div class='four units single-product-sidebar'>";
    	get_sidebar();
    	echo "</div>";
    }

    Regards,
    Yigit

    #294029

    Hi!

    Code i posted above will make product image, product summary and sidebar div’s equal in width. Please also add following code to Quick CSS in Enfold theme options under General Styling tab

    #top #review_form #respond .comment-form-rating, #commentform label { position: initial; }

    Best regards,
    Yigit

    #294270

    It works now, thank you :)

    • This reply was modified 9 years, 9 months ago by Sophieja23.
    #294297

    Hey!

    You are welcome Sophie, glad we could help! :) Let us know if you have any other questions or issues

    Regards,
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Sidebar on single product page’ is closed to new replies.