psealock
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce requires files to be built and minifiedHi André,
I juste update WooCommerce plugin as usual
What is your usual process for updating? I’m hoping this information can give me a clue as to whats happened. Cheers
Forum: Plugins
In reply to: [WooCommerce Admin] Returning Customer Value not fetching for yearly reportHi @wfmdev, thanks for the screenshots.
I tried to replicate what you’re experiencing unsuccessfully. One thing I did notice is that my test site shows the user’s name under the “Customer” column whereas your screenshots say “new” or “returning”:
Looking at the code itself, it would always be the customer name unless a 3rd party extension is extending the table. I also noted the summary numbers at the bottom separate new and returning customers, which diverges from wc-admin’s current feature set.
Do you have custom code or a plugin that may be altering the table in some way?
Forum: Plugins
In reply to: [WooCommerce Admin] How to add custom column to “Summary”Hi @terragirl,
Nice to see you’re making progress. Would you like to open an issue on Github and I can take a look this week?
Forum: Plugins
In reply to: [WooCommerce Admin] Sales values doubledHi @carlopus
Do the legacy reports also show doubled values?
If not, you can re-import your data and see if that helps: Analytics > Settings > Import Historical Data > Delete Previously Imported Data
Forum: Plugins
In reply to: [WooCommerce Admin] Can’t see any difference, already installed ?Hi @computingfroggy,
Thats right, WooCommerce Admin is now part of WooCommerce. You can remove the plugin if you’d like.
Closing this one.
Thanks for writing @oxenjo30. There was a delay in Woocommerce Admin 1.0.3 being released which has been resolved. If you update to the latest version, the notice should disappear.
Forum: Plugins
In reply to: [WooCommerce Admin] Inconsistency/error with the totals on Categories pageHi @neilthespacechimp Do you have products that are in multiple categories? That can skew the numbers such that totals don’t add up because figures appear in multiple categories.
It seems like scripts are being cached on the mobile. Is there a way to clear cache or try a different browser?
Forum: Plugins
In reply to: [WooCommerce Admin] ‘Your site is experiencing a technical issue’ emailThanks everyone again for surfacing the issue. 0.23.1 has been release with a fix for this. Please update when you get a chance.
Forum: Plugins
In reply to: [WooCommerce Admin] ‘Your site is experiencing a technical issue’ email@nutrition2change @bvm @shamimwp @jseamer
Thanks for bringing this to our attention. Did you experience the error just via the email or is there a screen that brings up the error message as well. I’m attempting to reproduce the problem.
Thank you
Forum: Plugins
In reply to: [WooCommerce Admin] Custom advanced filtersHi @rivmedia, thanks for your question. Yes! its possible.
@harishanker Thanks for the response, our documentation is out of date. Sorry about that! We are updating it in the current development cycle.
The config object that powers the Orders Report can be seen here:
It can be modified by the
woocommerce_admin_orders_report_advanced_filtersfilter.Via the advanced filter you can add an argument
?supplier=best_buyto requests and handle that by modifying the SQL to filter data according to supplier. You can also add a column to the table to list out the supplier.Check out the example code found here:
Apologies that the documentation is lacking, but in the meantime, I’ll be happy to answer questions via issues in the repository, https://github.com/woocommerce/woocommerce-admin/issues. Tag me @psealock on Github.
Forum: Plugins
In reply to: [WooCommerce Admin] Stock Slide In Doesn’t Do AnythingHi @one3rdnerd, Are you on the latest version? If so, are there any messages in the console?
Forum: Plugins
In reply to: [WooCommerce Admin] Admin dashboard not loading + console ScreenshotThe namespaces of the API have changed. @godforbid @yngmind Is it possible your browser has cached scripts? Does it work in another browser or if you clear your browser’s cache?
Forum: Plugins
In reply to: [WooCommerce Admin] @wordpress/i18n – How to translate JS stringsthanks for the question @yash429 !
It looks like the
npm run i18ncommand is several commands combined.`
“i18n”: “npm run -s i18n:js && npm run -s i18n:php && npm run -s i18n:check && npm run -s i18n:pot”,
`If you run them individually, it looks like the php overwrites the js. In other words, you can generate the js individually with
npm run -s i18n:js.I hope this help you to generate the js manually! In the meantime, here is an issue to track the progress of a fix.
https://github.com/woocommerce/woocommerce-admin/issues/3298
