antonio1475
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact form stuck on submitPlease open Chrome console (F12 > Console) and check what error you get when you click Send (see screenshot below).
Click send, screenshot of the console, and please upload.
Some of us are getting 409 Conflict codes.
I just sent a form in your page and works fine (on my PC).By the way, you have an issue with Maps API keys: https://photos.app.goo.gl/xVAChKSAqtKE4QiZ8
Forum: Plugins
In reply to: [Contact Form 7] How to disable contact form reset after submitMe too! I haven’t found a way…
Here is how. It’s obviously a workarounf, so not bullet-proof
Requires Jquery. I use a button for “Update names in form and continue”, which onClick() triggers this funtion:
function replacenames(){ //Get the names from the CF7 Text field (ID in text field required) var N1 = document.getElementById("Nombre1").value; var N2 = document.getElementById("Nombre2").value; //Replace the normal spans with class 'C1' for a word plus the user input from Name1 field $('.C1').html('Cónyuge 1 (' + N1 + ') '); $('.C2').html('Cónyuge 2 (' + N2 + ') '); //Now, also replace the labels from CF7 radio labels (using use_label_element !) . In my case, I only have 2 options so I can use 'first' and 'last' classes that either CF7 or my theme uses, but I guess some other way could be found for more than 2 choices or other themes. $('.ConyugesRadio > span.first > label > span').html('Cónyuge 1 (' + N1 + ') '); $('.ConyugesRadio > span.last > label > span').html('Cónyuge 2 (' + N2 + ') '); }Thanks Jules. I did it with Javascript. I can share here if you want for future reference, your call.
Regards
- This reply was modified 7 years, 5 months ago by antonio1475.
Makes sense.
Looking forward to Pro!Thank you, and great plugin! 🙂
Forum: Themes and Templates
In reply to: [Baskerville] Audio Player Needs to be Class Not IDHi!
Thank you so much for this. I edited the /baskervile/js/global.js to edit the codeThank you 🙂