darrellwilde
Forum Replies Created
-
Ok thanks
Thanks for the reply!
Is there a way to enable it whilst still being able to select multiple options from the drop-down and not just on single?
Forum: Plugins
In reply to: [Contact Form 7] Message send twice using CF7I’m also seeing this happen even with just a basic default form.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@threadi yes I put it back before. If you like I could remove it again so you can test again?
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@threadi even when i have removed this it still doesn’t work.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@kaavyaiyer really? I’ve just tested on chrome safari and edge and all seem to be working for me now.
The only thing I am using for a plug-in to do with search is a live search plugin option.
Nothing else.
I deactivated all plugins and the search still didn’t work for some reason.
- This reply was modified 2 years, 11 months ago by darrellwilde.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@threadi yes i think some of that source code is from plugins, but as long as it works its ok.
One thing i have noticed is that the search function of my site has stopped working im not sure whether this has been a conflict with the new form.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@threadi @kaavyaiyer Well guys that was strange…. I disabled all plugins, activated them one by one and the mysterious extra fields disappeared.
I have no idea why… however now the form works for me on all browsers if you can test to make sure id be grateful.
Thanks
Darrell
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browserI have made a html page just with the javascript and form on and it works.
See: https://www.activetalentagency.com/form_test.htmIt just seems to be something in WordPress which is preventing it on Safari and possibly other browsers.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@kaavyaiyer Are you still getting these errors now i have removed the datepicker issue?
I have no idea where it is getting those extra fields from as they are not embedded on my page.
Unfortunately it still isnt working on Safari for me only chrome on desktop.
- This reply was modified 2 years, 11 months ago by darrellwilde.
Forum: Fixing WordPress
In reply to: Jquery not working with Safari browser@threadi Ok I found the datepicker script and removed it which has resolved the errors in javascript but the form still doesnt work in Safari only Chrome for some reason.
- This reply was modified 2 years, 11 months ago by darrellwilde.
Forum: Developing with WordPress
In reply to: Simple Form using JQuery Plugin@threadi of course! I’ll give the code snippets plug-in a go tomorrow and see how I get on.
It should be pretty straightforward using that plugin I assume.
Thanks for all your help!
Forum: Developing with WordPress
In reply to: Simple Form using JQuery Plugin@threadi ok great, or could I not just add it to my actual theme anyway? Whatever is the easiest method really as I’m not an expert on wordpress.
Forum: Developing with WordPress
In reply to: Simple Form using JQuery Plugin@threadi I don’t have a child theme so would I be better using the code snippets plug-in?
- This reply was modified 2 years, 11 months ago by darrellwilde.
Forum: Developing with WordPress
In reply to: Simple Form using JQuery Plugin@threadi thanks for the reply!
So at this moment in time all I have done is use a raw html element within my page to create the form.
Here is the page: https://www.activetalentagency.com/booking-request-overture/
Using the following code within the element:
<form method="post" action="https://overturehq.com/formapi/webform/submit.json"> <label>Name:</label> <input type="text" name="personName"> <label>Email Address:</label> <input type="text" name="personEmailWork"> <label>Phone Number:</label> <input type="text" name="personPhoneWork"> <label>Event Date:</label> <input type="datetime-local" name="booking1Date"> <label>What would you like to discuss with us?</label> <textarea name="personNote"></textarea> <input onclick="window.location.href = 'https://www.activetalentagency.com/booking-request-confirmation/';" type="submit" value="Send Enquiry"> <input type="hidden" name="key" value="MTI4NzQxNTE1NzI="> </form>