Advanced search  

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

Pages: [1]   Go Down

Author Topic: change theme only for loged in users?  (Read 9253 times)

0 Members and 1 Guest are viewing this topic.

railgun

  • Coppermine newbie
  • Offline Offline
  • Posts: 8
change theme only for loged in users?
« 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?
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: change theme only for loged in users?
« Reply #1 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') : '',
Logged

railgun

  • Coppermine newbie
  • Offline Offline
  • Posts: 8
Re: change theme only for loged in users?
« Reply #2 on: July 18, 2016, 08:27:38 pm »

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

FrA1l3

  • Translator
  • Coppermine regular visitor
  • **
  • Country: es
  • Offline Offline
  • Posts: 78
    • ACMSB
Re: change theme only for loged in users?
« Reply #3 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  ;) :)
Logged
Pages: [1]   Go Up
 

Page created in 0.03 seconds with 20 queries.