• Resolved editoor

    (@editoor)


    can i exclude the logo’s from the search results (wordpress search)? i use the plugin “exclude from search results” but although i used it on the logo’s, they are still shown.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Bayejid Ahmed

    (@bayejid00)

    Hi @editoor,

    Thanks for your query. The logos of the Logo Carousel Pro are excluded from the WordPress default search by default. The logos shouldn’t appear in the search result. But it’s unusual to hear that your logos are showing on your search results.

    Can you please share the page link where you have used the Logo carousel and how do you search it? We need to review the issue to provide a solution.

    Your co-operation would be appreciated.

    Thread Starter editoor

    (@editoor)

    i’m not using the Pro, i use the feee version. do i need the free version for this?

    Plugin Support Bayejid Ahmed

    (@bayejid00)

    Sorry for my mistake, I type Logo Carousel Pro.

    Modified reply: The logos of the Logo Carousel Free plugin are excluded from the WordPress default search by default. The logos shouldn’t appear in the search result. But it’s unusual to hear that your logos are showing on your search results.

    Can you please share the page link where you have used the Logo carousel and how do you search it? We need to review the issue to provide a solution.

    Your co-operation would be appreciated.

    Thread Starter editoor

    (@editoor)

    sure! the url is https://diertotaalarjo.nl
    the search bar is in the right of the top menu.
    the logo carousel is on almost every page.

    Plugin Support Bayejid Ahmed

    (@bayejid00)

    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.

    Thread Starter editoor

    (@editoor)

    thank you!

    Plugin Support Bayejid Ahmed

    (@bayejid00)

    Hi @editoor,

    Thanks for your appreciation. If you are happy with the plugin and support, please share your experience in the plugin’s review section.

    Your each and every word will motivate us to keep doing the hard work and provide the best support as promised.

    Have a nice day!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘search results’ is closed to new replies.