Siew
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce reports with UTM does not exist.Hi there,
Would https://woocommerce.com/posts/how-to-track-marketing-campaigns-google-analytics/ be what you’re looking for?
I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] Display shipping error when only local pickup availableHi there,
I checked this for you and found this article on displaying custom messages depending on the available shipping methods on an order.
I hope this points you in the right direction.
Hi there,
> linked my shop with my old paypal email. I have changed it multiple times, and it looks OK in wordpress: however when I test buy from my shop, the payment still go to the old account
Please contact us at WooCommerce.com > My Account > Support. You may need to create an account before you can access that page.
Please include a link to this forum thread, so that we can keep track of what’s already been done.
We will be able to help you further there.
> the paypal receipt sent to every costumer shows this e-mail. It says “you have send money to (email address). Is it any way to remove the email address from the receipt?
I think you’re referring to payment notification that PayPal sends to the customer.
For this purpose, you can contact PayPal on whether it is possible to remove the recipient email address.Forum: Plugins
In reply to: [WooCommerce] Persistent cookiesHi there,
> we have found that the following cookies are persistent. Cookie “History.store” Cookie “wc_cart_hash_*” Unsetting them did not work either. How do we permanently remove them please?
May I know where are you finding the above cookies?
On a computer that you used to visit your site?If you are using Chrome, you can follow this guide to remove specific cookies:
https://support.google.com/chrome/answer/95647
I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] Changing number of products on category pageHi there,
Glad to hear this 🙂.
I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce] SKU and ID variation does not appear on orders details pageHi there,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce] confirmation mail are wrongHi there,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce] Product stock suddenly drops to 0 (during checkout?)Hi there,
Have you tried adding
error_login wc_update_product_stock to log all stock quantity changes?You can read more about using
error_logfor debugging here:
https://stackoverflow.com/questions/24330039/how-can-i-use-error-log-with-wordpressI hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] Can’t reset Link Expiration Date for downloadable productHi there,
You can use a tool like phpMyAdmin to update
access_expirescolumn in thewp_woocommerce_downloadable_product_permissionstable for the order id egupdate wp_woocommerce_downloadable_product_permissions
set access_expires = ‘2020-10-25 00:00:00’
where order_id = xxx;I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Services Tax ReportsHi there,
If you do have a tax nexus in several states, you have two options:
1. Disable Automated Taxes and then manually set up all the tax rates that you want to charge under the WooCommerce > Settings > Tax tab.
or
2. Use a tax platform such as TaxJar or Avaara, that is integrated with WooCommerce. These companies aren’t free though and do charge a fee for their calculation services.
Forum: Plugins
In reply to: [WooCommerce] create variations from all attributes slowHi there,
I checked this for you and found this post on creating the variations programattically.
I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] WOOCOMMERCE -Different mail for payment methodHi there,
I checked this for you and found another solution.
I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] Image height issueHi there,
> in truth I don’t know if it’s due to a recent Woocommerce update or due to something else like my theme (Divi) or a plugin.
The best way to determine this is to:- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.
I hope this points you in the right direction.
Forum: Plugins
In reply to: [WooCommerce] Hook for Processing Order EmailHi there,
Programmatically, this involves modifying the hook to:
1. store the order information in a table
2. not send the emailand adding a custom cron job to pick up the information in table (1) above at a later time and include the external source information to then send the email.
I highly recommend getting a developer to look at the above for you.
Forum: Plugins
In reply to: [WooCommerce] Multisite: Can’t access Status page + slow query on adminHi there,
> Automattic\W\B\Installer->maybe_create_table()
Can the WooCommerce Status page load in a DB with more than 100K tablesThanks for the additional information here.
I checked maybe_create_table() for you and the logic checks against your existing 100k tables to see whether it needs to create a new table. Given the high volume of tables, it will take time.
I highly recommend getting a developer to look at your specific requirements on how to work around this.