wavygravy
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Script not working since upgrade to 2.2.4Thanks – I didn’t realise you were talking about the URL value, I thought you were referring to the ‘Pass specific fields…’ option. It’s working now.
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Script not working since upgrade to 2.2.4But I need to use a different name in the query string than the form field name e.g ?formfield is ‘lastname’, but query string needs to be ‘surname’. Formfield is named per the requirement of the linked CRM system, query string named per requirement for calendly. (I cannot make the form field name and the query string name the same on this occasion).
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Script not working since upgrade to 2.2.4this is the script I was running ….
var n1 = jQuery(‘#’ + event.detail.unitTag).find(‘input[name=”FirstName”]’).val();
var n2 = jQuery(‘#’ + event.detail.unitTag).find(‘input[name=”LastName”]’).val();
var n3 = jQuery(‘#’ + event.detail.unitTag).find(‘input[name=”Email”]’).val();if ( form.use_external_url && form.external_url ) {
form.external_url = form.external_url + “?first_name=” + n1 + “&last_name=” + n2 + “&email=” + n3;
}
else if ( form.thankyou_page_url ) {
form.thankyou_page_url = form.thankyou_page_url + “?first_name=” + n1 + “&last_name=” + n2 + “&email=” + n3;
}Forum: Themes and Templates
In reply to: Jetpack forcing mobile theme on desktopConfirmed this is still an issue with the latest version of WP & Jetpack.
I also had to switch to display excerpts rather than the full post since most of my posts commence with the featured image and the featured image is included when your browsing categories (hence they appear twice)
(Would be nice to have the option to switch this off).Other threads suggest this is a caching problem and clearing the cache on WP Super Cache does appear to resolve the problem, but its a recurring issue, so it’s not really a workaround – just a temporary fix.