How to exclude them from the search?
Many greetings
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
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