Caleb Burks
Forum Replies Created
-
I believe you’re noticing a bug introduced in 3.3.2 and fixed the next day in 3.3.3. It happens when the decimal is a non-standard decimal point (period). More info: https://github.com/woocommerce/woocommerce/pull/19069 (sorry)
To resolve the troublesome orders, you can set the status back to pending payment on 3.3.3+ and recalculate totals.
Forum: Plugins
In reply to: [WooCommerce] Some customers not receiving an order confirmationDefinitely sounds like SMTP problems. Are you sure it is set up to send through gmail and not still sending through your web server?
I would try one of these third party email services: https://docs.woocommerce.com/document/email-faq/#section-7
- This reply was modified 8 years, 2 months ago by Caleb Burks. Reason: Can't spell definitely
Forum: Plugins
In reply to: [WooCommerce] Shipping & Checkout – drop down menus brokenMmm, no web address so I can’t look for javascript errors happening on the page itself. But this is definitely being caused by a plugin or theme conflict.
Follow this guide to find the plugin or theme that is the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Products as donationsGotcha, so what you need is a way for customers to donate towards a product. And each donation fills up the “meter”. Once full, the product is “sold out”.
I know the Name Your Price extension can make it to people can donate any amount of money on a product. But the “meter” and setting it to be sold out once full will likely require some customization. I’ve looked into plugins that offer this sort of thing in the past, but never could find a good one.
Here are some places you could get hired help for building such a solution:
Forum: Plugins
In reply to: [WooCommerce] Set up only 1 shipping way for some productsHi Marine,
This will require a bit more than just using shipping classes. Product restrictions on shipping methods can be made with an extension like Conditional Shipping and Payments: https://www.woocommerce.com/products/woocommerce-conditional-shipping-and-payments/
Forum: Plugins
In reply to: [WooCommerce] How to show only provided payment method?Hmm, interesting scenario.
There’s not a way to do this by default I’m afraid, but could be done with some customization.
This does make sense to me though, and could potentially be something supported by core in the future. So could be worth opening up a feature request here: https://github.com/woocommerce/woocommerce/issues
In summary:
– When a payment method is selected here when creating an order: http://cld.wthms.co/Bmjaz3
– It should only show that payment method on the payment page: http://cld.wthms.co/zf6sQj- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Issue with StripeThis forum can only be used for the WooCommerce core plugin I’m afraid, and this is more related to the payment gateway in particular.
So please open up a support thread or ticket with the payment gateway plugin.
This will be here if you are using this plugin: https://wordpress.org/support/plugin/woocommerce-gateway-stripe
Or here if you have a WooCommerce.com account: https://woocommerce.com/my-account/
Forum: Plugins
In reply to: [WooCommerce] Single product image and gallery product not showingAre you sure you are adding a featured product image in the right place? See this guide for more details: https://docs.woocommerce.com/document/adding-product-images-and-galleries/
If you are adding images there and they aren’t showing up, be sure to clear the website cache – this may need to be done at the web hosting level.
If that doesn’t help, then you’ll need to rule out plugin or theme conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Is there a way to make WC treat products with no price as $0?Not sure I completely understand what you mean.
Why should every product with a sale price be $0? You can set $0 as the sale price if that’s what you mean? http://cld.wthms.co/aHr9eI
Forum: Plugins
In reply to: [WooCommerce] Loop with products which title contains the word/s “xxx”Eh, that will be a rather expensive query. I would recommend assigning these products to a taxonomy, either a specific tag or category. Then the query will make sense.
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Looks about right. Couple of notes:
1) Don’t need to global declaration at the top:
global $woocommerce;2)
function apply_coupon_fieldback() {is how you should start the function out.3)
if ( ! empty( WC()->cart->applied_coupons ) ) {might be safer.4) Probably just from pasting the code in the forums, but double check your quotations marks.
Forum: Plugins
In reply to: [WooCommerce] Disable default shop pageYou can set the shop page to show categories instead of products at Appearance > Customize > WooCommerce > Product Catalog.
Or, you could set up a redirect from the shop page to any other page you want.
Could also use the filter
woocommerce_get_shop_page_permalinkto change all links to the shop page to somewhere else.Forum: Plugins
In reply to: [WooCommerce] Wrong name shown on payment screenThis forum can only be used for the WooCommerce core plugin, and this is more related to the payment gateway in particular.
So please open up a support thread or ticket with the payment gateway plugin.
This will be here if you are using this plugin: https://wordpress.org/support/plugin/woocommerce-gateway-stripe
Or here if you have a WooCommerce.com account: https://woocommerce.com/my-account/
Forum: Plugins
In reply to: [WooCommerce] Woocommerce purchases on profiles publicIt is possible, but will require some customization – I don’t know of any existing plugins for this. You won’t want to be showing all of the order info like it does in the WooCommerce My Account are though, as some is personal/private.
Forum: Plugins
In reply to: [WooCommerce] Downloadable Product Links MissingIt should have been added when you installed WooCommerce: https://github.com/woocommerce/woocommerce/blob/d26c20c0a9685839c5e1e12a76b3faac52174e3c/includes/class-wc-install.php#L588-L604
So it’s been deleted somehow? More info on the table: https://github.com/woocommerce/woocommerce/wiki/Database-Description#table-woocommerce_downloadable_product_permissions
Will likely need to manually create it using the above query.