Tagged: shop, Shop Page, woocommerce
-
AuthorPosts
-
April 23, 2020 at 7:02 am #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
KatrineApril 24, 2020 at 5:45 am #1206723Hi
Can anybody help me?April 26, 2020 at 12:04 pm #1207227Hi 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:
Best regards,
Victoria- This reply was modified 4 years, 7 months ago by Victoria.
April 27, 2020 at 11:27 am #1207476This reply has been marked as private.April 28, 2020 at 5:45 pm #1207881Hi Humle,
Best regards,
VictoriaApril 30, 2020 at 9:44 am #1208465HI 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
KatrineApril 30, 2020 at 12:01 pm #1208487This reply has been marked as private.May 4, 2020 at 4:38 pm #1209608Hi Humle,
Please have a look at the following thread:
https://kriesi.at/support/topic/sidebar-on-single-product-page-2/#post-294028If you need further assistance please let us know.
Best regards,
VictoriaMay 11, 2020 at 1:21 pm #1211826Hi 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
KatrineMay 12, 2020 at 1:50 pm #1212171Hi 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,
VictoriaMay 13, 2020 at 10:40 am #1212558Hi 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.May 13, 2020 at 12:42 pm #1212592Hi 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?May 13, 2020 at 2:46 pm #1212629Hi 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
KatrineMay 18, 2020 at 12:09 pm #1213997Can somebody pls. help me here?
May 19, 2020 at 11:01 am #1214282Hi,
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-526554Best regards,
IsmaelMay 19, 2020 at 11:18 am #1214288Hi 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
May 24, 2020 at 12:16 pm #1215698I 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.
May 26, 2020 at 11:38 am #1216451Hi,
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,
IsmaelMay 27, 2020 at 10:57 pm #1217195Hi 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.
May 29, 2020 at 10:25 am #1217645Hi,
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 -
AuthorPosts
- The topic ‘My shop page changes design when I activate it as my shop page’ is closed to new replies.