Topic: Easy delete members or edit profile
Most of you check manually in Control Pannel new profiles and you need often to delete them easy from one click.
In includes/templates/members_edit.tpl
Find this :
<td class="gridTabs">
<a href="#" onclick="row_switch('row_account');return false;">{lang:"members","edit_member"}</a> |
<a href="#" onclick="row_switch('row_options');return false;">{lang:"members","options"}</a> |
<a href="#" onclick="row_switch('row_notifications');return false;">{lang:"members","notifications"}</a> |
<a href="#" onclick="row_switch('row_privacy');return false;">{lang:"members","privacy"}</a>Add this just after:
<a class="grid" href="#" onclick="javascript:confirmLink('{lang:"members","delete?"}', '{top.virtual_cp_path}index.php?m=members&p=delete&id={member_id}&page={top.page}&s={ifelse:active,1,0,1}&sort={top.sort}&order={top.order}&group={top.group}&results={top.results}&status={top.status}')" title="{lang:"members","delete"}">
<img src="{top.virtual_path}includes/templates/media/rainbow/actions/delete.gif" alt="{lang:"members","delete"}" border="0" /></a>Like this you get a bouton in the top while you edit his profile and where from you can quiqly delete member, whe you see some stupid profile.
2. If you want may Edit or Delete profile with one click while you just reading his public profile, no need to go in Control pannel, then open :
templates/your-template/member_profile.tpl
find this:
<!-- INCLUDE member_sections_name.tpl -->
<dl class="datainfo">
<!-- INCLUDE member_sections_card.tpl -->
</dl>After, add this
<!-- IF session.group_id == "1" -->
<a class="grid" href="{top.virtual_cp_path}index.php?m=members&p=edit&id={member_id}" title="Edit">
<img src="{top.virtual_path}includes/templates/media/{top.cp_theme}/actions/edit.gif" alt="Edit profile" border="0" /></a>
<a class="grid" href="#" onclick="javascript:confirmLink('Delete profile ?', '{top.virtual_cp_path}index.php?m=members&p=delete&id={member_id}&page={top.page}&s={ifelse:active,1,0,1}&sort={top.sort}&order={top.order}&group={top.group}&results={top.results}&status={top.status}')" title="Delete">
<img src="{top.virtual_path}includes/templates/media/{top.cp_theme}/actions/delete.gif" alt="Delete Profile" border="0" /></a>
<!-- ENDIF -->You like it ? Enjoy it.
Last edited by matrimo (2009-06-10 17:58:48)