- This topic has 1 reply, 2 voices, and was last updated 7 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › sfid results.php
You can either make a results.php file per form. So, if a form is ID # 1234 then you name the results.php for it 1234.php.
Or you can use PHP, like this (I think):
<?php
global $searchandfilter;
if ( $searchandfilter->active_sfid() == 1234) {
// do this
} else {
// do that
}
?>