quantum17
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WordPress 5.3 stops Woocommerce Admin CSS from loadingResolved – issue was with theme’s cleaner style tag script that needed to be removed
Forum: Plugins
In reply to: [WooCommerce] Order Status – On Hold Validation ErrorHey Eric, they just said changing the decimal field would fix the issue. Seems like an odd unnecessary change but if it stops orders going on hold gotta be done I guess!
Forum: Plugins
In reply to: [WooCommerce] Order Status – On Hold Validation ErrorFor anyone wondering, I contacted Woocommerce and they advised to go to WooCommerce > Settings > General and change the Number of Decimals fields to 2 instead of 0.
Forum: Plugins
In reply to: [WooCommerce] Order Status – On Hold Validation ErrorHi Thomas, there is no difference between the Woocommerce order total and Paypal total, the orders/payments all go through fine. It’s just if one of the products stock level goes from 1 to -1 it puts the order ‘on hold’. It doesn’t always go to negative either, its rather odd. I cleared all customer sessions in the Woocommerce tools to see if that helps as well as what was suggested by Amanda.
Forum: Plugins
In reply to: [WooCommerce] Order Status – On Hold Validation ErrorHi Amanda, thanks for the reply. So do I just need to tick the following setting?
“Click here to allow transaction-based postage values to override the profile postage settings listed above (if profile settings are enabled)”.
The strange thing is not all orders are coming through as ‘on hold’, its only when the stock goes from 0 to -1.
Forum: Plugins
In reply to: [WooCommerce] Gallery thumbnail size for variation image switcherThanks for the info Hari. I need to remove gallery_thumbnail as I wish to retain original image size instead of it being cropped. Does anyone know of any code to put into functions.php to do this?
Forum: Plugins
In reply to: [WooCommerce] Blurred images after updating to 3.3.2Hi Mike, I do appreciate your help I just don’t wish to post my link publicly, I’m just looking for some insight. My thumbnail images before were not square they were 71×83, these have been cropped down to 71×71. How do I get them back to 71×83?
Also the link to ‘Looking for the product display options? They can now be found in the Customizer Go see them in action here.’ displays nothing, the whole customizer is blank.
Forum: Plugins
In reply to: [WooCommerce] Why change the product dimensions options….?I totally agree with the op, a terrible change and has caused unnecessary issues
Forum: Plugins
In reply to: [WooCommerce] Blurred images after updating to 3.3.2I’ve had to rollback to 3.3.1 which works perfectly until I figure out whats going on. Whilst trying to make changes to the update I did regenerate thumbnails and it did nothing. I just wish to know how to remove the 3.3.2 image changes from the main files as I don’t want these changes to happen.
Forum: Plugins
In reply to: [WooCommerce] Blurred images after updating to 3.3.2Hi Mike, thanks for the quick response. So if I was to disable image regeneration and image resizes using the following code would this stop the change from happening?
add_filter( ‘woocommerce_background_image_regeneration’, ‘__return_false’ );
add_filter( ‘woocommerce_resize_images’, ‘__return_false’ );Forum: Plugins
In reply to: [WP Super Cache] Excluding specific cookies such as woocommerce_cart_hashThanks Sasa, really appreciate your help!
Forum: Plugins
In reply to: [WP Super Cache] Excluding specific cookies such as woocommerce_cart_hashThanks for your reply Sasa, I’m very basic with php so do I just put the following in a php file?
<?php isset( $_COOKIE['woocommerce_cart_hash'] ) && define( 'DONOTCACHEPAGE', true ); ?>Would greatly appreciate your help.
Forum: Plugins
In reply to: [WP Super Cache] Excluding specific cookies such as woocommerce_cart_hashHi Donncha, thanks for the info. If I was to add the following code to wp-config.php would this work?
if(!empty($_COOKIE)) foreach($_COOKIE as $__name => $__value) if(stripos($__name, 'woocommerce_cart_hash') !== FALSE) { define('DONOTCACHEPAGE', TRUE); break; } unset($__name, $__value);I’m having the same issue and have yet to find a solution, it appears the new Woocommerce update has changed something.
One thing I have noticed is if you play around with the attributes e.g. add a new brand or delete a colour it can sometimes bring the missing product counts forward on the frontend. But they disappear again if you then delete the additional attribute, its weird. Worked perfectly fine before the update.
- This reply was modified 8 years, 7 months ago by quantum17.
I am also having a similar problem that has recently occurred after updating. The widget for Filter Products by Attribute is not displaying attributes correctly on the front end whenever I add a new product. However in admin the products are showing up correctly in their specified attributes.