forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: railgun on July 17, 2016, 11:55:47 am

Title: change theme only for loged in users?
Post by: railgun on July 17, 2016, 11:55:47 am
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
Code: [Select]
    <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?
Title: Re: change theme only for loged in users?
Post by: Αndré on July 18, 2016, 12:04:41 pm
Copy the function pageheader from themes/sample/theme.php to your theme's theme.php file, if it doesn't already exist. Then, find
Code: [Select]
        '{SYS_MENU}' => theme_main_menu('sys_menu'),
        '{SUB_MENU}' => theme_main_menu('sub_menu'),
and replace with
Code: [Select]
        '{SYS_MENU}' => USER_ID ? theme_main_menu('sys_menu') : '',
        '{SUB_MENU}' => USER_ID ? theme_main_menu('sub_menu') : '',
Title: Re: change theme only for loged in users?
Post by: railgun on July 18, 2016, 08:27:38 pm
thanks again andree, and have a nice day :)
work perfectly
Title: Re: change theme only for loged in users?
Post by: FrA1l3 on November 02, 2017, 05:55:26 pm
sorry for the late update, but I was looking for something like that and it works perfectly in version 1.6.03  ;) :)