MyBB.de Forum
Users Browsed Topic - 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: Users Browsed Topic (/thread-30544.html)



Users Browsed Topic - MyBB.de Bot - 17.09.2014

Eine neue Erweiterung wurde veröffentlicht: Users Browsed Topic

Zitat:This plugin show users who viewed thread.
It adds additional list after "Users browsing this thread".

Admin can simply edit global templates with list and list element.
Plugin also allows to enable / disable collect data and view list only for logged-in users.

New options: 
* add option to display last visit time on mouse hover 
* add option to sort list by username, UID, GID and visit date


INFO: This plugin add link to author website (only for web spiders). If you do not want this, do not use plugin, or make donate and contact author.



RE: Users Browsed Topic - MyBB.de Bot - 22.09.2014

Eine neue Version wurde veröffentlicht: Users Browsed Topic 1.1.0


RE: Users Browsed Topic - MyBB.de Bot - 25.09.2014

Eine neue Version wurde veröffentlicht: Users Browsed Topic 1.1.1


RE: Users Browsed Topic - MyBB.de Bot - 02.01.2015

Eine neue Version wurde veröffentlicht: Users Browsed Topic 1.2.0


RE: Users Browsed Topic - AnyChat - 26.09.2015

Aloha,

ist es möglich diese schöne kleine Statistik nur für den Threadersteller einblenden zu lassen? Ich habe es bereits in der showthread mit:

Code:
<if $post['uid'] = $mybb->user['uid'] then>
<!-- PLUGIN_USERS_BROWSED_TOPIC -->
</if>

versucht, auch schon mit == und != (kann mir einfach nicht merken welches das richtige ist), leider ohne Erfolg.

Kann jemand helfen?


RE: Users Browsed Topic - StefanT - 26.09.2015

$mybb->user['uid'] ist aktuelle Nutzer, nicht der Themenersteller. Das wäre $thread['uid'], also konkret:
PHP-Code:
$post['uid'] == $thread['uid'



RE: Users Browsed Topic - AnyChat - 26.09.2015

Das funktioniert leider auch nicht, denke aber auch das du da gerade einen "Denkfehler drin hast" lieber Stefan oder ich es falsch erklärt habe, deswegen:

Code:
<if BeitragBetrachtenderUser = Threadersteller then>
Kann die Statistik sehen
</if>



RE: Users Browsed Topic - StefanT - 26.09.2015

Das wäre dann:
PHP-Code:
$mybb->user['uid'] == $thread['uid'



RE: Users Browsed Topic - AnyChat - 26.09.2015

Ja, jetzt funktioniert wie es soll. Danke dir vielmals Stefan!


RE: Users Browsed Topic - MyBB.de Bot - 15.02.2016

Eine neue Version wurde veröffentlicht: Users Browsed Topic 1.3.0