Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1108436

    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.

    #1108647

    Hey peterolle,

    Here what you can use
    https://www.isitwp.com/exclude-a-custom-post-type-from-search/

    Best regards,
    Basilis

    #1109220

    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.

    #1109835

    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

    #1109837

    Thank you Ismael, that seems to work as expected.

    #1110020

    Hi,

    I’m glad this was resolved. We will tend to your additional requests.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove portfolio items from enfold search results’ is closed to new replies.