Hyrules
Forum Replies Created
-
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Unexpected end of jsonHere is my fix for this. This will encode the json in base64 before outputing it on the form value :
cf7cf.php on line 309
'_wpcf7cf_options' => ''.json_encode($options),
replace with :
'_wpcf7cf_options' => ''.base64_encode(json_encode($options)),
js/scripts.js on line 20
form_options = JSON.parse(value);
replace with :
form_options = JSON.parse(atob(value));
- This reply was modified 5 years, 10 months ago by Hyrules.
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Unexpected end of jsonI believe the solution lies here : https://stackoverflow.com/a/18443279 .
Forum: Plugins
In reply to: [Contact Form 7] How do I hide reCAPTCHA v3 badge?First thing to check is if the css class is the right one. If you open the developper tools in your browser and select the badge what do you get for the class ? Second make sure your put the line of code in the Style.css in your wordpress theme.
- This reply was modified 5 years, 11 months ago by Hyrules.
Forum: Plugins
In reply to: [Contact Form 7] How do I hide reCAPTCHA v3 badge?At least it worked for me. Did you had the important keyword when you tried it ? I had this working on my site. Maybe the css class is not the same.
Forum: Plugins
In reply to: [Contact Form 7] How do I hide reCAPTCHA v3 badge?Add the following to the css style of your website. It will hide the badge.
.grecaptcha-badge{ visibility: collapse !important; }
Forum: Plugins
In reply to: [Contact Form 7] ReCaptcha V3 not workingI have the same issues here. The recaptcha not working. I’m starting to receive spam through contact forms and the logo is appearing everywhere on my pages.
EDIT : I just saw that I forgot to add the script line in the head of the site. I will add it and see what happens.
EDIT 2: if you want to hide the badge you can add a css rule :
.grecaptcha-badge{ visibility: collapse !important; }
Forum: Plugins
In reply to: [Memphis Documents Library] Text not found in the file listing tableThanks this indeed fixes the issue for me.
Forum: Plugins
In reply to: [Memphis Documents Library] Text not found in the file listing tableHere is the result of the vardump :
string(4) “Name” Text not found. string(9) “Downloads” Text not found. string(7) “Version” Version string(5) “Owner” Text not found.
Forum: Plugins
In reply to: [Memphis Documents Library] Text not found in the file listing tableNope it’s the original and the string from the translation. I never alter a plugin in wordpress for my personnal use it makes the maintenance too complicated.
- This reply was modified 6 years, 1 month ago by Hyrules.
Forum: Plugins
In reply to: [Memphis Documents Library] Text not found in the file listing tableI cleared my cache and even tried another browser. Still the same issue. Here what it looks like :
- This reply was modified 6 years, 1 month ago by Hyrules.
Forum: Plugins
In reply to: [Memphis Documents Library] User deleting other users filesyep my bad. it seems to work now thanks.
Forum: Plugins
In reply to: [Memphis Documents Library] User deleting other users filesI known there was some kind of updates for chrome lately for security i wouln’t be suprised if this was part of it. Just let me know when you have a fix i will test again.
Forum: Plugins
In reply to: [Memphis Documents Library] User deleting other users filesodd this seems to work perfectly with Firefox. I was trying to delete with chrome and the prompt does not show for the deletion. There must be something in my chrome blocking it.
Forum: Plugins
In reply to: [Memphis Documents Library] User deleting other users filesactually already done that and there is no error in the console. There is also no page reload it just go up to the top of the page.
Forum: Plugins
In reply to: [Memphis Documents Library] User deleting other users filesDeleting with batch suppression seems to work but if I try to delete file from the backend when I click on a file all it does is move the window to the top not deleting the file at all.