Korveld
Forum Replies Created
-
Forum: Plugins
In reply to: [MultilingualPress] PHP8 compatibilityMan, you’re lifesaver) Thanks!
Ok. so the temporary decision is not to use fancybox library for now)
Somehow Turnstille doesn’t loads in elements with
display: none;
propertyI write custom modals
So they are hiding with
postition: absoute; left: -100%; opacity: 0; transition: opacity .3s ease;
and appear by changing styles toleft: 0; opacity: 1;
ok. I removed
e.innerHTML.length<=1&&
fromcfturnstile_force_render
function so it looks like this now (sorry don’t know how write code in this textarea)https://monosnap.com/file/EJyVXbxVzu8k3lXyU2ctdC8hsbY2Yj
now it works fine.
you should look at this part, it’s something wrong with it
e.innerHTML.length<=1&&
- This reply was modified 2 years, 1 month ago by Korveld.
It’s working only on my local website setup. doesn’t works on production server
I found problem in the simple-cloudflare-turnstile.php file. When i remove this line of code?
add_action("cfturnstile_after_field", "cfturnstile_force_render", 10, 1);
?all works fine. So problem somewhere in the?cfturnstile_force_render
?function i guessI found the problem in simple-cloudflare-turnstile.php file.
I removed
e.innerHTML.length<=1&&
fromcfturnstile_force_render
function so it looks like this now (sorry don’t know how write code in this textarea)https://monosnap.com/file/EJyVXbxVzu8k3lXyU2ctdC8hsbY2Yj
now it works fine.
you should look at this part, it’s something wrong with it
e.innerHTML.length<=1&&
- This reply was modified 2 years, 1 month ago by Korveld.
Have the same problem with Contact form 7. Any updates?
Thanks for reply!
It would be cool if you could make an error message like it was done in ReCaptcha v2 for Contact Form 7 https://monosnap.com/file/ig7wbYWBQVNqXRWrr2I8VCf0J87MLt
Sorry, forgot to mention that the problem is in CF7 plugin.
Default error message is not showing up also.
As i understand validation is working fine, because i can’t submit form without submiting the captcha. But the error message is not showing up
- This reply was modified 2 years, 1 month ago by Korveld.
The problem is only on multisite. Fix it by desactivated the plugin Contact Form 7 on the network side and activated it for each of my sites independently.
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Plugin doesn’t workOkay, there was an error in my php code. I fixed that now it’s all working fine. Thanks for the help!)
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Plugin doesn’t workHow can i debug it? I tried to deactivate all other plugins, it doesn’t help
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 5.6.1 “This field is required” problemThanks for reply! I’ve found a mistake in my html in select element, now it’s fine)
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 5.6.1 “This field is required” problemhttps://satchel-eu-new.devlab69.com/ua/merchant-account/
The form is in the bottom of the pageI’ve fixed this by editing source code in the file wp-content/plugins/generate-pdf-using-contact-form-7/assets/js/cf7-pdf-generation-public.js
var pdf_download_link_txt_new = pdf_download_link_txt.replace(new RegExp('\\+', 'g'), ' ');
I’ve added new variable where i deleting all “+” signs. Somehow this string saves in cookies with plus signs.