Job a11n
Forum Replies Created
-
Hey @ilustragarcia this is likely due to your tax settings and the geolocation connected with it.
The anonymous visitor is likely picking up a different tax zone than the registered one. The registered one will have an address added so the tax calculations can be more specific. If the anonymous visitor goes through the checkout and enters an address in the same country as the registered one, you’ll see that the prices are updated.
Forum: Plugins
In reply to: [WooCommerce] WP-CronHey @derevnya. That sounds annoying.
WP Cron is the tool that allows WordPress to schedule events. In this case, it’s showing up in the WooCommerce settings, because WooCommerce is using that a lot (for example to check if scheduled emails need to be sent or unpaid orders need to be cancelled). While WooCommerce uses it, the error you’re getting shows there’s a bigger problem since it’s not running altogether and other parts of your WordPress site will likely be using this as well.
A first step here would be to contact your hosting company and ask them if they have an answer to why this is happening as a 403 error is connected to permissions on your server (which is managed by your hosting company). They will be able to track down where this is coming from.
I hope that helps!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce PDF Customer Invoices appearing on GoogleHi @douglas11 – if you’re talking about this extension, support for that will be offered by RightPress as well. I can see there’s some urgency with this as well, so in the meantime I’d suggest a few things:
- Disable the plugin until they’ve offered support
- Find out where on your site these files are stored and delete them
- If the support your receive by RightPress is not what you’d expect I’d consider using another PDF invoices extension; there are several out there
Given that there’s not much more we can do about this on the WooCommerce core forum, I’m going to mark this thread as resolved.
Forum: Plugins
In reply to: [WooCommerce] Activating WooCommerce plugin add numbers to url?Great to hear you found the solution for that already. I’m going to mark this thread as resolved as well. Have a great rest of your day!
Forum: Plugins
In reply to: [WooCommerce] How to show related variations?Hi @jeff0504 – that is possible with WooCommerce core by limiting the possible variations.
In the screenshot here you can see that I’m only allowing the logo for the blue hoodie, not for the others:
Link to image: https://d.pr/i/3uGhs4When I go to the product page, you’ll see that when I select “blue” both “yes” and “no” are an option. However, when I select “green” I only get the “no” option.
Link to image: https://d.pr/i/xhEVnuSo this means that you’ll need to configure the possible variation on the product settings. I hope that helps!
Forum: Plugins
In reply to: [WooCommerce] Database issues -> Woocommerce trying to create a table@ellieangelica At the moment, all the proven and tested tools of WC Admin are already in core. The plugin is currently used for testing new features.
Forum: Plugins
In reply to: [WooCommerce] Multiple Links to Product when permalink is category basedHey @abhijitshilawat – I can reproduce this indeed. My guess is that this is due to the WordPress defaulting to the slug it can find. I doubt this is a problem for SEO though since those fake categories aren’t actual links that are registered on your site. How would people find this link if it’s not being used.
If you have old links that should redirect, then I’d suggest making sure you set up redirects to avoid Google tagging this as duplicate content.
Forum: Plugins
In reply to: [WooCommerce] Database issues -> Woocommerce trying to create a table@ellieangelica WooCommerce Admin is a plugin that’s now part of WooCommerce core. You can still install it if you want to see all the features before the are released into WooCommerce core. Otherwise, what happens if you deactivate and delete this plugin?
Forum: Plugins
In reply to: [WooCommerce] Multiple Links to Product when permalink is category basedHi @abhijitshilawat – this is because you’ve likely added this product to two different categories that aren’t part of the same tree.
E.g., if I add 1 product to the following categories:
- Accessories
- Clothing > Hoodies
The two paths will work:
- https://shop.test/shop/accessories/hoodie-2/
- https://shop.test/shop/clothing/hoodies-clothing/hoodie-2/
It’s best not to mix categories like that and use attributes rather than categories if you want to display your products in many different areas.
We have a detailed description on how to manage these here: https://docs.woocommerce.com/document/managing-product-taxonomies/
Given that this is the expected WooCommerce behaviour, I’m marking this thread as resolved.
Forum: Plugins
In reply to: [WooCommerce] Database issues -> Woocommerce trying to create a tableHey @ellieangelica – before we continue, are you using the release candidate plugin? WooCommerce 4.1 is only coming out in about 2 weeks. The current version is 4.0.1.
If it’s 4.0.1 you’re using, can you have a look at WP Admin > WooCommerce > Status > System Status**. At the top, you’ll see the WooCommerce version, can you scroll down until you see “WooCommerce database version:” to confirm is this is the same.
If it is not the same, can you go to WP Admin > WooCommerce > Status > Tools > Update database > Click – Update (Button on right)**. That could potentially fix this problem.
If that’s not the case, can you paste your system status report in this thread? Thanks.
Forum: Plugins
In reply to: [WooCommerce] Add prices in percentage % for variable productsHi @devpratibha02 – that’s not possible with WooCommerce core. This sounds more like it would be a use of Product Add-ons. This extension builds on the base price and allows to choose options that change the price in relation to the base price. You can also set up global addons. Here’s a screenshot of what that would look like:
Link to image: https://d.pr/i/YECc75Given that I’ve confirmed this is not possible with WooCommerce core, I’ll mark this thread as resolved. Have a grat rest of your day!
Forum: Plugins
In reply to: [WooCommerce] Adjusting spacing on product shortcodeHey @snapdragon777 – the spacing of these images would be caused by your theme and not by WooCommerce core, so you’d best find help for this with your theme developer.
That said, here’s a quick fix with some custom CSS. Under Customize > Additional CSS, you can add the following code:
?/* Change spacing of gallery images */ ? .woocommerce div.product div.images .flex-control-thumbs li img { padding: 10px 5px 0px; }
The result of this is:
Link to image: https://d.pr/i/fzkj2d
?
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).Given that this is not WooCommerce core on your site, I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Themes and Templates
In reply to: [Storefront] Woocommerce Blocks not formatting on MobileOh! Nicely done. Yeah, that would indeed be a good temporary solution while you wait for the next fix of Storefront. I’ll mark this thread as resolved in the meantime though. All the best!
Forum: Themes and Templates
In reply to: [Storefront] Woocommerce Blocks not formatting on MobileHey @sixteenmartino – as mentioned in the GitHub issue, there’s a fix ready and it’ll be included in the next version of Storefront: https://github.com/woocommerce/storefront/pull/1217
The only solution would be to already include the CSS to fix this in your theme. You can find out what was done here: https://github.com/woocommerce/storefront/pull/1217/files
Forum: Themes and Templates
In reply to: [Storefront] Woocommerce Blocks not formatting on MobileIt seems that you’ve disabled this block on your homepage and set your current block to only display on desktop. Is that correct?
I was able to reproduce the issue you had on my mobile devices, but not on my own site.