Senff - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Safari issueHi @ltribble
It looks like this may be caused due to a theme conflict, or possibly a third-party plugin. I’d recommend the conflict-testing steps here to isolate the source of the issue:
https://docs.woocommerce.com/document/how-to-test-for-conflicts/The best way to determine if the issue is being caused by a theme and/or plugin is to do the following:
– Temporarily switch your theme back to a default theme, such as Storefront.
– Disable all plugins except for WooCommerce.
– Clear your browser cache, and the cache on your site if you have one there.
– Test to see if the issue has been resolved.If that resolves the issue, then one-by-one you can switch back your theme and re-enable your plugins, testing in between, until the problem appears again. This will then give you an idea about which plugin is the one causing the conflict.
Forum: Plugins
In reply to: [WooCommerce] SKU and attributes created by csv not displayed in emailsHi @barb55
By default, the emails sent to the store owner should contain both the SKU as well as the attributes, as you can see in this screenshot:
Image link: https://d.pr/i/OCfSr6The email to the customer will not contain the SKU.
Just to make sure I understand the issue correctly — you don’t see the SKU or attributes in any email, and this only happens for the products you imported? It works well with other products?
Forum: Themes and Templates
In reply to: [Storefront] header-shopHey @lucianogra
Apologies, but I’m not sure if I understand what you mean. Could you give us a few more details?
In that case, if you want to add the space only on product pages, you can use this instead:
.single-product #main { padding-top: 40px; }Forum: Themes and Templates
In reply to: [Storefront] breadcrumbWhat’s not showing correctly? From looking at these pages, the product you use as an example is part of the categories in the breadcrumbs:
– https://www.proektor.org/products/proektor-kupit-chernovcy/
– https://www.proektor.org/products/proektor-kupit-chernovcy/proektor-kupit-storozhinec/Also, this forum is for issues that are specific to the Storefront theme (and its child themes). Does it only occur when you have Storefront or Deli active, or does it happen with all themes?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Update Has Broken Password Protect PageHey @kokotaibell
Are you referring to standard Pages that are password protected (unrelated to WooCommerce)?
If that’s the case, please deactivate the WooCommerce plugin temporarily and see if that helps. If that still won’t accept the password, it’s safe to say that the issue is not caused by (or related to) WooCommerce and you might want to check this in the general WordPress forums.
If it only happens with WooCommerce active, let us know.
Forum: Plugins
In reply to: [WooCommerce] Add a new field in the zone areaHey @devmunds
I’m not sure what field you’re trying to add exactly, or if you’re just trying to add a new zone. Can you explain a bit more about what you’re trying to do?
Hey @ryandarlington1
You can add some space there by using a bit of CSS code:
#main { padding-top: 40px; }Forum: Plugins
In reply to: [WooCommerce] Shipping settings for more than one itemHey @handyann
You can add this directly in the settings of your shipping cost. Here is a screenshot for your reference:
Image link: https://d.pr/i/2xoFGrForum: Plugins
In reply to: [WooCommerce] Add to CartHi @druuidspell
I’d recommend reaching out to the theme’s own support team directly.
It looks like that theme’s info and support page can be found here:
https://www.portotheme.com/Forum: Plugins
In reply to: [WooCommerce] Shipping settings for more than one itemHey @handyann
If these are the shipping costs for every product in your site (within a certain shipping zone), you can set up a Flat Rate within your zone, where the cost is
3 + ([qty]*5).That way, one product would be £8 shipping.
2 products would be £13 shipping.
3 products would be £18 shipping.
Etc. etc.Forum: Themes and Templates
In reply to: [Storefront] Make Mobile Site 2 ColumnHey @mayank29gupta
You can also use this CSS to make the products show in 2 columns on mobile:
@media screen and (max-width: 768px) { ul.products li.product { width: 48%; margin: 0 1% 20px 1%; float: left; } ul.products li.product:nth-of-type(2n+1) { clear: both; } }Forum: Themes and Templates
In reply to: [Storefront] Alignment of wide pictures and informationHey @teshn
If you can share a link to your site, we can take a look and see if this can be done with some CSS code.
Hey @ryandarlington1!
I’m not seeing any breadcrumbs anywhere on your site, did you remove them already? If not, can you give a link to a page where they still appear?
Forum: Themes and Templates
In reply to: [Storefront] Amending space in header both desktop and headerHey @vasudevb
To fix the issues on mobile, you can use the following CSS code:
@media screen and (max-width: 768px) { #masthead .col-full { margin-left: 0; margin-right: 0; } button.menu-toggle { margin-top: 8px; } }