log out

hi

i want to delete in the topbar the text "log out". i want only use the icon. but if i delete the text it shows me tokens. how could i delete the text without showing me tokens?

  • Which text in which file you wanted to delete? Tell more info what exactly did you delete...

  • if i change this

    <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>

    to this

    <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'is_action' => TRUE)); ?>

    it shows me the logout link by the logout icon

  • i did it with a space

    <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>

    to

    <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo(' '), 'is_action' => TRUE)); ?>