Home › Forums › Quform WordPress › Pass name, and e-mail address from one page to another (Multipage)
- This topic has 4 replies, 3 voices, and was last updated 6 years, 5 months ago by Ally.
- AuthorPosts
- May 29, 2018 at 3:27 am #25834BobertParticipant
I have a multipage form, It’s 4 pages.
The name, and e-mail address are collected on the first page.
I want them also displayed in the “name” and “e-mail” input fields on page 4.
How do I do this?
May 29, 2018 at 3:49 am #25835GOMLPParticipantI’m curious to learn how to do the same thing, but I want to pass my gathered field information into an HTML text field for personalization.
May 31, 2018 at 2:16 pm #25888AllySupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
June 1, 2018 at 4:12 am #25916BobertParticipantWorks perfectly!
One more question!
I’m using this to use google maps to the form.
However, I need to add it to TWO text fields. How would I go about doing this?
add_action(‘wp_enqueue_scripts’, function () {
$apiKey = ‘keyhere’;wp_enqueue_script(‘google-maps’, “https://maps.googleapis.com/maps/api/js?key={$apiKey}&libraries=places&callback=initAutocomplete”, array(), false, true);
ob_start();
?>
window.initAutocomplete = function () {
new google.maps.places.Autocomplete(document.querySelector(‘.quform-field-2_90’), { types: [‘geocode’] });
};
<?phpwp_add_inline_script(‘google-maps’, ob_get_clean(), ‘before’);
});June 5, 2018 at 5:52 am #25945AllySupport StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- AuthorPosts
- You must be logged in to reply to this topic.