mtruitt
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] how to avoid 1000s of variations?I’ve run into this same issue with company that sold popcorn in tins.
Though we ended up with 40k+ on a few because they offered 6 and 12 pack options as well.
What we ended up doing was setup sub categories under size and removed the tin as a variation for the bulk of the products.
More than anything this helped SEO as it added more products and we could use upsells and cross-sells or related items to push the others from the same page.
Was it as easy on the user to just visit one page for a gallon of popcorn and select the tin/flavor? No, but they could visit the Gallon page and see all the tins and just select from there the one they wanted and then select the flavor.
It also made control for inventory management easier as the client didn’t have to go through pages upon pages of variations to flag a specific tin out of stock.
If you do not need to manage inventory with it and pricing is all the same it gets rather simple. You don’t need but one variation if that is the case.
Forum: Plugins
In reply to: [WooCommerce] Shipping not wokingHow did you set shipping up after removing all plugins? Flat rate, shipping zones, etc?
I just did a test with a fresh WP install with Woo and the checkout form changes as it should. Can you see if there are any javascript issues on the page when you change from US > UK or UK > US?
Forum: Plugins
In reply to: [WooCommerce] Changing crop positionDid you try using the update option? add_image_size is for adding/defining a new image size.
https://developer.wordpress.org/reference/functions/add_image_size/
Forum: Plugins
In reply to: [WooCommerce] Multiple Refund Email NotificationsDid you use different emails for admin/orders? If not, this can cause “duplicates”.
Forum: Plugins
In reply to: [WooCommerce] 5 Reviews per pageYou would need to reach out to Yotpo Social Reviews if you are using that on the homepage.
https://wordpress.org/support/plugin/yotpo-social-reviews-for-woocommerce
Forum: Reviews
In reply to: [Understrap] Couldn’t get child theme to workChild theme works fine. You have to use gulp to move assets over with a script.
This fully explains how to use the child theme.
Can you post the details this post asks for?
https://wordpress.org/support/topic/before-posting-gather-the-following-details/
This would help troubleshoot this as well.
It looks like this is a mix of plugins.
I see these as well.
woocommerce-multilingual
wpml-translation-managementHave you tried disabling the plugins other than Woo/WP All Import and doing the import that way? The issue is most likely one of those and not WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Cannot Change Postal/ZIP* label textThis would go in the functions.php file.
Forum: Plugins
In reply to: [WooCommerce] security issue pishingI would suggest using Wordfence as well.
They work well together in helping keep a site free of issues.
https://www.wordfence.com/help/scan
You can scan the front of the site with the above link and if you install the plugin and run a scan it will report files that seem incorrect. Generally, it does this by comparing them vs the files directly from the WP repo.
Sites I have come across that have been infected tend to have it other places as well.
Forum: Plugins
In reply to: [WooCommerce] Cannot Change Postal/ZIP* label textHi @jennineh,
This should do almost everything you need. The only thing it does not do is give you the ability to edit this value after it has been submitted via the admin or order pages.
Due to the length I am linking it as a gist.
I also added comments to each section so hopefully it all makes sense. If not, let me know.
https://gist.github.com/mtruitt/9741f611577f4b76dd36bee316af1dee
Forum: Plugins
In reply to: [WooCommerce] Accessing WooCommerce database@zhuzh1 – Best of luck and sorry about hijacking your post. Feel free to DM me on slack if I can be of anymore help.
@stefsternyc – Enjoy trolling yourself.
- This reply was modified 7 years, 8 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [WooCommerce] Accessing WooCommerce database@stefsternyc – Please heed your own advise then and don’t assume. Most people that come to the forums are owners/users and not developers. Assuming they “know” for someone that does this for a living is not something you can afford to do easily.
Also please don’t be so soft to assume that you are getting “jumped” for someone making a correction to something you posted.
However, I will not continue this and bog down/hijack this post over your feelings getting hurt for me clarifying regarding payment gateways and storing CC information directly in a database.
Forum: Plugins
In reply to: [WooCommerce] Accessing WooCommerce database@stefsternyc – for future reference then you may want to include that when stating/mentioning saving credit card information as what the person reading that statement can take it as.
As well, WC by default does nothing with CC information. That is all provided by the payment gateway and is unique to individual ones as not all offer the option to store for future use.
Forum: Plugins
In reply to: [WooCommerce] Accessing WooCommerce databaseAs stefsternyc stated. Its all in one database. Most of the information you are looking for will be in woocommerce_{table_name}.
However, credit card information should NEVER be saved to the DB directly. The legal backlash on this should the site ever get hacked/information get leaked….
Stripe and other payment gateways use tokenization to reference that information within their own systems.