Skip to content

Shop / WooCommerce

Shop related questions and issues

243 Topics 1.2k Posts
  • Shop Navigation active

    28
    0 Votes
    28 Posts
    851 Views
    arminunruhA
    sorry everybody! im releasing an update later today that fixes this
  • Is there an option to use the Woocommerce currency switcher?

    2
    0 Votes
    2 Posts
    64 Views
    RichardR
    Dear Sasha @spontans According to this documentation: https://docs.woocommerce.com/document/payments/currencies/multi-currency-setup/ Multi currency is setup on the front end via "widget" Lay Theme does not support Widgets at the moment except via +more > HTML or > +more > shortcode. I did test with the Plugin WOOCS https://wordpress.org/plugins/woocommerce-currency-switcher/ And was able to get some results by adding the shortcode via the Gridder: +More > Shortcode [image: 1634779301923-screen-shot-2021-10-21-at-2.10.33-pm-resized.png] Result (currency does indeed change within Product Thumbnail): [image: 1634779344007-screen-shot-2021-10-21-at-2.10.11-pm-resized.png] This is a third-party solution which is unlikely to work long-term. But may provide an option while Lay Theme features are being worked through with Woocommerce. Best wishes and have a wonderful day 🌻 Richard
  • Woo Commerce Additional Variation Images plugin works with Lay?

    5
    0 Votes
    5 Posts
    131 Views
    RichardR
    Dear @Villads " it is only possible to have a dropdown selector for product variations" As far as i can know yes, , the Attributes and Variations are the only way of creating dropdown menu's for the variables area on the product page: [image: 1634777769195-screen-shot-2021-10-21-at-1.53.40-pm-resized.png] [image: 1634777900541-screen-shot-2021-10-21-at-1.54.39-pm-resized.png] What other information did you want in these dropdown menu's? "Have tried different not working plugins for other button types for product variations." I dont yet understand this one sorry. Could you provide any more context please πŸ” Sorry for such delay, and best wishes, thank you for supporting Lay Theme 🌝 Richard
  • Weird text when woocommerce plugin is active

    lay theme woocomm
    10
    0 Votes
    10 Posts
    241 Views
    RichardR
    Dear @alexandrot After reviewing your website, im sorry but unfortunately I cannot help. You have a large number of third-party plugins installed along with heavy Custom CSS HTML and JS coding. Installed plugins that are de-activated may still affect the normal workings of Lay theme - Woocommerce connection. Due to such heavy customisation i cannot de-bug everything and find out what the problem is, this is up to you. It could be that past installed plugins have left their mark and are causing the issue. once again sorry about this Alexandrot. Becuase your website is already so heavily built up, i wouldnt expect to try any fresh re-install. An option would be to use jQuery to isolate the problem <p> paragraph elements within the problem woo-commerce container and then "display:none" Woocommerce Lay Theme integration was not meant for such customisation. The work around will need to come from you, I hope that future updates of Lay Theme may remedy this problem anyway. 🌝 Sincerely Richard
  • The shop : cart icon, footer & privacy policy.

    2
    0 Votes
    2 Posts
    130 Views
    RichardR
    Dear Karim @karimus1888 Let's answer these questions! 🌝 Do you know where we can find a good text for privacy policy and terms & conditions ? On the "shop setup" page within the Lay Theme website - Armin provides some info as well as the suggested plugin "wp legal pages" https://laytheme.com/shop.html#privacy-pages For the cart, there is the word "cart" to access of the orders. Is it possible to change the word by an icon of a cart ? For an icon within the Cart, you can choose settings within "flying side cart plugin > settings " The plugin is also mentioned here: https://laytheme.com/shop.html#sidecart-plugin [image: 1632181749737-screen-shot-2021-09-21-at-11.47.45-am-resized.png] If you mean the "cart" as part of the main menu: [image: 1632181807561-screen-shot-2021-09-21-at-11.49.33-am-resized.png] This is not as easily changed but you still have options - if you add some custom code. "Screen Options" can be found at the top of the > appearance > menu page: [image: 1632182012863-screen-shot-2021-09-21-at-11.51.13-am-resized.png] With this you can now add a 'custom class' to this menu-item e.g my-custom-menu-item With this class you can then target it with some custom code and change it into an image (note this customisation will be up to you and image size/padding etc will need to be tested by you as well, however i can send you in the right direction. https://onelittledesigner.com/2013/02/28/replacing-text-with-an-image-using-jquery/ Code may look similar to this: jQuery().ready(function () { jQuery('.my-custom-menu-item').each(function () { string = jQuery(this).text('CART'); jQuery(this).html('<img src="https://www.asaworld.online/wp-content/uploads/2021/09/cart-icon-e1632184362536.png" alt="' + string + '" />'); }); }); You can get the source for your image (img src) from a URL. This could be another website or link online, but even easier: in > Media > Media Library > any image in your media library will have its own URL when clicking on it (file-url): [image: 1632184543826-screen-shot-2021-09-21-at-12.34.47-pm-resized.png] Copy and paste this into the img src="insert-new-img-src-here" in the above code. For the footer, I have created a page for the footer but it doesn't appear in all pages. I see also the possibility to add a footer per page but it doesn't work for the article pages : https://keight.shop/ Currently standard footers aren't available for the shop page unfortunately - This should be worked out in the next updates ( is your Lay Theme fully updated? ) For now a special shop-related footer has been created by Armin: https://laytheme.com/shop.html#footer Hope this helps Karim 🌝Best wishes, good luck and have a wonderful day!!! Richard
  • inkl. MwSt. zzgl. Versandkosten

    2
    0 Votes
    2 Posts
    61 Views
    RichardR
    Dear Marc @moND0711 I see that you can create your own suffix to display 'after' the price within > Woocommerce > Settings > Tax > Price display suffix "Define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}." [image: 1632178861662-screen-shot-2021-09-21-at-10.59.24-am-resized.png] However this is not the setting that you have used, i am still myself learning all the functions - could you send me in the right direction as to what settings you used? πŸ” If we cannot find any options you could always use some code, but i would advise against this until necessary - it may have some unforeseen bugs when testing: jQuery('.legal-price-info').each(function() { jQuery(this).insertAfter(jQuery(this).parent().find('.woocommerce-product-details__short-description')); }); Gives me this result: [image: 1632179193970-screen-shot-2021-09-21-at-11.05.45-am-resized.png] Talk soon Marc & best wishes πŸ– Richard
  • menu point active

    2
    0 Votes
    2 Posts
    51 Views
    RichardR
    Dear Marc @moND0711 Thank you for the update, this is known about and will hopefully be resolved in the next updates. Best wishes 🌝 Richard
  • Online shop and product thumbnail grid element not showing

    11
    0 Votes
    11 Posts
    379 Views
    RichardR
    Amazing! thanks for the update @pascal this is great for others in the future, will keep this in mind, as well as letting Armin know 🌝 Best wishes Richard
  • no "save draft" in the product ?

    4
    0 Votes
    4 Posts
    86 Views
    RichardR
    No worries @ooblik Have a great day! 🌝
  • Footer on cart and product pages

    5
    0 Votes
    5 Posts
    116 Views
    RichardR
    Dear @emgeoffice Not for me either - i think it may still be coming 🌝 Best wishes Richard
  • Woo Commerce template notification

    4
    0 Votes
    4 Posts
    99 Views
    RichardR
    Awesome! thanks for the update @emgeoffice πŸ’₯
  • Shop installation not adding cart or checkout pages

    2
    0 Votes
    2 Posts
    79 Views
    RichardR
    Dear Alasdair @alasdair17 Very interesting - Im inclined to agree with you that this previous 'shop' setup left files in the database that clashed with the new information being installed. Having installed on multiple website & this one being the odd one out is pretty suspect. Im sorry that i don't have any 'quick' solutions without knowing your setup - Basically i just super agree with you! 🌝 Best wishes Richard
  • Woo Commerce Payments - Gridder disappears

    9
    1 Votes
    9 Posts
    324 Views
    RichardR
    Dear @Agnes3000 Have sent you a message via Chats ✨ Talk soon & best wishes Richard
  • € and EUR behind the sum

    3
    0 Votes
    3 Posts
    67 Views
    RichardR
    Dear @tinjessen Thank you for the update, its good to know relating to the Paypal features. Currently PayPal still has a few bugs to work through. http://laythemeforum.com:4567/topic/6983/fatal-error-after-update-woocommerce-paypal-payments/3 Best wishes 🌝 Richard
  • Lightbox with WooCommerce Shop

    plugin woocommerce lightbox addon lightbox shop
    2
    0 Votes
    2 Posts
    214 Views
    RichardR
    Dear Lo @Lo-Theme Installing Lay Theme's Lightbox Addon does not yet work with Woocommerce functions. A Woocommerce plugin will need to be found. Not all Woocommerce Plugins are guaranteed to work as mentioned by Armin here: "WooCommerce is a very feature-rich Plugin. So Lay Theme might not support every WooCommerce Feature." There is mention of the Woocommerce Lightbox near the end: https://docs.woocommerce.com/document/adding-product-images-and-galleries/ Best wishes Lo, have a wonderful day 🌝 Richard
  • Store notice not working on mobile

    store notice shop woocommerce notice not working
    2
    0 Votes
    2 Posts
    193 Views
    RichardR
    Dear @georgiaharizani Store Notice should be working on Mobile: [image: 1629866568509-screen-shot-2021-08-25-at-4.42.06-pm-resized.png] Your's is hidden due to "top: 122px" [image: 1629866732139-screen-shot-2021-08-25-at-4.45.00-pm-resized.png] My CSS: .woocommerce-store-notice { margin-top: 0; margin-bottom: 0; text-align: center; overflow: hidden; width: 100%; z-index: 21; } Your CSS: @media (max-width: 1080px) .woocommerce-store-notice { position: relative; top: -122px; left: 0; width: 100%; padding: 10px 40px; -webkit-box-sizing: border-box; box-sizing: border-box; } I thought it may have been Custom phone layouts clashing with the store notice but this is not the case. Please make sure Text Formats and Media Query settings are correct. [image: 1629867199545-screen-shot-2021-08-25-at-4.50.48-pm-resized.png] Wordpress, Lay Theme & Laytheme's Addons are all up to date ? Any custom CSS or JS that may interfere is temporarily removed. Any third-party plugins are de-activated to see if this resolves the issue. If using a WordPress Cache plugin, disable it or clear your cache. Best wishes πŸŒ… Richard
  • Design Billing Page, Paying Options, Produktpage Mouseover,

    2
    0 Votes
    2 Posts
    98 Views
    RichardR
    Dear Madeleine @Lina "i would like to work with mouseovers for the product view page. Is there a possibility?" Currently not possible, if i understand your question correctly. Product Thumbnails will be added to your Gridder via the "Product Thumbnail Grid " "how can i set up the payment methods?" Payments can be found in your Admin bar: [image: 1629865865265-screen-shot-2021-08-25-at-4.30.07-pm-resized.png] Any additional information needed on Woocommerce payment settings can be found " here " Armin also said in the shop setup: "We still need to add some kind of hint about Cookies being used and find out a way to make Shops GDPR compliant." "how can I change the language? e.g. instead of "Nicht vorrΓ€tig" "sold out"? " Do you mean to change the language based on the users country (translation) or within Wordpress settings - the language of your website? "how can i design the invoice page? I would like to replace the fields with our CI font and color." The plugin "WooCommerce PDF Invoices & Packing Slips" is recommended: https://laytheme.com/shop.html#invoices Best wishes Madeleine, have a wonderful day πŸ– Richard
  • Foo Events integration

    2
    0 Votes
    2 Posts
    78 Views
    RichardR
    Dear Felix @Felix-Neumann "is it possible to integrate Foo Events (https://www.fooevents.com/) in Lay Theme?" Currently it's not certain if all Woocommerce related features will work. Being still early it is at your own risk testing with a purchased product. Armin mentioned on the shop page: "WooCommerce is a very feature-rich Plugin. So Lay Theme might not support every WooCommerce Feature." Best wishes Felix, sorry for any inconvenience this may cause. ✨ Richard
  • It is possible product thumbnails hover image?

    3
    1 Votes
    3 Posts
    177 Views
    RichardR
    Dear @cdelbarr @Sylvia-Perez Imagehover with Woocommerce Functions is currently not possible. Sorry for any inconvenience, thank you for supporting Lay Theme 🌞 Richard
  • Open Side Cart on custom wordlink in stead of standard icon

    5
    0 Votes
    5 Posts
    193 Views
    RichardR
    Dear @lotte "Is there any documentation on how to open the cart when clicking on a word/link/button? Or could you explain?" https://laytheme.com/shop.html#sidecart-plugin Best Wishes 🌝 Richard

I also code custom websites or custom Lay features.
πŸ’Ώ Email me here: πŸ’Ώ
info@laytheme.com

Before you post:
  1. When using a WordPress Cache plugin, disable it or clear your cache.
  2. Update Lay Theme and all Lay Theme Addons
  3. Disable all Plugins
  4. Go to Lay Options β†’ Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

This often solves issues you might run into

When you post:
  1. Post a link to where the problem is
  2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
  3. If the problem is difficult to explain, post screenshots / link to a video to explain it
Online Users
Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com