Goudie
Forum Replies Created
-
Forget that ?? Paypal is broken
Thank you,
I updated to 3.8.6 and issue is resolved (I was afraid of breaking something because I have a licence, but it’s the same plugin).
One of the best plugin+support for any WooCommerce owner ??
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] PHP fatal error#0 /www/project/public/wp-content/themes/custom/functions.php(779): YITH_Pre_Order_Product->get_pre_order_status() #1 /www/project/public/wp-includes/class-wp-hook.php(324): wcs_custom_get_availability(Array, Object(WC_Product_Simple)) #2 /www/project/public/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array) #3 /www/project/public/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php(2127): apply_filters('woocommerce_get...', Array, Object(WC_Product_Simple)) #4 /www/project/public/wp-content/themes/custom/functions.php(231): WC_Product->get_availability() #5 /www/project/public/wp-includes/class-wp-hook.php(324): flatsome_woocommerce_shop_loop_category('') #6 /www/project/public/wp-includes/c" while reading response header from upstream
It seems the get_pre_order_status was not even used anymore – previously used to display a different availability text. Do you confirm this is the issue ? So I can check if this code was used elsewere on the website to avoid errors.
Thank you
I would love to, but it seems that the #1 website engine doesn’t allow image uploading here ?????♂?
Nothing fancy here, It may vary because I have many different shipping zones (w/wo tax, w/wo free shipping threshold, different weight rules, etc.) but the issue is the same every time the plugin is involved. The common settings are :
Tax included in shipping cost (Yes)
Rules Calculation (Sum)
Cart Calculation (Package value)
“Show only for logged in users” is always disabled of courseSome others shipping methods created without the plugin are never missing (even for deposits). I don’t know what happened. It seems in some situations the shipping appear when I enter postcode AND state, while it should already appear (country is detected by geolocation). Again, it’s working fine when it’s not added to cart with a deposit.
- This reply was modified 11 months, 1 week ago by Goudie.
The issue is NOT about weight rules, or product weight. Again, the same product without have no issue while it’s exactly the same numbers.
I think you have not understood my message correctly:
A product added to the basket, the shipping does not appear (even though it should).
If I add a second (regardless of the result, I have other shipping methods that appear in this case but that’s not the point of the problem) and then go back to 1 piece, then shipping appears.
This is not a rule setting problem.
Product weight is 2kg
If I add the same product to cart without deposit the shipping is fine
Forum: Reviews
In reply to: [Advanced Shipment Tracking for WooCommerce] UselessPlease can you give more details about “your orders will be messed up” ?
Still having same issues with reCAPTCHA. Having to disable one of the most popular cache plugin is not a solution.
I’m about to switch my 600€/y subscription to anything else paying more attention to its customers.
On my side the invisible recaptcha never worked, it keeps asking “Please click on the reCAPTCHA box” while there is obviously nothing to click…
It works when I’m connected as admin, but not from another browser as visitor (of course the cache and everything is refreshed both from server and browser). Only one form, one instance of reCaptcha.
New spam bots attack today targeting Brevo forms (nothing with my others forms for years with no captcha at all)
Same here, even after desactivating reCAPTCHA from cwginstock plugin.
Many bots are targeting Sendinblue forms to register huge amount of e-mails, which have major impact on the performance and deliverability of our campaigns.
reCAPTCHA v3 is released since 5 years now, maybe it’s time to update your plugin to support it.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] WordPress bug related to YARPPPareil ici, mais pour l’instant je vous recommande surtout vivement de la supprimer jusqu’à ce que cette vulnérabilité soit fixée :
Forum: Plugins
In reply to: [CTX Feed – WooCommerce Product Feed Manager] Memory leakThank you for your help. Is the issue fixed in v5.0.0 ?
Forum: Plugins
In reply to: [CTX Feed – WooCommerce Product Feed Manager] Memory leakSame here, since the last update I had to disable the plugin, otherwise I have PHP memory issues when I update order status for example, I get ghost orders with no data, and no emails are send, 500 error everywhere… this is a serious issue.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Schema and regular/sale priceUnfortunately I can’t edit my previous posts. I understood that the problem appears when a product is added to the cart. Here is the code that seems works, however if it could be checked by the creator of the plugin (or someone who knows better than me)…
add_filter('seopress_schemas_mapping_select', 'sp_schemas_mapping_select'); function sp_schemas_mapping_select($select) { $select['Custom'] = [ 'currentprice' => __('Current price', 'wp-seopress-pro'), ]; return $select; } add_filter('seopress_schemas_dyn_variables', 'sp_schemas_dyn_variables'); function sp_schemas_dyn_variables($vars) { $vars[] = 'currentprice'; return $vars; } add_filter('seopress_schemas_dyn_variables_replace', 'sp_schemas_dyn_variables_replace'); function sp_schemas_dyn_variables_replace($values) { global $product; if ($product) { if( $product->is_on_sale() ) { $values[] = $product->get_sale_price(); } else { $values[] = $product->get_regular_price(); } } return $values; }