Karl Member Apr 3, 2011 #1 How can I go about getting the members URL in the approve new members area to open in a new window so that can check the submitted site without having the link take me out of the admin panel as it works at the moment.
How can I go about getting the members URL in the approve new members area to open in a new window so that can check the submitted site without having the link take me out of the admin panel as it works at the moment.
Basti Administrator Staff member Apr 3, 2011 #2 in sources/admin/approve.php change this PHP: <a href="{$url}" onclick="out('{$username}');">{$title}</a> to this PHP: <a href="{$url}" onclick="out('{$username}');" target="_blank">{$title}</a> Or simply open a new tab by clicking the mousewheel or right click -> new tab on the link.
in sources/admin/approve.php change this PHP: <a href="{$url}" onclick="out('{$username}');">{$title}</a> to this PHP: <a href="{$url}" onclick="out('{$username}');" target="_blank">{$title}</a> Or simply open a new tab by clicking the mousewheel or right click -> new tab on the link.