Forums › Forums › Search & Filter Pro › How to show the currently selected title only
Tagged: format category title
- This topic has 21 replies, 2 voices, and was last updated 7 years, 6 months ago by Anonymous.
-
Anonymous(Private) May 11, 2017 at 11:15 am #108194
I have managed to get my AJAX form to show the currently selected category title, the only issue is the string also contains “categories:” and “category:” before the title but I only want the actual category name, is there a way to just get the category title without the extraneous words before it please?
Thanks
Anonymous(Private) May 11, 2017 at 7:24 pm #108331<?php global $searchandfilter; $sf_current_query = $searchandfilter->get(504)->current_query(); echo $sf_current_query->get_field_string("_sft_category"); ?>
The above code gets the current category, but how to do it without the extraneous word(s) before it?
Thanks
Anonymous(Private) May 12, 2017 at 11:00 am #108431Okay, I have used the following code to display the array:
<?php echo '<pre>',print_r($sf_current_query),'</pre>';?>
This displays the following:
Search_Filter_Active_Query Object ( [sfid] => 504 [is_set:Search_Filter_Active_Query:private] => 1 [query_array:Search_Filter_Active_Query:private] => Array ( ) [form_fields:Search_Filter_Active_Query:private] => Array ( [_sft_category] => Array ( [type] => category [input_type] => radio [heading] => Categories [accessibility_label] => [all_items_label] => All Articles [show_count] => 1 [hide_empty] => 1 [hierarchical] => 0 [include_children] => 1 [drill_down] => 0 [sync_include_exclude] => 1 [combo_box] => 0 [operator] => or [order_by] => default [order_dir] => asc [exclude_ids] => [taxonomy_name] => category ) )
(plus lots more)
So what I want is the taxonomy name field but I have no idea how to access this field and echo into my template? Any help here would be much appreciated, I understand this may be out of the scope of support but if it’s something simple that you might know you could really help me out a lot.
Thanks
-
AuthorPosts