Ich habe in meinem phpbb plus versucht den Hidehack einzubauen. Der Hide befehl funktioniert auch soweit solange ich Ihn manuel eingebe.
Wie und wo aber integriere ich das Image das meinen Besucher das tippen abnimmt?
Im normalen php ging das im posting_body.tpl. Dort finde ich aber nicht was ich finden soll.
Das ist der Abschnitt mit dem ich meine Probleme habe weil ich nicht weiß wohin damit. Ich benutze den Style "venomrod"!
Code: Alles auswählen
7 - In posting_body.tpl // in the Templates/{Used template}/ directory
-----------------------
This part add a button in the dialog box (newtopic,...).
In the list of "// Helpline messages", add :
h_help = "Hide: [hide]message[/hide] (alt+h)";
Find this line :
bbtags = new Array('[b]','[/b]'...
And add at the end :
'[hide]' and '[/hide]'
You will obtain something like this :
bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','
- ','
- ','
Find
<td><span class="genmed">
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
</span></td>
Add Below : (Don't forget to adapt the "addbbcode" numbers if neccesary ! (exemple: addbbcode18 -> addbbcode20, 20 -> 22, etc)
<td><span class="genmed">
<input type="button" class="button" accesskey="h" name="addbbcode18" value="Hide" style="width: 40px" onClick="bbstyle(18)" onMouseOver="helpline('h')" />
</span></td>[/code]
ich bedanke mich ganz recht herzlich für Eure hilfe.