0
Welcome Guest! Login
0 items Join Now

menu item visible only for guest

    • Laurent's Avatar
    • Laurent
    • Hero Rocketeer
    • Posts: 445
    • Thanks: 1

    menu item visible only for guest

    Posted 15 years 2 months ago
    • hello, at this page, on the main menu, i would like that the menu "Créer un compte" was visible only for the guest, how do this ?

      thanks
  • Re: menu item visible only for guest

    Posted 15 years 2 months ago
    • How about hiding the specific menu item with css?

      1) Find the specific class for the menu item using Firebug.

      2) Open your template index.php at:
      <Joomla Root>/templates/<your template name>/index.php

      Before the </head> tag, add below codes:
      <?php $user = &JFactory::getUser(); ?>
      <?php if (!$user->guest) : ?>   
           <style type="text/css">
                #horiz-menu li.item53 {display: none;}
           </style>
      <?php endif; ?> 

      So it will be:
      <?php $user = &JFactory::getUser(); ?>
      <?php if (!$user->guest) : ?>   
           <style type="text/css">
                li.item53 {display: none;}
           </style>
      <?php endif; ?> 
      </head>

      Now, the menu item with class item53 will not appear if the user is not guest.
    • Laurent's Avatar
    • Laurent
    • Hero Rocketeer
    • Posts: 445
    • Thanks: 1

    Re: menu item visible only for guest

    Posted 15 years 2 months ago
    • thanks i try this but it don't work for me
    • Laurent's Avatar
    • Laurent
    • Hero Rocketeer
    • Posts: 445
    • Thanks: 1

    Re: menu item visible only for guest

    Posted 15 years 2 months ago
    • its ok i found
  • Re: menu item visible only for guest

    Posted 15 years 2 months ago
    • laurent wrote:
      its ok i found
      Does this mean the problem is solved?
    • Laurent's Avatar
    • Laurent
    • Hero Rocketeer
    • Posts: 445
    • Thanks: 1

    Re: menu item visible only for guest

    Posted 15 years 2 months ago
    • yes thanks

Time to create page: 0.053 seconds