Remove intelligent search from the top overlay menu

Permalink
Hi, Is there a way to hide the top Intelligent search box ? I am looking into the dashboard.php file but cannot find out which lines to remove, or better if that can be done from the admin panel ?
Thank you

 
Ekko replied on at Permalink Reply
Ekko
If you just want to remove client access to help and marketplace but keep it intact so they can find site files and pages with ease than Intelligent search can be modified in config/site.php. This guide on white labelling covers ithttp://www.concrete5.org/documentation/how-tos/developers/white-lab...


So you want to modify add this to /public_html/config/site.php

define('ENABLE_INTELLIGENT_SEARCH_HELP', false);
define('ENABLE_INTELLIGENT_SEARCH_MARKETPLACE', false);

screenshot attached for reference

If you need to remove it completely the best way would be through css and adding visibilty hidden
ptityop replied on at Permalink Best Answer Reply
Thanks for the answer ! In fact I removed it directly from the header.php file in the concrete theme !