ricksterzh
Forum Replies Created
-
Hi,
This “hang” I checked out with q-translate-x. This is working now.
But the data is NOT sending it to Google Sheet. I checked all the configuration but can not find a misconfiguration so far.
Is it possible to send the data with Contact Form 7 Multi-Step Forms (Premium) with your plugin?
This plugin is collecting all the data to the last “part”form and sending it form there. I did the same with your plugin and filled out the creditentials at the last form. But this is not working.
You can find my multistep form here
Cheers Rick
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Webhook with MultistepformI see the function.php would send the code from the first step.
So I will need a code to execute this code at the last step of the form.
Any suggestions?
Cheers!
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Read values from session storageThe data is appearing in the WordPress File Upload Pro Plugin.
Its working!Changed code to:
<script type="text/javascript"> function wfu_getCookie(name) { var value = "; " + document.cookie; var parts = value.split("; " + name + "="); if (parts.length == 2) return parts.pop().split(";").shift(); } wfu_addEventHandler(window, "load", wfu_preload_cf7msm_data); function wfu_preload_cf7msm_data() { var cookie = sessionStorage.getItem("cf7msm"); var data = JSON.parse(unescape(cookie)); if (data) { document.getElementById("userdata_1_field_1").value = data.Vorname; document.getElementById("userdata_1_field_2").value = data.Nachname; } } </script>Thank you!
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Read values from session storagesorry wrong code:
<script type=”text/javascript”>
function wfu_getCookie(name) {
var value = “; ” + document.cookie;
var parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}
wfu_addEventHandler(window, “load”, wfu_preload_cf7msm_data);
function wfu_preload_cf7msm_data() {
var cookie = wfu_getCookie(“cf7msm_posted_data”);
var data = JSON.parse(unescape(cookie));
if (data) {
document.getElementById(“userdata_1_field_1”).value = data.Vorname;
document.getElementById(“userdata_1_field_2”).value = data.Nachname;
}
}
</script>