Hi @editoor,
Thanks for sharing the page link. We have visited your site and found the issue you described in your previous query. We have checked the free version again in our local environment and we also noticed the issue exists in the free version. Thanks for pointing out this. We have noted this on our plugin development roadmap. Hopefully, it will be fixed in the future version of the plugin.
For now, to exclude the logos from the search, use the following code in your current theme’s function.php file like the screenshot.
add_filter( 'wpl_lc_register_logo_post_type', 'wpl_lc_register_logo_post_type_modified' );
if(! function_exists('wpl_lc_register_logo_post_type_modified')){
function wpl_lc_register_logo_post_type_modified($args ){
unset($args['exclude_from_search']);
$args['exclude_from_search'] = true;
return $args;
}
}
Please let us know if it works for you or not.
Thank you.