Versione: 1.0
Versione mybb compatibile: 1.6
Autore: zypp0
Screenshot: Nessuno, ma un video:
http://www.youtube.com/watch?v=XEWxybT1VVo
Descrizione: Tagga gli utenti del forum, inviando loro una notifica nell' usercp in cui vengono avvisati che sono stati taggati da USERNAME nel thread THREAD, dove USERNAME è la persona che ha taggato loro e THREAD è dove sono stati taggati.
Download: qui
Demo:
http://beateaters.it/Upload/
Istruzioni:
1. Copiare il plugin
tag.php in inc/plugins/;
2. Copiare
functions_tag.php in inc/;
3. Inserire questo codice:
Citazione:{$new_tag}
in
AdminCP > Template > Header > header_welcomeblock_member , dove si vuole.
4. Sostituire
usercp.php con quello fornito;
5. Sostituire
newthread.php con quello fornito;
6. Sostituire
newreply.php con quello fornito;
7. Aggiungere questa riga:
Citazione:<tr><td class="trow1 smalltext"><a href="usercp.php?action=tag" class="usercp_nav_item usercp_nav_drafts">Tag</a></td></tr>
prima di
</tbody> in
AdminCP > Template > User Control Panel Templates > usercp_nav_misc
9. Creare template andando in
AdminCP > Template e cliccando su User Control Panel Templates > Aggiungi template >
Nome: usercp_tag
Contenuto:
<html>
<head>
<title>{$mybb->settings['bbname']} - Tag</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>Tag</strong></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>Sei stato taggato...</strong></td>
</tr>
{$taggato}
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>