Home › Forums › Quform WordPress › Get value by url
- This topic has 4 replies, 2 voices, and was last updated 10 years, 2 months ago by
overtime.
- AuthorPosts
- June 22, 2015 at 8:54 am #15643
overtime
ParticipantHi,
I need to get a value by URL on my dropdown list for the four forms (Contacter cette concession, RDV Atelier…) of this page :
http://dev.paul-kroely-automobiles.fr/concessions-mercedes/
I’ve added the param “concess” in the optional menu of my four forms ant try this function in my function.php file :
function my_car_concess_value($value)
{
$posturl = get_permalink();switch ($posturl) {
case ‘http://dev.paul-kroely-automobiles.fr/concessions-mercedes/#-1’:
$value = ‘Mercedes Epinal’;
break;
case ‘http://dev.paul-kroely-automobiles.fr/concessions-mercedes/#-2’:
$value = ‘Mercedes Forbach’;
break;
case ‘http://dev.paul-kroely-automobiles.fr/concessions-mercedes/#-3’:
$value = ‘Mercedes Haguenau’;
break;}
return $value;
}
add_filter(‘iphorm_element_value_concess’, ‘my_car_concess_value’);But nothing…
Any ideas?
June 22, 2015 at 1:14 pm #15652Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
June 22, 2015 at 2:20 pm #15660overtime
ParticipantWow thanks a lot four your quickly answer!!!
It’s ok, your code work great!But i would like to ask you if there is a solution to consider the url for the other manufacturers.
Because the four forms are the same for all manufacturers (Audi, Peugeot, Mercedes…)Otherwise I would have to create 8×4 new forms… And i’ve ever created 40+ for this website.
June 22, 2015 at 2:41 pm #15662Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
June 22, 2015 at 3:18 pm #15663overtime
ParticipantWorks perfectly!!
Thanks a lot for your great support (the best of all plugins i’ve bought!) - AuthorPosts
- You must be logged in to reply to this topic.