Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #1206445

    Hi
    I am using one of the predesigned shop pages in Enfold, called custom shop, but when I activate the page as my shop page in woocommerce, it changes appearance, going from no side bares, to having side bares in both sides of the shop page. When I decelect the shop page it looks as it should. Furthermore, when I have the shop page activ, I can’t use the advanced layout editor, it is deactivated, but when the shop page is decelected in woocommerce I can use the advanced layout editor again.

    Have I selected or deselected something somewhere or what is going on?

    Best regards
    Katrine

    #1206723

    Hi
    Can anybody help me?

    #1207227

    Hi Humle,

    Well, if you did not activate the custom shop page, then WooCommerce takes over and renders its elements instead of what you added.

    Here are the docs for you:

    Shop

    Best regards,
    Victoria

    • This reply was modified 4 years, 7 months ago by Victoria.
    #1207476
    This reply has been marked as private.
    #1207881

    Hi Humle,

    Best regards,
    Victoria

    #1208465

    HI Victoria

    I have placed the small code from the support page that you send me, and that worked. But I have another question. How can I change the styling on the single product page? I would like to have the side bare at the left side of the screen beside the product picture, but is shows up underneath the product picture. https://staarupblomster.dk/shop/dekoration/grankogle-stor/

    I have used the widget single product on the single product page.

    Best regards
    Katrine

    #1208487
    This reply has been marked as private.
    #1209608

    Hi Humle,

    Please have a look at the following thread:
    https://kriesi.at/support/topic/sidebar-on-single-product-page-2/#post-294028

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1211826

    Hi Victoria
    I have a question regarding the URL structure when I am using the mega menu option.

    I would like it to be as followed: staarupblomster.dk/shop/category/product.as it is in this link https://staarupblomster.dk/shop/dekoration/grankogle-stor/ but if I do as explained in the mega menu guide I am using pages that isn’t a part of the shop pages,and the shop structure is broken. How can I build up the mega menu option using the shop category and the single product pages?

    Best regards
    Katrine

    #1212171

    Hi Katrine,

    What do you mean the shop structure is broken? Can you please explain a bit more?

    Could you please attach some screenshots of the issue?

    Best regards,
    Victoria

    #1212558

    Hi Victoria

    I figured it out regarding the mega menu.

    I do still have a question regarding the sidebars. The code mentioned in the link you posted, where should I place it? and will it make the side bare at the left side of the screen be placed at the same level as the picture of the product? it seem like it will move the sidebar from the right side of the screan to the left side of the screan.
    pls. look at this link https://staarupblomster.dk/shop/fro/blomsterfro/cosmos-abricot-lemonade/ as you can see the sidebar is underneth the product picture and not to the left of the product picture.

    #1212592

    Hi Victoria
    I have another question regarding the shop page.
    I would like to display the product categories on the shop page in a grid, but I can only pick the products and not the categories in avia, is it possible to change this in any way?

    #1212629

    Hi Victoria

    I have created a dropbox folder where I have placed some screenshot photo of my left sidebar problem. if I have the default editor at the product page on, you can see the product and description and everything, but the left sidebar is underneath the product picture and takes up a lot of space. When the default editor in on I can’t choose the left side bar option on single pages. If I turn the advanced layout editor on, the left sidebar is just where I want it, but then the product disappears from the page. I would of course like to keep my product information but also have the left sidebar beside the product and not underneath the product. Pls. look at the link to the dropbox folder.
    Best regards
    Katrine

    #1213997

    Can somebody pls. help me here?

    #1214282

    Hi,

    but the left sidebar is underneath the product picture and takes up a lot of space.

    That is actually is the default layout of the single product pages. If you want to move the sidebar to the right of the content, please follow the short instruction in the following thread.

    // https://kriesi.at/support/topic/sidebar-on-single-product-page-2/#post-294028
    // https://kriesi.at/support/topic/layout-shop-page-single-product/#post-526554

    Best regards,
    Ismael

    #1214288

    Hi Ismael
    Thank you for writing back to me.

    I want the menus at the left side of the product images and I want the same menu used in the shop, both on category pages and on single product pages.

    I have made a link to some dropbox pictures of my problem with the menus, pls. take a look

    #1215698

    I ismael

    Can you help me with the menu. I want it at the left side of the screen not the right side. How do I get the menu in line with the pictures?

    I would like to be finished with my webpage soon.

    #1216451

    Hi,

    Did you follow the instructions in the previous threads? To move the sidebar to the left of the product content, you have to add this code in the functions.php file.

    
    
    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div_sidebar', 1);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div_sidebar()
    {
    	echo "<div class='four units single-product-sidebar'>";
    	get_sidebar();
    	echo "</div>";
    }
    
    function avia_add_image_div()
    {
    	echo "<div class='four units single-product-image'>";
    }
     
    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
    }
    
    

    And then use this css code to adjust the width of the containers.

    #top #main .single-product-sidebar .sidebar {
    	border-left: 0;
    	border-right: 1px solid;
    	padding-left: 0;
    	padding-right: 50px;
    }
    
    #top #main .single-product-sidebar {
        margin-left: 0;
    }
    
    #top #main .single-product-image {
    	width: 28%;
    }
    
    #top #main .single-product-summary {
        width: 45%;
        margin-left: 2%;
    }
    
    #top #main .product .four.units {
    	margin-left: 3%;
    	margin-right: 0;
    }
    

    Best regards,
    Ismael

    #1217195

    Hi Ismael
    The code helped, thank you. The previous threads was to move the side bar to the right.

    Can you help me with the newsletter? It will not sign up subscribers to my mailchimp account.

    #1217645

    Hi,

    Glad to know that the solution worked.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘My shop page changes design when I activate it as my shop page’ is closed to new replies.