Reply to thread

Bit of a unique one... if a user wanted to move the sidebar to the left of the content by loading:


[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>[/code]


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>[/code]


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)



[ATTACH=full]207115[/ATTACH]


Believe it has something to do with the class:  js-replyNewMessageContainer 


Back
Top Bottom