custom search results and suggestions

Posted in: Newspaper
Post count: 33

Hi,
this is my site URL (https://placebrandobserver.com/) in this search is activated…
when search “yearbook” it show the custom post in suggestion.. how can i remove it? i need only show page and post only.
there is a popup in home page; the popup created as page. that also show in latest post why?

Post count: 35449

Hello,
If you want to filter the search, then you’ll need to filter the results displayed in live search and in search page. By default this will display all results or only the post type set (it can be set only one post type) – https://i.imgur.com/GSvxi9D.png what can be done is to use a custom code in a functions.php (it can be set in a child theme) – https://forum.tagdiv.com/the-child-theme-support-tutorial/
function wpshock_search_filter( $query ) {
if ( $query->is_search ) {
$query->set( 'post_type', array('post','page') );
}
return $query;
}
add_filter('pre_get_posts','wpshock_search_filter');

Now on search page results you need to edit with tagDiv Composer and set on the posts loop the post types you want to filter – https://i.imgur.com/iLuFint.png
Thank you!

Post count: 33

when I search a page the output showing https://workdrive.zohoexternal.com/file/66pdtddb9f217dac1400e80a6ecc60e4eee54
can you please check

Post count: 35449

Hi,
I understand, that is related to the fact that there should be some results but are not making part from the custom post type for results, maybe you can set the default search – https://i.imgur.com/VtTMKVA.png and this should resolve the results. I think the problem is related to cloud template, this is a custom post type too.
Thank you for your understanding!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.