TaigaChat - AJAX Shoutbox [Deleted]

Search for plain ole: dark_taigachat
then what do i do?
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_nodes">
<xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
<xen:sidebar>
<xen:edithint template="sidebar.css" />
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_sidebar">
<xen:include template="sidebar_online_users" />
 
Delete the following part in red.

then what do i do?
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_nodes">
<xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
<xen:sidebar>
<xen:edithint template="sidebar.css" />
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_sidebar">
<xen:include template="sidebar_online_users" />
 
Clear your cache and refresh cause it should be gone after you delete it underneath the <xen:sidebar> part.

If it's still there that means you probably have it somewhere else as well. Try another search for: dark_taigachat
 
there is no more to delete. But i no longer have the chat on top of my forum and its on the sidebar. I want it off the sidebar and on top of the forum.
 
there is no more to delete. But i no longer have the chat on top of my forum and its on the sidebar. I want it off the sidebar and on top of the forum.

Your forum_list template should look like this:
Code:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>
 
<xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:index'}" /></xen:container>
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
    <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
<xen:container var="$head.openGraph">
    <xen:include template="open_graph_meta">
        <xen:set var="$url">{xen:link 'canonical:index'}</xen:set>
        <xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
    </xen:include></xen:container>
 
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_nodes">
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
   
<xen:sidebar>
    <xen:edithint template="sidebar.css" />
   
    <xen:hook name="forum_list_sidebar">
        <xen:include template="sidebar_online_users" />
       
        <!-- block: forum_stats -->
        <div class="section">
            <div class="secondaryContent statsList" id="boardStats">
                <h3>{xen:phrase forum_statistics}</h3>
                <div class="pairsJustified">
                    <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
                        <dd>{xen:number $boardTotals.discussions}</dd></dl>
                    <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
                        <dd>{xen:number $boardTotals.messages}</dd></dl>
                    <dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
                        <dd>{xen:number $boardTotals.users}</dd></dl>
                    <dl><dt>{xen:phrase latest_member}:</dt>
                        <dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
                    <!-- slot: forum_stats_extra -->
                </div>
            </div>
        </div>
        <!-- end block: forum_stats -->
       
        <xen:include template="sidebar_share_page">
            <xen:set var="$url">{xen:link canonical:index}</xen:set>
        </xen:include>
       
    </xen:hook>
</xen:sidebar>
 
there is no more to delete. But i no longer have the chat on top of my forum and its on the sidebar. I want it off the sidebar and on top of the forum.
If dark_taigachat is no longer in the forum_list template that means you put that code somewhere else in the templates. Try doing another search.
 
You see where it says forum_list at the bottom? There's a chatbox code in that template that keeps coming up in your sidebar. Post your whole forum_list template code in here so we can see it.

Whenever you post it, put the code inside code BB code like this:
HTML:
[code]the contents of your forum_list template[/code]
 
Code:
<xen:h1>{$xenOptions.boardTitle}</xen:h1>
 
<xen:container var="$head.canonical"><link rel="canonical" href="{xen:link 'canonical:index'}" /></xen:container>
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
    <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
<xen:container var="$head.openGraph">
    <xen:include template="open_graph_meta">
        <xen:set var="$url">{xen:link 'canonical:index'}</xen:set>
        <xen:set var="$title">{$xenOptions.boardTitle}</xen:set>
    </xen:include></xen:container>
 
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>
<xen:hook name="forum_list_nodes">
    <xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
</xen:hook>
   
<xen:sidebar>
    <xen:edithint template="sidebar.css" />
   
     <xen:hook name="forum_list_sidebar">
        <xen:include template="sidebar_online_users" />
      
        <!-- block: forum_stats -->
        <div class="section">
            <div class="secondaryContent statsList" id="boardStats">
                <h3>{xen:phrase forum_statistics}</h3>
                <div class="pairsJustified">
                    <dl class="discussionCount"><dt>{xen:phrase discussions}:</dt>
                        <dd>{xen:number $boardTotals.discussions}</dd></dl>
                    <dl class="messageCount"><dt>{xen:phrase messages}:</dt>
                        <dd>{xen:number $boardTotals.messages}</dd></dl>
                    <dl class="memberCount"><dt>{xen:phrase members_count}:</dt>
                        <dd>{xen:number $boardTotals.users}</dd></dl>
                    <dl><dt>{xen:phrase latest_member}:</dt>
                        <dd><xen:username user="$boardTotals.latestUser" /></dd></dl>
                    <!-- slot: forum_stats_extra -->
                </div>
            </div>
        </div>
        <!-- end block: forum_stats -->
       
        <xen:include template="sidebar_share_page">
            <xen:set var="$url">{xen:link canonical:index}</xen:set>
        </xen:include>
       
    </xen:hook>
</xen:sidebar>
 
Back
Top Bottom