customize Manage Members page

Mark

Administrator
Staff member
not without creating a plugin or modifying the admin theme.

To see the URL you can hover over the title link and look in your browsers lower left corner.
 
Can you please point me to the location of the admin theme where I can potentially modify it? I would like to take a look to see if I can figure it out.

Otherwise how hard would it be to make a plugin to list the URL along with/next to the title?

Thank you for your help.
 

Mark

Administrator
Staff member
actually URL is already included in a tooltip when you hover over the title.

If you want it always visible, you would need to hack the core file at sources/admin/manage.php since we don't have templates setup for admin secitions.

find this line
Code:
  <td width="100%"><a href="{$url}" onclick="out('{$username}');" title="{$url}" class="vistip">{$title}</a></td>
add the {$url} tag wherever you want it to display.
 
Top