lingenChan
Forum Replies Created
-
Thank you
Kind regards,
Hi,
same exact error with sites having other plugins installed like Boxzilla or ACF Content Analysis for Yoast SEO… resulting in blank screen after WordFence update.
I commented last ClassLoader.php function on WordFence and everything returned to normal but not sure about the potential side effects…
I think its an issue with latest WordFence update.
Please help.
- This reply was modified 6 years, 2 months ago by lingenChan.
Forum: Plugins
In reply to: [WooCommerce Checkout Terms Conditions Popup] Latest update breaks pluginThat’s just a warning not an error…
I strongly think that you have to review the “updated_checkout” event.
Cheers,
Forum: Plugins
In reply to: [WooCommerce Checkout Terms Conditions Popup] Latest update breaks pluginMaybe try with onload then:
jQuery(window).load(function() { // your function here });
Just let me know if you solve it sometimes in order to know what happened!
Good luck,
Forum: Plugins
In reply to: [WooCommerce Checkout Terms Conditions Popup] Latest update breaks pluginThe idea is to trigger the Terms and Conditions modal when you click in the link under “I’ve read and accept the Terms & Conditions” and the functionality is working well.
If you need to show it in other ways than that you have to review the “updated_checkout” event you’re using because the problem is in there (try to change .bind with .on).
Good luck,
Forum: Plugins
In reply to: [WooCommerce Checkout Terms Conditions Popup] Latest update breaks pluginsorry, try again now, there were some ilegal characters (copy the exact code below):
<script type="text/javascript" > jQuery(document).ready(function() { jQuery( window ).bind( "updated_checkout", function() { jQuery("#checkoutpopupform").simplepopup(); }); }); </script>
Yes, I see the problem now, you used illegal characters apostrophes => ‘
You have to change them with i.e. double quotes => ”(I think you can even use your original code doing this modification).
Cheers,
- This reply was modified 6 years, 3 months ago by lingenChan.
- This reply was modified 6 years, 3 months ago by lingenChan.
- This reply was modified 6 years, 3 months ago by lingenChan.
Forum: Plugins
In reply to: [WooCommerce Checkout Terms Conditions Popup] Latest update breaks pluginTry chhanging it like below and tell me:
<script type=”text/javascript” > jQuery(document).ready(function() { jQuery( window ).bind( ‘updated_checkout’, function() { jQuery(‘#checkoutpopupform’).simplepopup(); }); }); </script>
- This reply was modified 6 years, 3 months ago by lingenChan.
Forum: Plugins
In reply to: [qTranslate X] 302 redirection instead of 301 on default languageWell, my security plugin recentrly said: The Plugin “qTranslate-X” appears to be abandoned (…).
I see there’s nothing new since 2016, so last revision was 2 years ago…
You can download the latest version from here: https://github.com/qTranslate-Team/qtranslate-x
I really hope somebody will take over this plugin or create a maintained similar one.
Kind regards,
Forum: Plugins
In reply to: [qTranslate X] 302 redirection instead of 301 on default languageI meant there’s no support/updates anymore, at least from the official WP plugins repo.
The plugin luckily still works well (for how long?).Kind regards,
Forum: Plugins
In reply to: [qTranslate X] 302 redirection instead of 301 on default languageHi @wedmegr,
you have a “dirty” way to solve this here: https://github.com/qTranslate-Team/qtranslate-x/issues/298#issuecomment-330101942
I think qtranslate-x plugin is sadly not anymore maintained and appears to be abandoned…
Kind regards,
Hi,
ok, no problem. But please think sometimes on implement the entire parsing of the page to show, including shortcodes.
Kind regards,
Hi,
now the popup is showing well but the problem is that I made my “Terms & Conditions” page based on my theme accordion shortcodes and they aren’t parsed in the terms & conditions popup because it is triggered by Javascript and the shortcodes are parsed by PHP.
I tried to make them parse in the popup with no luck. Any suggestion?
Thanks,
Hi,
cannot do that, I can only share the site URL: https://tiny.cc/rkieuy
and the “Terms & Conditions” URL: https://tiny.cc/9mieuyIs this enough for you?
Thanks again,
Hi,
thanks but this is not working as before:
1. accept terms and conditions checkbox disappeared or replaced by text+link only
2. doesn’t render shortcodes as before (my Terms & Conditions page is dropdown based).Kind regards,