Russ
Well-known member
- Affected version
- 2.1
Bit of a unique one... if a user wanted to move the sidebar to the left of the content by loading:
Before
And they also load profile posts widget on the thread_view page, when submitting a reply it'll actually attach itself on the profile block for the initial view (refreshing fixes it obviously). I'm guessing it'll happen anytime profile post widget is loaded before the thread (top content)
Believe it has something to do with the class: js-replyNewMessageContainer
Code:
<xf:if is="$sidebar">
<div class="p-body-sidebar">
<xf:ad position="container_sidebar_above" />
<xf:foreach loop="$sidebar" value="$sidebarHtml">
{$sidebarHtml}
</xf:foreach>
<xf:ad position="container_sidebar_below" />
</div>
</xf:if>
Before
Code:
<div class="p-body-content">
<xf:ad position="container_content_above" />
<div class="p-body-pageContent">{$content|raw}</div>
<xf:ad position="container_content_below" />
</div>
And they also load profile posts widget on the thread_view page, when submitting a reply it'll actually attach itself on the profile block for the initial view (refreshing fixes it obviously). I'm guessing it'll happen anytime profile post widget is loaded before the thread (top content)
Believe it has something to do with the class: js-replyNewMessageContainer