Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Add prefix before group name › Reply To: Add prefix before group name
January 21, 2021 at 1:46 pm
#31244
Keymaster
Hi,
Post type is only possible via custom code, via the asp_results filter. Here is an example usage, where it is printed into the title. The same is doable to the content field as well, just change line 6 to:
$r->content = get_post_type( $r->id ) . ' - ' . $r->content;
You can do that category thing by manually ordering them: https://i.imgur.com/1WdfBYt.png
I’m afraid there is no other way.