Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1347136

    How to exclude them from the search?

    Many greetings

    #1347150

    Hi Winter,

    I’m seeing the same thing on my end unfortunately. I’ll notify our developers about this, we’ll report back once we have a fix for it.

    Best regards,
    Rikard

    #1347404

    Hey!

    A fix is going to be included in the next patch, temporarily you can use this filter in the functions.php file to exclude the custom elements from the search results.

    add_filter("avf_custom_elements_cpt_args", function($args) {
        $args["exclude_from_search"] = true;
        return $args;
    }, 10, 1);
    

    Thank you for your patience.

    Cheers!
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.