jusemora30
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blocksy] Bug in v2.1.33: main.js breaks WooCommerce AJAX cartYes, It got fixed by Blocksy and also by FunnelKit Cart plugin
I fixed that using CSS
html {
scrollbar-gutter: stable !important;
}Please see the attached link to video where it moves the body of the page a tad to the right
https://drive.google.com/file/d/15-kAvQNpGcpEbLijVpkUhhq-3DeXUGBG/view?usp=sharing
Blocksy support told me that it was something to fix with you
Perfect! I replaced the plugin with this one you attached and it worked! thank you.
Forum: Themes and Templates
In reply to: [Blocksy] Bug in v2.1.33: main.js breaks WooCommerce AJAX cartThank you! I just submitted the ticket.
Your Ticket #55181 has been successfully submitted!Forum: Themes and Templates
In reply to: [Blocksy] Bug in v2.1.33: main.js breaks WooCommerce AJAX cartHello Eduard,
Yes, I disabled all plugings besides Woocommerce and FunnelKit Cart and the issue persist. I changed the them to twenty four theme and it worked normally so I think it’s something related with the last blocksy update
THank you, I’ve been contacted by different customers because of the cart not working. Hope you find a fix soon. Thank you!
I deactivated all plugins and all snippets and I realized it’s something with the Theme. I use Blocksy Child Theme
Forum: Plugins
In reply to: [Payment Gateway of PayPal for WooCommerce] PHP Error on Debug.log fileHello!
No problem, no rush. Glad you could recreated it, I had no Idea what it was and it was constantly so I wanted to check with you. Thank you!
Hello!
Yes, I was giving it time because the issues was suddenly but so far so good, thank you so much! After six days I think it’s fixed with that snippet.
Perfect!
I just checked and the debug.log is clean after adding a course to checkout.Thank you!
Perfect! Thank you so much! that worked!
Forum: Plugins
In reply to: [WPS Hide Login] Translation Loading LogAwesome, thank you!
Thank you so much! using woocommerce filters saved my day
Forum: Plugins
In reply to: [Payment Gateway of PayPal for WooCommerce] Log generated for all purchasesThank you for your response. Here are the details you requested:
- Frequency: The warning appears consistently on every PayPal transaction initiated via the Express Checkout smart button. It doesn’t seem to happen if the customer fills out the standard checkout form first.
- System Status Report: It’s all good there, nothing flagged in red.
- Customizations: I use a Funnel Builder plugin which customizes the checkout pages.
I got help to debugging this issue with AI and this is the result:
Analysis:
I have confirmed that the warning on line 2442 is caused by trying to access $post_data[‘billing_phone’] when $post_data is null.The issue is fully resolved by applying a null coalescing operator.
Original Code (Line 2442):
? $post_data[‘billing_phone’] : …Proposed Fix:
? ($post_data[‘billing_phone’] ?? ”) : …Applying this change locally has permanently fixed the error. I hope this helps you address the issue in a future update.
Thank you!