- This topic has 2 replies, 2 voices, and was last updated 5 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 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 › Show Dropdown Selection in Page Title
Is it possible using PHP to show a dropdown selection in the page title of the results (using Ajax and archive results)?
Here is my link:
http://thomasw13.sg-host.com/truck-inventory
An example would be, if you select Fontana. I can show a page title as “Truck Inventory Fontana” – Truck Inventory would always be there.
Just FYI, I have added this code within my #main container on the archive template. Nothing shows.
global $searchandfilter;
$sf_current_query = $searchandfilter->get(9490)->current_query();
echo $sf_current_query->get_field_string("_sfm_UnitLocation");
The code you would need is:
global $searchandfilter;
$sf_current_query = $searchandfilter->get(9490)->current_query()->get_array();
echo $sf_current_query['_sfm_UnitLocation']['active_terms'][0]['name'];
Look carefully, as only the ‘global’ line is the same.
Note, if you are using Ajax on the page, you may need to make sure that the page title is inside the Ajax Container, otherwise it will not refresh and change.