change theme only for loged in users? change theme only for loged in users?
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

change theme only for loged in users?

Started by railgun, July 17, 2016, 11:55:47 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

railgun

hello i want to delte the complet normal header from copermine to get a custom menu bar

for this i need to delte at the template theme
    <div id="cpg_header_block_outer">
        <div class="cpg_header_block_inner">
            <div id="main_menu">
                    {SYS_MENU}
                    {SUB_MENU}
                    {ADMIN_MENU}
            </div><!-- Begin IE7 support --><img src="images/spacer.gif" class="menuheight" alt="" /><!-- End IE7 support -->
            <div class="clearer"></div>
            {MESSAGE_BLOCK}
        </div>


but if i do this this change will be also happen for all loged in users, and then its triki to navigate though the options,
is there a way to display it like the admin_menu ? so that's only be visible if i loged in?

ΑndrĂ©

Copy the function pageheader from themes/sample/theme.php to your theme's theme.php file, if it doesn't already exist. Then, find
        '{SYS_MENU}' => theme_main_menu('sys_menu'),
        '{SUB_MENU}' => theme_main_menu('sub_menu'),

and replace with
        '{SYS_MENU}' => USER_ID ? theme_main_menu('sys_menu') : '',
        '{SUB_MENU}' => USER_ID ? theme_main_menu('sub_menu') : '',

railgun

thanks again andree, and have a nice day :)
work perfectly

FrA1l3

sorry for the late update, but I was looking for something like that and it works perfectly in version 1.6.03  ;) :)