Hi,
I try to include a contact form (quote) inside my product page because I don't want a step with a button but directly my form on the product page.
I proceed, in my template override like this to include contact.php overrided to:
$this->setLayout('contact');
echo $this->loadTemplate();
But I got that error
Uncaught ReferenceError: checkFields is not defined
at HTMLButtonElement.onclick (circuit-voyage-test:734)
The function contact() from ProductViewProduct doesn't seems to be loaded and I can't load it with $this->contact() (all $this data are erased).
Can you help me integrate the contact form inside my product page please. Thank You.