Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] handheld footer bar – site-product-search missing!First thing to do is check if your theme or another plugin is involved. So temporarily switch to the parent Storefront theme, and disable all plugins except for WooCommerce. Then see if the issue occurs.
This forum is for WooCommerce core support only though, and this is theme related. So if you have any further questions about the theme, be sure to use the support forum for that: https://wordpress.org/support/theme/storefront
Forum: Plugins
In reply to: [WooCommerce] Ending a subscription after a set number of renewalsYou should be able to set a Subscription length on the product. For example, renews every month for 12 months. After a year, no more auto-renewals.
That said, I’m afraid we can’t provide support for extensions other than WooCommerce core in the forums here per forum rules. If you’ve purchased WooCommerce Subscriptions from WooCommerce.com, then you can contact premium support here for further questions: https://woocommerce.com/my-account/marketplace-ticket-form/
Forum: Plugins
In reply to: [WooCommerce] Changing statuses iconsThe icon can be added with CSS: https://www.skyverge.com/blog/changing-woocommerce-custom-order-status-icons/
Also, this plugin can help with this if you have more requirements: https://woocommerce.com/products/woocommerce-order-status-manager/
Forum: Plugins
In reply to: [WooCommerce] How can I have nested attributesI don’t believe this was ever supported in WooCommerce by default, there has never been a conditional attributes / parent system like that to my knowledge.
To achieve this using just WC core, you would want one size attributes with terms for both men’s and women’s. So for example:
Size: Men's Small | Men's Medium | Women's Small | Women's Medium | Unisex Mediumetc,Then when the first attribute of either “M’ or “F” is selected, it will show the available sizes based on matching attributes. Or you could just scratch the first selection and let them pick any size off the bat.
Forum: Plugins
In reply to: [WooCommerce] Reorder AttributesAh, then yep – you can re-order those as well. The variations won’t be affected as long as all of the attributes stay the same name and all are still present.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Tax OptionsThat’s correct, checkout totals will be refreshed when editing the city field by default. Just tested to confirm π
Forum: Plugins
In reply to: [WooCommerce] Reorder AttributesIs the product using a global attribute, or a product-level custom attributes?
If a custom attribute, you can just re-order with the text: http://cld.wthms.co/22MbNR
If a global attribute, they should / have to be at Products > Attributes.
Forum: Plugins
In reply to: [WooCommerce] Maximum recommended lines in product import csv?Also make sure you use the “Update existing products” setting accordingly. The products in your CSV should already exist with a matching SKU or ID when using this option, otherwise they are skipped.
Forum: Plugins
In reply to: [WooCommerce] Showing percentage discounted under price$product->get_type()will return the product type. So at the very top of the function you could do something like this:if ( 'simple' !== $product->get_type() ) { return $price; }Forum: Plugins
In reply to: [WooCommerce] Emails are not being sentIt’s quite common for shared hosting environments to have email troubles, even dedicated hosting environments depending on the setup.
The error you saw about “could not instantiate mail function” is a bit different than what I’ve seen in the past though, so there was quite possibly some extra that was wrong with the previous server.
That said, even on a new host I would recommend using a 3rd party SMTP: https://docs.woocommerce.com/document/email-faq/#section-7. There are many benefits to this in all cases, and it’s a must-have in shared hosting environments. Even with dedicated hosting it helps take away some server load and can prove super helpful if you ever have a peak day/hour.
Forum: Plugins
In reply to: [WooCommerce] Product date_modified is not updatingThanks for testing. I’m not 100% sure what the intended result is, but I do have similar thinking to you as to how I would expect this to work.
Your GH report looks good, so we can continue there so the devs can take a look. Linking here for reference in case anybody else comes across this thread: https://github.com/woocommerce/woocommerce/issues/19427
Forum: Plugins
In reply to: [WooCommerce] Issues on live site Ajax not working properlywell the client no matter what wants Crazy Domains .. so I have no choice β¦ I use other servers that have no issues ..
Hmm, well that’s unfortunate. Hopefully they are willing to assist with server configurations, as something definitely seems to be wrong on that end of things.
One question, I was told if I have an index.html file in the front of WordPress this could cause the βAdd to Cartβ to spin also
I’m not sure I follow what you mean exactly. There are lots of plugins that can help with this sort of thing though:
– https://wordpress.org/plugins/maintenance/
– https://wordpress.org/plugins/coming-soon/Forum: Plugins
In reply to: [WooCommerce] Products do not show upRight, so the default content will only be set up for you if you use the installation wizard. That will be missed if you do things manually via CLI
As for images, are these the default demo product images, or ones in a custom CSV you’ve made? I’m not familiar with using symlinks for images, but that definitely sounds like the possible problem.
The core WooCommerce plugin should have tab here, yes: http://cld.wthms.co/0hVU2Y
If it is not there, and you are using WooCommerce version 3.0+, then your theme or another plugin is causing a conflict.
Forum: Plugins
In reply to: [WooCommerce] Dynamic ProductYea, attribute/terms would not be great. Better to just have text fields, like with Product Add-Ons: https://www.woocommerce.com/products/product-add-ons/. You can add your own fields programatticaly though.
Since these fields affect the actual item info, there will be another step. Once in the cart or while being added, you will need to set the cart item’s dimensions based on the meta values. I believe this plugin does something similar, so it is possible: https://woocommerce.com/products/measurement-price-calculator/
Once hooked into the cart item, can just call methods like
$item->set_length()to change the actual values.