Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Loop with products which title contains the word/s “xxx”Export products to csv, and add the taxonomies that way. This is unfortunately just a result of bad performance planning I’m afraid :/
Other option is to come up with a custom query to automatically add a taxonomy to products matching a certain rule.
Forum: Plugins
In reply to: [WooCommerce] Anything related to a purchase not showing?A number of those could be causing this. You can try dragging out template overrides until the problem is resolved. Then you know which template is at fault.
Honestly though, that’s a really bad sign in a theme. If I were in your position with a theme that has so many overrides and isn’t being supported, I would switch themes asap.
Forum: Plugins
In reply to: [WooCommerce] Shipping method unavailable after coupon is appliedDo you have any restrictions on the free shipping method maybe? Such as a minimum cost?
I’m having trouble replicating this. So could you test with only WooCommerce plugin active and a default WP theme as well? https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Adding a color to note woocommerceYou should use the
woocommerce_order_note_classfilter: https://github.com/woocommerce/woocommerce/blob/02917db066528989408aed86a95c24abc748a15e/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php#L43Making changes directly in the WC core plugin is never correct. Always use a customer plugin or child theme.
Forum: Plugins
In reply to: [WooCommerce] Rounding prices in a cart problemThe rounding system in WC core is pretty well tested, is there anything else involved here that could be altering prices?
I’d recommend switching to a default WordPress theme and testing with only WooCommerce active: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Filter by price do not show correct priceAny chance there is a variation with $7 price, or an out-of-stock product/variation?
I see it is now a minimum of $8 on your site. Were you able to find where the price was coming from since it’s been changed?
Forum: Plugins
In reply to: [WooCommerce] PayPal: no email notification after paymentWhat is the order status? If it’s not processing or completed, emails will not be sent yet.
If your order status is stuck in “Pending payment” even after payment, this is known as an IPN problem.
More info here: https://docs.woocommerce.com/document/paypal-standard/#section-21
Forum: Plugins
In reply to: [WooCommerce] Product ProblemsThis is how it works by default when “redirect to cart after add to cart” is enabled at WooCommerce > Settings > Products.
To change the link will require some customization. The
woocommerce_continue_shopping_redirectfilter is what you’ll need to use in either a child theme or custom plugin: https://github.com/woocommerce/woocommerce/blob/64bcabf0af9a05274d53ec833a4e8c9153509bc4/includes/wc-cart-functions.php#L120Forum: Plugins
In reply to: [WooCommerce] Anything related to a purchase not showing?Could be anywhere in the theme causing this problem really.
Maybe check which templates the theme is overriding at WooCommerce > Status and go from there.
I’d recommend looking for a new theme if support is no longer existent and they aren’t updating.
Forum: Plugins
In reply to: [WooCommerce] Auto sorting issue of products in OrdersAh, I see what you mean.
Might be worth opening up a Github issue for this one, as I suppose it does make sense to preserve the original order they were added in sometimes: https://github.com/woocommerce/woocommerce/issues
Forum: Plugins
In reply to: [WooCommerce] woocommerce item total and subtotal are different….I recommend taking a bit different approach here.
Create a single product, and set the catalog visibility to hidden.
Then using Product Bundles, create a bundled product and add a min and max quantity of 7000 for this product: https://www.woocommerce.com/products/product-bundles/
So the user will be adding the bundle to their cart, but it will really be 7000 smaller items. This will help with inventory as well.
Forum: Plugins
In reply to: [WooCommerce] Add item to woocommerce shop page display comboboxAre you referring to this setting in the customizer: http://cld.wthms.co/tW2fkN ?
Or maybe this field on the shop page: http://cld.wthms.co/wnAqQ5 ?
And then could you let me know why you need a “none” option exactly? That would help add some context to what you’re trying to do..
As for code, you shouldn’t need to make direct changes. This filter for example lets you change the contents for the sorting field via another plugin or in the theme: https://github.com/woocommerce/woocommerce/blob/53d21d55595eb979a2a2d0cf8de95949e6c52ccd/includes/wc-template-functions.php#L975
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shop Displays HomepageSo the problem is that your home page content displays on what should be the shop page?
Two things to check:
1) At WC > Settings > Products, make sure the correct page is selected as the Shop page.
2) Edit the shop page, and check the “page templates”. Your theme might have a homepage templates and if that’s selected, I could see it causing this. Also make sure the page doesn’t have any weird shortcodes or something it’s the main content area.
Awesome, glad we were able to get to the bottom of that 🙂
I’ll check a bit later to see if there’s something that would cause these temp products to have the status changed like that. But I’m thinking right now it might have just been an accidental export then import.
Forum: Plugins
In reply to: [WooCommerce] Coupon code does not existCreate a new coupon without any restrictions. Give it a name and discount amount only. See if that works.
If it does, re-create the coupon not working and it should still work. If you have any restrictions, that’s likely where the problem lies.
Should also rule out other plugins as possible conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4