How can I remove portfolio items from enfold search results?
I have 100 portfolio items linking to an actual post. So having 2 results for each thing is not good, I just need the actual post with all the information.
Thanks.
Hey peterolle,
Here what you can use
https://www.isitwp.com/exclude-a-custom-post-type-from-search/
Best regards,
Basilis
Can you please share something unique for Enfold?
The shared one include a lot of extra things that makes no sense for achieving it in Enfold.
Thanks.
Hi,
Thank you for the update.
You can use this filter to exclude the portfolio post type from the search results.
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
function avf_portfolio_cpt_args_mod($args) {
$args['exclude_from_search'] = true;
return $args;
}
Best regards,
Ismael
Thank you Ismael, that seems to work as expected.
Hi,
I’m glad this was resolved. We will tend to your additional requests.
Best regards,
Jordan Shannon