Austin M - a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Filter Products on Sale out of variantsForum: Plugins
In reply to: [WooCommerce] Updating Cart, Moves PageSure thing @bud8ie! Let us know if that doesn’t work!
We haven’t heard back from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any further questions!
Forum: Plugins
In reply to: [WooCommerce] Products not showing on shop pageWe haven’t heard back from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any further questions!
Forum: Plugins
In reply to: [WooCommerce] I don’t have shop page. How do I create it?Hi @exonpark9! You can recreate any default WooCommerce pages that don’t exist in your store by going to WooCommerce > Status > Tools. This should create a shop page and leave any other WooCommerce pages you already have untouched.
Forum: Plugins
In reply to: [WooCommerce] Woocommerc subtotal is incorrectHi @hitinder! Can you post your system status report? You can find that by going to WooCommerce > Status in your dashboard, then clicking “Get system report,” then “Copy for support.”
Do you have any plugins or custom code that affects total/subtotal calculations? Default shipping and tax functionality isn’t what I’m talking about, but additional tax or shipping plugins might be relevant. I’m more thinking of something that changes the way these numbers are displayed in the cart or checkout, though.
Forum: Plugins
In reply to: [WooCommerce] Filter Products on Sale out of variantsHi @tigerbite. This is not possible currently, no. If this is functionality you’d like to see in the future, feel free to add it or vote on it on our ideas board. It looks like this suggestion might be the same idea.
Forum: Plugins
In reply to: [WooCommerce Admin] “Your customer report has been sent to your email” IssueHi @iparvez1. It looks like a fix for this issue just went out with WooCommerce 4.3. Can you try updating your WooCommerce plugin and see if that fixes it? With 4.3, reports should still be emailed to you even when you have Google Site Kit installed.
Forum: Plugins
In reply to: [WooCommerce Admin] Woocommerce Dashboard Not Loading@beckyhowers That is the issue that should have been fixed. What version of WooCommerce are you running? And what version of the stand-alone WC Admin plugin are you running, if you have that installed?
Forum: Plugins
In reply to: [WooCommerce] Product name not showing in order confirmationWe haven’t heard back from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any further questions!
Forum: Plugins
In reply to: [WooCommerce] Problem with “includes XX” not translating to DanishForum: Plugins
In reply to: [WooCommerce] Updating Cart, Moves PageHi @bud8ie.
> I’ve tried having a look in the cart.js and found three instances of “scroll” but I’m totally unsure as to what might need changed or deleted.
I haven’t dug into this part of the code too much, unfortunately. Questions like this are officially outside of scope for our support, so it’s not something I’m super familiar with. For starters, I would try commenting out just the lines in cart.js that call the
scroll_to_noticesfunction. That might be enough by itself. The downside of this is that it would get overwritten when the plugin is updated.> After searching, I found a possible option at https://frique.me/blog/prevent-automatic-scrolling-to-checkout-error-in-woocommerce/ that prevents scrolling after every ajax request, but I’m not sure as to where this code would actually be placed, or if it would need to be added with every plugin update.
This approach is less targeted, but it also has the benefit that you can add it as a stand-alone snippet so that it doesn’t get overwritten when you update the WooCommerce plugin. The easiest way to add this would be with a code snippet plugin, such as Code Snippets. There is a sample JS snippet in there that shows you the format for adding a custom JS snippet of your own. This would probably be the better approach.
Forum: Plugins
In reply to: [WooCommerce Admin] Missing translationsHi @localmedia. This is a common issue we’ve been seeing recently. I’ve reopened a previous GitHub issue about it here. The developers should be aware of it, but the more people comment on the issue, the more likely they are to prioritize it, so I’d encourage you to leave a comment there, even if it’s something as simple as “I’m also experiencing this issue.” I will add a link to this forum thread.
Forum: Plugins
In reply to: [WooCommerce] Updating Cart, Moves PageHi @bud8ie. Are you referring to the autoscrolling? If so, that would be in one of the WooCommerce JavasScript files, although I’m not sure which one. I know that woocommerce.js (full path wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js) has the
scroll_to_noticesfunction that handles autoscrolling for much of the front end, so that is likely involved somehow. I see that this function is called in a couple of places in cart.js (same folder as above) that do seem to be involved with cart updates.I would start by searching for
scrollin cart.js and working backwards from there if @arslion’s solution doesn’t work.- This reply was modified 5 years, 11 months ago by Austin M - a11n.