outside of the if condtion.<!-- block: sidebar_online_staff -->
....
<!-- end block: sidebar_online_staff -->
<li id="{$messageId}" class="message {xen:if $message.isDeleted, 'deleted'} {xen:if '{$message.is_admin} OR {$message.is_moderator}', 'staff'}" data-author="{$message.username}">
<xen:hook name="message_header" />
<xen:include template="message_user_info">
<xen:comment>
With Javascript enabled, this form will be moved at page init time,
with the command $('#login').appendTo('#loginBar .pageContent');
Note that all external auth checks need to be added to the conditional below
in order to set $eAuth = 1 if any external auth providers are available.
</xen:comment>
<xen:if is="{$xenOptions.facebookAppId}"><xen:set var="$eAuth">1</xen:set></xen:if>
I'm upset these hooks still aren't in 1.1...Okay... there are two hooks that I need that I am absolutely amazed don't already exist...
At the absolute bottom of "thread_view"
Code:<xen:hook name="thread_view_share_after" params="{xen:array 'thread={$thread}'}" />
At the absolute bottom of "forum_view"
Code:<xen:hook name="forum_view_pagenav_after" params="{xen:array 'forum={$forum}'}" />
I'm upset these hooks still aren't in 1.1...
Well there are some <xen:> commands that dont work in template_post_render. It would just be easier if the hooks were added... and its not like it's that much work for you guys =PYou can use template_post_render to prepend or append to any "page level" template (and both of those templates are).
Er... what commands would those be?Well there are some <xen:> commands that dont work in template_post_render. It would just be easier if the hooks were added... and its not like it's that much work for you guys =P
Thanks. I like that the developers actually listen to their customers.Implemented most of these now
<xen:sidebar>Er... what commands would those be?
How would I add the following template using that method? As far as I know, <xen:sidebar> fails...You can use template_post_render to prepend or append to any "page level" template (and both of those templates are).
<xen:require css="EWRporta.css" />
<xen:if is="{$blocks.btm-left}">
<div class="sidebar btmLeftBlocks">
<xen:foreach loop="$blocks.btm-left" value="$block">
{xen:raw $block}
</xen:foreach>
</div>
</xen:if>
<xen:if is="{$blocks.btm-right}">
<div class="sidebar btmRightBlocks {xen:if '{$blocks.btm-left}', 'centerShift'}">
<xen:foreach loop="$blocks.btm-right" value="$block">
{xen:raw $block}
</xen:foreach>
</div>
</xen:if>
<xen:if is="{$blocks.sidebar}">
<xen:sidebar>
<xen:foreach loop="$blocks.sidebar" value="$block">
{xen:raw $block}
</xen:foreach>
</xen:sidebar>
</xen:if>
<xen:include template="EWRporta_Footer" />
We use essential cookies to make this site work, and optional cookies to enhance your experience.