Hi, i've a request.
I'm using joomla+virtuemart on a travel site.
In Product details i've included a chronoforms form, with
The form is in a html custom module, but i think was the only solution to render it where i want on the product detail page.
There is a field called "Struttura/Alloggio" (in italian) and it means the name of the hotel or residence etc.
The name is a variable in the page (php file where i render the module) called "this->product->product_name".
I want to pass this variable to an hidden field, so the user have not to write the name of the hotel everytime.
How can i do this?
Thanks.
I'm using joomla+virtuemart on a travel site.
In Product details i've included a chronoforms form, with
$module = JModuleHelper::getModule('mod_custom','Richiestadisponibilita');
$nome_prodotto=this->product->product_name;
echo JModuleHelper::renderModule($module);
The form is in a html custom module, but i think was the only solution to render it where i want on the product detail page.
There is a field called "Struttura/Alloggio" (in italian) and it means the name of the hotel or residence etc.
The name is a variable in the page (php file where i render the module) called "this->product->product_name".
I want to pass this variable to an hidden field, so the user have not to write the name of the hotel everytime.
How can i do this?
Thanks.