Home › Forums › Quform WordPress › Passing url values between form gives 404 page not found
- This topic has 2 replies, 2 voices, and was last updated 11 years, 9 months ago by
drewman1970.
- AuthorPosts
- February 13, 2014 at 10:35 am #8714
drewman1970
ParticipantI have successfully implemented two forms passing values in the url up until the second form page will not display because the permalink structure prevents anything other than the page name from displaying.
How can we use this great feature if we cannot pass url data in wordpress.
Is there another step we need to do in the functions.php file?
I was trying this:
add_filter('query_vars', 'parameter_queryvars' );function parameter_queryvars( $qvars )
{
$qvars[] = 'name';
$qvars[] = 'email';
$qvars[] = 'phone';
$qvars[] = 'income';
return $qvars;
}Am I on the right track? Can you provide a more detailed explanation of what we need to do here?
Thanks,
February 17, 2014 at 10:18 am #8745Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
February 18, 2014 at 7:04 pm #8784drewman1970
ParticipantYes, I ended up re-naming all the values ( adding baron_)
$data = array(
'baron_name' => $form->getValue('iphorm_1_1'),
'baron_email' => $form->getValue('iphorm_1_3'),
'baron_phone' => $form->getValue('iphorm_1_2'),
'baron_income' => $form->getValue('iphorm_1_4'),
);I did not have to use any other filter code – everything worked out great.
Thanks
You can close this issue…
- AuthorPosts
- You must be logged in to reply to this topic.
