MyBB.de Forum
DVZ Shoutbox - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: DVZ Shoutbox (/thread-30347.html)

Seiten: Seiten: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26


RE: DVZ Shoutbox - KaSo - 07.11.2014

Auf der index Seite gibt es dafür eine Variable. Diese Variable nach oben setzen -> Shoutbox oben.


RE: DVZ Shoutbox - Heisenberg - 07.11.2014

Danke dir :*


RE: DVZ Shoutbox - MyBB.de Bot - 30.11.2014

Eine neue Version wurde veröffentlicht: DVZ Shoutbox 2.1.2


RE: DVZ Shoutbox - holz - 23.12.2014

In einer Portalbox wäre mir das auch Lieber, gibt es da eine Möglichkeit?

Mit einfach nur {$dvz_shoutbox}  in einer Box klappt das nur leider nicht.


RE: DVZ Shoutbox - Jockl - 23.12.2014

http://community.mybb.com/thread-156080-post-1098807.html#pid1098807


RE: DVZ Shoutbox - holz - 23.12.2014

(23.12.2014, 13:13)Jockl schrieb: http://community.mybb.com/thread-156080-post-1098807.html#pid1098807

Hmm also der add Hook:

Code:
$plugins->add_hook('global_end', ['dvz_shoutbox', 'global_end']);
ist in meiner inc/plugins/dvz_shoutbox.php enthalten muss ich die Zeile jetzt auch in die (Pro)Portal.php packen?
Gut das kann ich mal versuchen. Oder alternativ ne leere Box machen und im Portal Template suchen und dort einbauen.
(Edit: Beides funzt nicht schade)

Ich frag mal anders wie stelle ich die Variable {$dvz_shoutbox} mit Html dar?

Über das index Template des Forums funzt es ja, nur will ich mir das ja nicht Tag und Nacht ansehen. ^^


RE: DVZ Shoutbox - MrBrechreiz - 23.12.2014

Wenn es in das ProPortal rein soll, erstellst Du eine eigene Box und packst die Variable in das Feld "Block Inhalt". Nicht getestet, sollte aber funktionieren.


RE: DVZ Shoutbox - holz - 23.12.2014

(23.12.2014, 14:14)MrBrechreiz schrieb: Wenn es in das ProPortal rein soll, erstellst Du eine eigene Box und packst die Variable in das Feld  "Block Inhalt". Nicht getestet, sollte aber funktionieren.

Ja es soll in Dein ProPortal nur mit der Variable im Block funzt es nicht, die geht scheinbar nur im index Template.


RE: DVZ Shoutbox - doylecc - 23.12.2014

Damit die Variable im Portal funktioniert musst du in der inc/plugins/dvz_shoutbox.php
zB unter:


PHP-Code:
$plugins->add_hook('global_end', ['dvz_shoutbox''global_end']); 

noch den Hook fürs Portal einfügen:

PHP-Code:
$plugins->add_hook('portal_end''dvz_shoutbox'); 



RE: DVZ Shoutbox - Jockl - 23.12.2014

was auch in dem oben verlinkten Beitrag so geschrieben steht, holz.