Caleb Burks
Forum Replies Created
-
Have you done a test order yet?
Disable all plugins except for WooCommerce, and temporarily switch to a default WordPress theme like twenty seventeen. Then do a test order and see if the issue still happens.
Forum: Plugins
In reply to: [WooCommerce] Orders PageOkay, couple of things to try:
1) Use a different browser you never use otherwise. This will help rule out browser extensions.
2) Check “Screen Options” in the top right. Try changing the posts per page setting to something like 12 to see what happens.
3) Create a new admin account, and login with that to see if the issue still happens.
Forum: Plugins
In reply to: [WooCommerce] How to clear cart on logout or just closing the browser simplyRight, so let’s clear up the stock behavior first. As emptying a user’s cart isn’t a good idea and could upset them / lose sales.
WooCommerce does not reduce stock when an item it added to the cart, at least not by default. Stock is only reduced when the customers finished checkout. If two people have a 1-stock item in their cart, whoever checks out first will get it, and the other will be notified when they try to checkout and it will be removed from their cart automatically.
If the customer goes to PayPal but does not pay and just leaves the page, stock is reduced because an order was technically created. But if WooCommerce does not hear back from PayPal within X amount of time, it will automatically move the order to the cancelled status and return the stock. The X amount of time is configured at WooCommerce > Settings > Products > Inventory > Hold stock.
______
As for how cart persistency works, a logged out guest user will have item’s saved in the browser cookies. So if they return within a certain amount of time, items will still be there.
Logged-in users have a persistent cart, meaning once an item is added to the cart it will stay there and will always appear when they login. That is unless an external factor is involved, like you manually clear all user’s sessions on your site.
Forum: Plugins
In reply to: [WooCommerce] No puedo acceder a las opciones de visualización de productoI recommend https://snag.gy for easily sharing screenshots – please follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox and IE.
Forum: Plugins
In reply to: [WooCommerce] Orders PageThere may be one phantom order. If you click on the trash tab, do you see the trashed orders? And/or if you manually create a new order, does it show up?
And then secondly, have you done any database merging / transferring? How was the staging site created?
Thanks for the feedback. There is definitely room for improvement with the compatibility checking. Another good place for this would be in a dev chat: https://woocommerce.wordpress.com/2018/03/20/march-27th-dev-chat-20/
We also accept pull requests 🙂
1) If one product in the cart is missing weights / dimensions, it can cause no rates to be returned. Empty the cart, and only add one product that has valid weights and dimensions.
2) Make sure you have an “origin shipping zip code” configured in the method.
3) Temporarily enable all USPS live rate options to see if maybe the ones you have enabled just aren’t available.
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Putting copy in Checkout pageYou shouldn’t be editing the plugin directly. Need to override templates in your child theme: http://docs.woothemes.com/document/template-structure/
I also don’t think the
checkout/form-pay.phptemplate is what you want. This template is used for paying for invoices for already created orders.This is the template you want to use. Note that there is a filter when you need to change the text. So you shouldn’t override the template and should instead use the filter in a custom plugin or child them: https://github.com/woocommerce/woocommerce/blob/0454f1539b11837a1b2698aa80c7a08d83da023f/templates/checkout/payment.php#L33
Forum: Plugins
In reply to: [WooCommerce] Free Local ShippingYou can set this up using shipping zones: https://docs.woocommerce.com/document/setting-up-shipping-zones/
Zone Richmond, VA with a Free Shipping method.
Then a zone for USA with a flat rate method.
Then a zone for the rest of the world with a free shipping method that has a minimum spend of $200 (should also have another rate here).
Forum: Plugins
In reply to: [WooCommerce] Import Affiliate products by Product Im-ExWooCommerce core has a product importer now, no plugin required: https://docs.woocommerce.com/document/product-csv-importer-exporter/
External/Affiliate products can be imported/exported. Just create one, then export it to see the CSV structure: http://cld.wthms.co/9NW6IG
Forum: Plugins
In reply to: [WooCommerce] categories limited to 3The “New In” text is correct: http://cld.wthms.co/Poe1GD. Only showing three categories is also expected: http://cld.wthms.co/HGez0h
These can be customized with filters, or with the Storefront Powerpack plugin: https://woocommerce.com/products/storefront-powerpack/.
Forum: Plugins
In reply to: [WooCommerce] WC_Cart::get_cart_url error line 3839Also this is very likely a theme or plugin conflict. So can follow this guide to find the culprit while testing checkouts in between disabling/enabling things: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
So when temporarily switching to a default WordPress theme, this problem doesn’t occur?
Sounds like the theme has some messed up query loops. Will likely need to contact the theme authors about this.
Forum: Plugins
In reply to: [WooCommerce] Cart in woocommerceAnd you are postive that product has a featured image set on it, and not just gallery images?
If so, then there is a plugin or theme conflict occurring. Follow this guide to find the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4. You may need to visit the products admin page and re-save after disabling everything.
Attribute filtering has never considered variation stock availability – the queries required are too inefficient at the moment.
The “hide out of stock” setting only affects top level products in the catalog. It doesn’t check if a specific attribute exists on a variation with available stock.