Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Show Dropdown Selection in Page Title

Viewing 3 posts - 1 through 3 (of 3 total)
  • Tom Willcox
    #253137

    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.

    Tom Willcox
    #253140

    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");
    Trevor Moderator
    #253147

    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.

Viewing 3 posts - 1 through 3 (of 3 total)

The forum ‘Search & Filter Pro’ is closed to new topics and replies.