mtruitt
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Color attribute not showing up on productThat looks like a addon for WooCommerce.
Please provide https://wordpress.org/support/topic/before-posting-gather-the-following-details/ for additional help.
Forum: Plugins
In reply to: [WooCommerce] PayPal BraintreeProviding screenshots helps. As well as following – https://wordpress.org/support/topic/before-posting-gather-the-following-details/
Forum: Plugins
In reply to: [WooCommerce] Developing a woocommerce themeCan you link to the site? or provide a image? Due to how WooCommerce gets updated most guides are out of date. Using developer tools will make your life easier and you need to make sure your theme loads its CSS after WooCommerce to override the default styling. If you are getting no styling at all there are other issues but would need to see it.
Forum: Plugins
In reply to: [WooCommerce] Product thumbnail not showingCan you be a bit more specific? Maybe a page that shows an example of the issue?
Forum: Plugins
In reply to: [WooCommerce] The loss of the contents of the basketI can confirm this is not default behavior.
Please follow this as it would help – https://wordpress.org/support/topic/before-posting-gather-the-following-details/
Forum: Plugins
In reply to: [WooCommerce] customizing WooCommerceif it is stuck on that just look for a .maintenance file at the root of the site. You can just delete this file and the admin will come back. It gets set during plugin updates so functions do not get called which would break the site if it attempts to load them.
Forum: Plugins
In reply to: [WooCommerce] flat-rate shipping formula optionsForgot to add this.
https://docs.woocommerce.com/document/flat-rate-shipping/
Provides you more examples.
Forum: Plugins
In reply to: [WooCommerce] flat-rate shipping formula options([qty] * 1) – 1
This multiplies the qty * 1 then removes 1 so if only one is in the cart it isn’t charged for it.
Forum: Plugins
In reply to: [WooCommerce] Disable Menu and WidgetsWhat Menu are you referring to? Widgets can be done in any theme but generally one that removes the sidebar will remove the widgets.
Storefront is a very solid theme for WooCommerce (its free) and made by the people at WooCommerce.
https://woocommerce.com/storefront/
They also offer a lot of plugins to modify it. Some free and some paid. They also offer a 30 day refund if it does not do what you want or does not work like you wanted. So really its safe to try. I’ve personally had to request refunds on plugins that just didn’t do quite what I wanted and it was no hassle to do it.
https://woocommerce.com/product-category/storefront-extensions/
So can’t really say BEST but Storefront will do most of what you would need out of the box at least starting a store.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Gallery Zoom Won’t WorkThe zoom ability is also affected by image size. Try using a larger image to see what results you get. Most of the images I looked at are right around 700×700. Try one that is 1000×1000 or even 1200×1200.
I had no issues with zoom itself working on Mac or PC in Chrome, FF, Edge, IE, Safari.
Forum: Plugins
In reply to: [WooCommerce] CSS changes after updateThe only other possible thing I can think of is if it was a paid theme to see if there is a more up to date version of it. However, if it was modified beyond default stylings it would still have to be updated.
Forum: Plugins
In reply to: [WooCommerce] Default product won’t go to CheckoutGive this a try
function woo_default_product() { if( ! is_admin() ) { if ( WC()->cart->is_empty() ) { WC()->cart->add_to_cart( 330 ); } } } add_action('template_redirect', 'woo_default_product', 10, 0 );I had issues with it on the woocommerce_check_cart_items hook. It always went through the if statement and would validate as 0 items in the cart then re-add the product.
Testing using the above, I was able to go directly to the checkout page with the cart present and checkout.
Forum: Plugins
In reply to: [WooCommerce] Price variation not workingHi ggstuff,
Can you proceed the status section that Hannah requested? and if you change themes to just test it. No you will not lose it. I would change to storefront and test there.
it almost seems like its the theme since its working other wise.
Forum: Plugins
In reply to: [WooCommerce] Default product won’t go to CheckoutBy chance did you try changing the theme to storefront or twentyseventeen and seeing if the issue is the same? (Toss just that function in the function file for those themes).
Forum: Plugins
In reply to: [WooCommerce] CSS changes after updateThere is no easy way to do this. A lot of the containers, classes, and ids could and most likely did change. You could go through and look to roughly what the only one describes and replace the old classes etc with the new.