Last updated August 4, 2009. Created by danielb on July 25, 2009.
Log in to edit this page.
Here is some supplementary documentation for Finder Wizard.
Display a 'response' after the form is finished
Finder Wizard 6.x-2.x
To carry the responses over to the node page (on auto redirect) you must put something like this in your node template:
<?php
if (module_exists('finder_wizard')) {
finder_wizard_inc('form');
print finder_wizard_form_responses();
}
?>Finder Wizard 6.x-3.x
To carry the responses over to an automatically redirected page - use this PHP code in a place such as a template or theme:
<?php
print theme('finder_wizard_header');
?>