Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › display CPT next to post title
This topic contains 11 replies, has 2 voices, and was last updated by Ernest Marcinko 2 years, 7 months ago.
- AuthorPosts
- July 27, 2020 at 8:04 am #28698
Hello
Can you advise the if there’s any Advanced Title Field so i can display CPT name next to the Title?
For example:
Post – ABC
Book – ABCJuly 27, 2020 at 1:48 pm #28710Hi,
This knowledge base will help. There is no option, but a small custom code snippet.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
July 27, 2020 at 5:17 pm #28723You cannot access this content.July 28, 2020 at 8:57 am #28728Sorry, there was an error in that code, please use this one:
Best,add_filter( 'asp_results', 'asp_show_the_post_type', 10, 1 ); function asp_show_the_post_type( $results ) { foreach ($results as $k=>&$r) { if ( isset($r->post_type) ) { // Modify the post title $r->title = get_post_type( $r->id ) . ' - ' . $r->title; } } return $results; }
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
July 28, 2020 at 10:10 am #28731You cannot access this content.July 28, 2020 at 11:36 am #28732You are welcome.
This documentation should help!
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 9, 2020 at 8:58 am #28851You cannot access this content.August 10, 2020 at 1:23 pm #28871Hi,
Some product attributes might be custom fields, other can be taxonomy terms. Enabling the search in taxonomy terms feature will help then.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 10, 2020 at 4:12 pm #28891You cannot access this content.August 11, 2020 at 12:47 pm #28904I see a few single character words in the terms, and I think changing this option may help: https://i.imgur.com/aTBmNXK.png
If no change, can you please add temporary back-end and FTP access, so I can check the issue? Thank you!
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
August 19, 2020 at 7:16 am #29044You cannot access this content.August 19, 2020 at 2:28 pm #29063You cannot access this content. Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
- AuthorPosts
You must be logged in to reply to this topic.