VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: hazael on October 10, 2019, 11:50:33 AM

Title: 2 different ask question forms on one product page
Post by: hazael on October 10, 2019, 11:50:33 AM
How to make two different form fields on the product page? I want a separate special form depending on the product name displayed.

for example, the default link
/index.php?option=com_virtuemart&view=productdetails&tmpl=component&task=askquestion
link to a separate form
/index.php?option=com_virtuemart&view=productdetails&tmpl=component&task=askquestion2
Title: Re: 2 different ask question forms on one product page
Post by: hazael on October 10, 2019, 13:04:58 PM
I solved it by doing 2 forms in one place depending on itemid

if (JRequest::getVar('Itemid') == '666'){
   FORM1
}else{
   FORM2
}