MyBB Community Forums
Remove admin link from welcome page (MyBB 1.8.4) - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: Remove admin link from welcome page (MyBB 1.8.4) (/thread-170558.html)



Remove admin link from welcome page (MyBB 1.8.4) - bitcoin - 2015-05-11

I (indirectly) asked this a few times, but didn't get an answer yet...

So this time: my serious effort on how to remove the Admin CP link for added security.

I found this: http://crypto.country/forum/admin/index.php?module=style-templates&action=edit_template&title=header_welcomeblock_member_admin&sid=1&expand=27

I thought I could change this for default templates:
<li><a href="{$mybb->settings['bburl']}/{$admin_dir}/index.php" class="admincp">{$lang->welcome_admin}</a></li>
to
// <li><a href="{$mybb->settings['bburl']}/{$admin_dir}/index.php" class="admincp">{$lang->welcome_admin}</a></li>

(I also tried commenting it out with #).

So... I think I'm close but do I really have to remove all code there? I'd rather comment it out... Or am I looking at the wrong place, again? ;p

Peace!

Devvie
twitter.com/devnullius


RE: Remove admin link from welcome page (MyBB 1.8.4) - .m. - 2015-05-11

~/inc/config.php file has related setting (php files should be edited with a editor like notepad++)
$config['hide_admin_links'] = 0;

its value can be changed to 1 to hide the admin panel link
$config['hide_admin_links'] = 1;



RE: Remove admin link from welcome page (MyBB 1.8.4) - bitcoin - 2015-05-11

LOL - that was easy! I'm surprised I did not find anything with Google ;p

Peace!

Devvie