Resource icon

Unmaintained "Quickreply" for guests

Seems like if the mosaic plugin is loaded and not used, it causes a conflict with the gritter plugin in the notifications addon. I changed it so the javascript file is only loaded on pages it is needed, and that seems to remove all conflicts (please don't ask me why, I am not sure).

The only change is the edits in page_container_js_head, change
HTML:
<xen:if is="!{$visitor.user_id}">
to
HTML:
<xen:if is="!{$visitor.user_id} AND {$contentTemplate} == 'thread_view'">

This change also prevents the javascript file from being loaded when not needed, so it saves some bandwidth as well.
  • Like
Reactions: murat çabuk
As I reviewed this for install on my live site, I noticed several CSS rules that were either wrong, or not necessary. I cleaned up those a bit, as well as include the sign up button.

Please note; My predictions about fixed width sites might have been a bit off, so if you use a fixed width style, be prepared to do allot of CSS edits to make it work.
Top Bottom