'help' dashobard bar button
Permalink
where can i find the file for the 'help' dashbaord bar button. Its the popup page that has the C5 search.
Or where is the file located for the dahsboard bar so ican remove the button.
thanks
Or where is the file located for the dahsboard bar so ican remove the button.
thanks
You are wanting to totally remove the help button from the toolbar at the top of the page? What version of C5 are you running?
thanks for the quick response.
I have 5.4.0.5. I use to be able to find it in the older versions at tools>support>search.
many thanks
I have 5.4.0.5. I use to be able to find it in the older versions at tools>support>search.
many thanks
In 5.4.0.5 the file is /concrete/tools/page_controls_menu_js.php
The help link is added on line 88. You should just be able to comment it out or remove it. Best practice here would be to copy this file to /tools and then edit it from there, as it would then be used to override /concrete/tools, and you wouldn't be editing the core file itself.
The help link is added on line 88. You should just be able to comment it out or remove it. Best practice here would be to copy this file to /tools and then edit it from there, as it would then be used to override /concrete/tools, and you wouldn't be editing the core file itself.
There is a site Define for where it gets the feed from, stick this in the site.php and change it
define('MENU_HELP_URL', CONCRETE5_ORG_URL . '/tools/help_overlay/');
it opens that tools file at concrete5.org:
http://www.concrete5.org/tools/help_overlay...
define('MENU_HELP_URL', CONCRETE5_ORG_URL . '/tools/help_overlay/');
it opens that tools file at concrete5.org:
http://www.concrete5.org/tools/help_overlay...
jgarcia - for some reason this method doesnt seem to work. i had this done to my other sites but for some reason it doesnt remove the button on the site in question.
Mnkras - i had a go at this method but dont know what i am meant to change it to?
In the end i have modified tools/help.php. This wont cause any underling problems will it?
thank you both for the quick repsonse and time spent helping. much appreciated!!
Mnkras - i had a go at this method but dont know what i am meant to change it to?
In the end i have modified tools/help.php. This wont cause any underling problems will it?
thank you both for the quick repsonse and time spent helping. much appreciated!!
No modifying the tools/help.php file won't cause any problems. Make sure you put that file in the tools/help.php directory instead of the concrete/tools/help.php directory or it will get overridden if you upgrade again. Then you will have to repeat this process.