Gerhard Potgieter
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Version 3.3.1 upgrade – PHP warnings on product pageHi @ianmjones, would it be possible to send me a copy of the plugin to my first name at automattic dot com so I can test a fix?
Forum: Plugins
In reply to: [WooCommerce] Version 3.3.1 upgrade – PHP warnings on product pageHi, it sounds like there might be a conflict between the new on-the-fly image regeneration and the WP Offload S3 plugin.
You can disable the image functionality in the meantime while we look into this as image hosted externally should not be resized.
Add the following code to your site to disable image resize functionality:
add_filter( 'woocommerce_resize_images','__return_false' ); add_filter( 'woocommerce_background_image_regeneration','__return_false' );Hi, have a look in the customizer under WooCommerce section for the display settings. Ensure you have the cropping set to 1:1. If there are no settings then it means your theme is declaring its own custom image sizes which cannot be overriden via a WooCommerce settings.
Forum: Plugins
In reply to: [WooCommerce] Updated to 3.3.1 and text attributes now all select typeAttributes are text always, they only switch to select boxes when you use them for variations and create variations for a product based on the specific attributes.
http://cld.wthms.co/pN1lml http://cld.wthms.co/tKZthC http://cld.wthms.co/nTZMIN
Forum: Plugins
In reply to: [WooCommerce] Display Options on CustomizerThe decision to move the display setting to the customizer was a logical one for us since the customizer is a visual editor, moving the setting that changes the visual appearance of your shop makes sense since you can now preview the changes as you change the settings.
I hear what you say about having multiple WooCommerce sections and agree there should only be one. Since _s is also an Automattic product I will pass this on to the team responsible and have them look into merging the settings into the core WooCommerce section and not their own one.
Forum: Plugins
In reply to: [WooCommerce] Add to cart, update quantities, and coupons not workingHad a look at it seems there is some sort of redirect in place on your cart page when you do a POST request to it http://cld.wthms.co/aRiktt
Can you test by disabling all plugins except WooCommerce and then switching to a standard theme like Storefront? If that works you can enable everything one by one again and test after each time to find the culprit.
- This reply was modified 8 years, 3 months ago by Gerhard Potgieter.
Forum: Plugins
In reply to: [WooCommerce] Add Text Fields in Product Data Section in WoocommerceYou can use product attributes for this, define your fixed attribute and then on the product you can assign it to the product which will make it display underneath the description.
Forum: Plugins
In reply to: [WooCommerce] WOO commerce template PHP files not updatingYes, that is correct, because you updated and then rolled back your db version will still be 3.3 and the checks against the template versions will differ causing the notice.
We are planning on releasing 3.3.1 later today which takes care of all the theming issues, after updating the notices will go away.
Forum: Plugins
In reply to: [WooCommerce] Woo requires optimizationWe constantly tweak WooCommerce to make it more performant. Performance issues can however also be server related.
WooCommerce is a big plugin and although we develop it with performance in mind it will put a slight increase on your servers memory usage.
It also depends a lot on what your server setup is, if you have a pretty stock standard hosting plan, then you can expect it to lower page load time as your site will require a bit more memory meaning it can cause slower response times.
Things like having an object cache like Redis or Memcache in place and running master-slave database setups will definitely speed things up.
If you can pinpoint what is causing this then please do inform us and we will gladly investigate this further.
Forum: Plugins
In reply to: [WooCommerce] Plugin recomendationHave a look at the product add-ons extensions, it will give you the option to add the special fields on the product page itself, which would be better if you are wanting to have fields for each product in the cart.
Forum: Plugins
In reply to: [WooCommerce] Unable to change stock amount on admin product pageAs Caleb suggested, ensure you have the manage stock option check then you should see the quantity box http://cld.wthms.co/lbMujD
Forum: Plugins
In reply to: [WooCommerce] Why product category assign automaticYou cannot delete it, same as with the default WordPress one for posts. You can, however, rename it as Caleb explained.
Forum: Plugins
In reply to: [WooCommerce] Urgent: Shopping page became empty after updating to GCW 0.9.10Hi, we have fixed this and will go out with the 3.3.1 update scheduled for later today. In the interim, you can downgrade to 3.2.6 without any issues and should then have your shop back up and running.
https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip
Forum: Plugins
In reply to: [WooCommerce] awful order page after updateThe design should be enabled by default unless you have a theme or plugin that is overriding the default functionality of the orders screen.
I would suggest you disable all plugins except WooCommerce and also switch to a default theme like Storefront and test it that way to eliminate any interference via a plugin or your theme.
Forum: Plugins
In reply to: [WooCommerce] woocommerce 3.3.0You have a line somewhere in your theme’s stylesheet that is causing this.
.woocommerce .upsells.products ul li.product:nth-child(4), .woocommerce-page ul.products li.product:nth-child(4) { margin-right: 0; }You need to remove the
.woocommerce-page ul.products li.product:nth-child(4)part otherwise it will take effect on all product images that are displayed 4th.