andrewbraun
Forum Replies Created
-
Forum: Plugins
In reply to: [hCaptcha for WP] Increase of spam in last 2 weeksI noticed they were all coming from the same 1-3 IP addresses and blocked them from the site. No more spam for now–at least until they rotate IPs ??
Sure, will do! Thanks ??
@jarnovos Figured out part of it! There’s definitely a GravityForms conflict–if you disable GravityForms Complianz goes back to normal. We definitely need forms and videos to coexist on the same page though, so disabling GravityForms wouldn’t be a great option.
Hey @jarnovos! Thanks for getting back to me ?? Currently the videos are in Divi video modules, but I also tried going directly with the html embed code–same result both ways. I have noticed, though, that the issue doesn’t seem to occur on every page that has a GravityForm and a video (example: https://newotm.wpengine.com/expat-tax-services/us-owned-foreign-corporation/). I’m going to look through and see if there’s a pattern.
@jarnovos I’m going to push my self-hosted video solution through tonight but would definitely welcome some pointers as to why Complianz seems to be losing count of my iframes ??
I really should have checked the console earlier! Found this error:
Uncaught TypeError: can't access property "indexOf", contents is undefined <anonymous> https://newotm.wpengine.com/:363 jQuery 9 cmplzEnableMarketing https://newotm.wpengine.com/wp-content/plugins/complianz-gdpr/assets/js/complianz.min.js?ver=5.3.0.1:1 jQuery 2 cmplzEnableMarketing https://newotm.wpengine.com/wp-content/plugins/complianz-gdpr/assets/js/complianz.min.js?ver=5.3.0.1:1 setBlockedContentContainer https://newotm.wpengine.com/wp-content/plugins/complianz-gdpr/assets/js/complianz.min.js?ver=5.3.0.1:1 conditionally_show_warning https://newotm.wpengine.com/wp-content/plugins/complianz-gdpr/assets/js/complianz.min.js?ver=5.3.0.1:1 <anonymous> https://newotm.wpengine.com/wp-content/plugins/complianz-gdpr/assets/js/complianz.min.js?ver=5.3.0.1:1 jQuery 13
Screenshot: https://i.imgur.com/Ro0SqU4.png
Going to see if I can hunt down the source of this.
Hi Jarno! Thanks ?? Unfortunately that didn’t seem to do anything. Any other thoughts?
I need to get the site useable, so I’ll be fixing the issue later today by just uploading the video to the site rather than linking to YouTube. Still worth figuring out what the issue is here in case we need to do a YouTube embed and run into this issue again in the future!
Forum: Plugins
In reply to: [WooCommerce] Change Billing & Shipping title@crdunst is right–you have to replace the & with & amp; (no space after the &)
So:
//Change the 'Billing details' checkout label to 'Contact Information' function wc_billing_field_strings( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Billing & amp; Shipping' : $translated_text = __( 'It works!', 'woocommerce' ); break; } return $translated_text; } add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 );
Don’t forget to remove the space between & and amp;
- This reply was modified 3 years, 8 months ago by andrewbraun.
- This reply was modified 3 years, 8 months ago by andrewbraun.
- This reply was modified 3 years, 8 months ago by andrewbraun.
- This reply was modified 3 years, 8 months ago by andrewbraun.