Hi,
please i have this problem.
I have some products and i need create Question form, but is possible to create some hidden field or something, what pre-filled field on the basis of refferring page? Perfect was title?
Thanks.
please i have this problem.
I have some products and i need create Question form, but is possible to create some hidden field or something, what pre-filled field on the basis of refferring page? Perfect was title?
Thanks.
Hi Marek ,
Which version of ChronoForms are you using? You can find the version from Site Admin | Extensions | Install/Uninstall | Components in Joomla! 1.5 or Site Admin | Extensions | Extension Manager | Manage in Joomla! 1.6/1.7/2.5.
Bob
Which version of ChronoForms are you using? You can find the version from Site Admin | Extensions | Install/Uninstall | Components in Joomla! 1.5 or Site Admin | Extensions | Extension Manager | Manage in Joomla! 1.6/1.7/2.5.
Bob
Hi Marek,
If you are using the ChronoForms plug-in to embed the form in articles then add a Hidden input with the name title and drag a Custom Code element into the Preview box. Open the element, check the 'Pure Code' box and add this code
This will put the current page title in your form data.
Bob
If you are using the ChronoForms plug-in to embed the form in articles then add a Hidden input with the name title and drag a Custom Code element into the Preview box. Open the element, check the 'Pure Code' box and add this code
<?php
$doc =& JFactory::getDocument();
?>
<input type='hidden' name='title' id='title' value='<?php echo $doc->getTitle(); ?>' />This will put the current page title in your form data.
Bob
This topic is locked and no more replies can be posted.
