WorksIQ
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form action – change or add additional?Try something like this in your additional settings:
on_sent_ok: “location = ‘http://www.yourdomain.com/yourCRMpage/?name=’+$(‘#name’).val()+’&company=’+$(‘#company’).val();”
Where you have something like this in your contact form (note the id):
[text name id:name]
[text company id:company]When the user completes the form the page will redirect to http://www.yourdomain.com/yourCRMpage passing name and company as parameters in the query string.
Does that help?
Alternatively if your CRM has inbound email processing then why not just fire the email straight into the system and have the CRM process the email instead? That will save having to make changes to your website.
Forum: Plugins
In reply to: [Collapse-O-Matic] After updating WP, get Javascript error in collapse.min.jsYep, that was it. I just tried a newer version of jQuery in theme-scripts.php and it started working.
Forum: Plugins
In reply to: [Collapse-O-Matic] After updating WP, get Javascript error in collapse.min.jsHi,
I’m just testing it on http://www.worksiq.com/web-based-crm-software/ and had the same error.
I saw some notes in the changelog:
1.4.9
Replaced on() event handler back to click due to the WordPress world not quite ready for on(). People are still using jQuery 1.6.4 – can you believe that?!
1.4.8
Click events now use jQuery’s on() event handler for content that arrived dynamically via AJAX NOTE: plugin now requires jQuery version 1.7 or newerOur site uses jQuery 1.6.4 so maybe that is the problem?
Forum: Plugins
In reply to: [Contact Form 7] Google Conversion Tracking CodeI just trying this myself on http://www.worksiq.com/contact-us/
I think one solution is to create a thank you page in WordPress e.g. http://www.yourdomain.com/thank-you/ and paste the Google Adwords conversion snippet into that page.
Next have Contact Form 7 redirect to that page after your form has been submitted. You can do this by editing the form and pasting the following into the Additional Settings box:
on_sent_ok: “location = ‘http://www.yourdomain.com/thank-you/’;”
I hope that helps.