Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post Shoutbox 
 
hello

Is it posible to get the shoutbox olso in the forum
now its only on portal but I want it olso in my forum

thanks for your comments

gretzz
 



 
MrCrazySend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Shoutbox 
 
Yes
Most of things are possible  

Open viewforum.php

FIND

Code: [Download] [Hide] [Select]
    $template->assign_vars(array(
        'FORUM_ID' => $forum_id,


AFTER, ADD

Code: [Download] [Hide] [Select]
        // Start add - Fully integrated shoutbox MOD
    'U_SHOUTBOX' => append_sid('shoutbox.' . $phpEx),
    'L_SHOUTBOX' => $lang['Shoutbox'],
    'U_SHOUTBOX_MAX' => append_sid('shoutbox_max.' . $phpEx),
        // End add - Fully integrated shoutbox MOD


OPEN

TEMPLATES/MG_THEMES/VIEWFORUM_BODY.TPL

FIND

Code: [Download] [Hide] [Select]
{FORUM_WORDGRAPH}


AFTER, ADD

Code: [Download] [Hide] [Select]
<div id="shoutbox_h" style="display: none;">
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td>&nbsp;</td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>
<div id="shoutbox">
<script type="text/javascript">
<!--
tmp = 'shoutbox';
if(GetCookie(tmp) == '2')
{
    ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
}
//-->
</script>
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
oke I dit this end the shoutbox is on the botom of the forum how can I can it on the top of the forum
 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
try it

Find
Code: [Download] [Hide] [Select]
{XS_NEWS}

after add
Code: [Download] [Hide] [Select]
<div id="shoutbox_h" style="display: none;">
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td>&nbsp;</td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>
<div id="shoutbox">
<script type="text/javascript">
<!--
tmp = 'shoutbox';
if(GetCookie(tmp) == '2')
{
   ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
}
//-->
</script>
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>

 




____________
Desing
KtmDesingz

[spoiler][img]http://i116.photobucket.com/albums/o37/_ktm_/Firma32.jpg[/img][/spoiler]
 
-ktm-Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
this {XS_NEWS} is in viewforum_body.tpl

so I add your text after but nothing changed

I hoop that you have somthing else


gretzz
 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
i don't know where u want it... post a shot and i'll make it whereever u want

try to add this

Code: [Download] [Hide] [Select]
<tr>
    <td align="left" valign="middle">
        <div id="shoutbox_h" style="display: none;">
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td>&nbsp;</td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>
        <div id="shoutbox">
        <script type="text/javascript">
        <!--
        tmp = 'shoutbox';
        if(GetCookie(tmp) == '2')
        {
           ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
        }
        //-->
        </script>
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>
    </td>
</tr>


before

Code: [Download] [Hide] [Select]
<tr><td align="left" valign="middle"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a></td></tr>

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
it is now on the botum of my forum

but I want it just below th home>>forum blok and above the Latest news

www.puredesiginz.nl

gretzzzz
 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post  
 
So add it before {XS_NEWS}.
 



 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
I think that I do somthing wromg but I can not get it up

 
 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
attach here your viewforum_body.tpl file please
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
oke here it is




Code: [Download] [Hide] [Select]
<div class="forumline nav-div">
    <p class="nav-header">
        <a href="{U_PORTAL}">{L_HOME}</a>{NAV_SEP}<a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}
    </p>
    <div class="nav-links">
        <div class="nav-links-left">{CURRENT_TIME}</div>
        <!-- BEGIN switch_user_logged_in -->
        {U_MARK_READ}<!-- <a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a> -->
        <!-- IF S_WATCH_FORUM --> | {S_WATCH_FORUM}<!-- ENDIF -->
        <!-- END switch_user_logged_in -->
        <!-- BEGIN switch_user_logged_out -->
        &nbsp;
        <!-- END switch_user_logged_out -->
    </div>
</div>
<tr>
    <td align="left" valign="middle">
        <div id="shoutbox_h" style="display: none;">
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td>&nbsp;</td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>
        <div id="shoutbox">
        <script type="text/javascript">
        <!--
        tmp = 'shoutbox';
        if(GetCookie(tmp) == '2')
        {
           ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
        }
        //-->
        </script>
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>
    </td>
</tr>
{XS_NEWS}



<!-- BEGIN switch_forum_rules -->
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td colspan="3">
        <table class="forumline" width="100%" cellspacing="0">
        <tr>
            <td class="row-header">
                <span>
                <!-- BEGIN switch_display_title -->
                {L_FORUM_RULES}
                <!-- END switch_display_title -->
                </span>
            </td>
        </tr>
        <tr><td class="row1g-left" width="100%"><div class="post-text">{FORUM_RULES}</div></td></tr>
        </table>
    </td>
</tr>
</table>
<!-- END switch_forum_rules -->
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td align="left" valign="bottom" width="70%">
        <span class="gensmall">{L_MODERATOR}:&nbsp;{MODERATORS}<br />{TOTAL_USERS_ONLINE}<br/>{LOGGED_IN_USER_LIST}<br />{BOT_LIST}</span>
    </td>
    <td align="right" valign="bottom" rowspan="2">
        <span class="gen">{PAGE_NUMBER}</span><br />
        <span class="pagination">{PAGINATION}</span>
    </td>
</tr>
<tr>
    <td align="left" valign="middle">
        
    </td>
</tr>
<tr><td align="left" valign="middle"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a></td></tr>
</table>
{BOARD_INDEX}
<form method="post" action="{S_POST_DAYS_ACTION}" style="display: inline;">
{IMG_THL}{IMG_THC}<a href="{U_VIEW_FORUM}" class="forumlink">{FORUM_NAME}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
    <th colspan="2">{L_TOPICS}</th>
    <!-- BEGIN rating_switch -->
    <th width="100">{L_RATING}</th>
    <!-- END rating_switch -->
    <th width="50">{L_REPLIES}</th>
    <th width="100">{L_AUTHOR}</th>
    <th width="50">{L_VIEWS}</th>
    <th>{L_LASTPOST}</th>
</tr>
<!-- BEGIN topicrow -->
<!-- BEGIN divider -->
<tr><td class="forum-buttons2" colspan="7" align="left"><span>{topicrow.divider.L_DIV_HEADERS}</span></td></tr>
<!-- END divider -->
<tr>
    <td class="row3 row-center" width="18">
        {topicrow.U_MARK_ALWAYS_READ}
        <!-- <img src="{topicrow.TOPIC_FOLDER_IMG}" width="15" height="15" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" /> -->
    </td>
    <td class="row1h{topicrow.XS_NEW} row-forum" width="100%" onclick="window.location.href='{topicrow.U_VIEW_TOPIC}'">
        <span class="topiclink{topicrow.XS_NEW}">
            {topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_ATTACHMENT_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="{topicrow.CLASS}">{topicrow.TOPIC_TITLE}</a>{topicrow.CALENDAR_TITLE}
        </span><br />
        <!-- BEGIN switch_topic_desc -->
        <span class="gensmall">&nbsp;{topicrow.switch_topic_desc.TOPIC_DESCRIPTION}</span><br />
        <!-- END switch_topic_desc -->
        {topicrow.GOTO_PAGE}
    </td>
    <!-- BEGIN rate_switch_msg -->
    <td class="row3 row-center-small"><img src="images/rates/rate_{topicrow.TOPIC_RATING}.png" alt="{topicrow.TOPIC_RATING}" /></td>
    <!-- END rate_switch_msg -->
    <td class="row2 row-center-small">{topicrow.REPLIES}</td>
    <td class="row3 row-center-small">{topicrow.TOPIC_AUTHOR}</td>
    <td class="row2 row-center-small">{topicrow.VIEWS}</td>
    <td class="row3 row-center-small" style="padding-top: 0;" nowrap="nowrap">{topicrow.LAST_POST_TIME}<br />{topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}</td>
</tr>
<!-- END topicrow -->
<!-- BEGIN switch_no_topics -->
<tr><td class="row1 row-center" colspan="7" height="30"><span class="gen">{L_NO_TOPICS}</span></td></tr>
<!-- END switch_no_topics -->
<tr>
    <td class="catBottom" valign="middle" colspan="7">
        <table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
        <tr>
            <td valign="middle" nowrap="nowrap"><span class="genmed">&nbsp;{L_DISPLAY_TOPICS}:</span></td>
            <td valign="middle" nowrap="nowrap">&nbsp;{S_SELECT_TOPIC_DAYS}&nbsp;<input type="submit" class="liteoption jumpbox" value="{L_GO}" name="submit" /></td>
            <td valign="middle" align="right" width="100%"><span class="genmed">{S_TIMEZONE}&nbsp;</span></td>
        </tr>
        </table>
    </td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</form>
<br />

<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td align="left" valign="top" nowrap="nowrap">
        <a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a><br />
        <div id="icon_description_h" style="display: none;">
            <table class="forumline" width="90%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('icon_description', 'icon_description_h', 'icon_description');" alt="" border="0" />&nbsp;</div><span>{L_ICON_DESCRIPTION}</span>
                </td>
            </tr>
            </table>
        </div>
        <div id="icon_description">
            <table class="forumline" width="90%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header" colspan="6">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MINIMISE}" onclick="javascript:ShowHide('icon_description', 'icon_description_h', 'icon_description');" alt="" border="0" />&nbsp;</div><span>{L_ICON_DESCRIPTION}</span>
                </td>
            </tr>
            <tr>
                <td width="20" align="center"><img src="{FOLDER_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td>
                <td class="gensmall">{L_NEW_POSTS}</td>
                <td>&nbsp;&nbsp;</td>
                <td width="20" align="center"><img src="{FOLDER_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td width="20" align="center"><img src="{FOLDER_HOT_NEW_IMG}" alt="{L_NEW_POSTS_HOT}" title="{L_NEW_POSTS_HOT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_HOT}</td>
                <td>&nbsp;&nbsp;</td>
                <td width="20" align="center"><img src="{FOLDER_HOT_IMG}" alt="{L_NO_NEW_POSTS_HOT}" title="{L_NO_NEW_POSTS_HOT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_HOT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_LOCKED_NEW_IMG}" alt="{L_NEW_POSTS_TOPIC_LOCKED}" title="{L_NEW_POSTS_TOPIC_LOCKED}" /></td>
                <td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_LOCKED_IMG}" alt="{L_NO_NEW_POSTS_TOPIC_LOCKED}" title="{L_NO_NEW_POSTS_TOPIC_LOCKED}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_STICKY_NEW_IMG}" alt="{L_NEW_POSTS_STICKY}" title="{L_NEW_POSTS_STICKY}" /></td>
                <td class="gensmall">{L_NEW_POSTS_STICKY}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_STICKY_IMG}" alt="{L_NO_NEW_POSTS_STICKY}" title="{L_NO_NEW_POSTS_STICKY}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_STICKY}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_ANNOUNCE_NEW_IMG}" alt="{L_NEW_POSTS_ANNOUNCEMENT}" title="{L_NEW_POSTS_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_ANNOUNCE_IMG}" alt="{L_NO_NEW_POSTS_ANNOUNCEMENT}" title="{L_NO_NEW_POSTS_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_GLOBAL_ANNOUNCE_NEW_IMG}" alt="{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" title="{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_GLOBAL_ANNOUNCE_IMG}" alt="{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" title="{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_AR}" alt="{L_AR_POSTS}" title="{L_AR_POSTS}" /></td>
                <td class="gensmall">{L_AR_POSTS}</td>
                <td colspan="4">&nbsp;&nbsp;</td>
            </tr>
            </table>
        </div>
        <script language="javascript" type="text/javascript">
        <!--
        tmp = 'icon_description';
        if(GetCookie(tmp) == '2')
        {
            ShowHide('icon_description', 'icon_description_h', 'icon_description');
        }
        //-->
        </script>
        {JUMPBOX}<br />
    </td>
    <td width="40%" align="right" valign="top" nowrap="nowrap">
        <span class="pagination">{PAGINATION}</span><br />
        <div id="topic_auth_list_h" style="display: none;">
            <table class="forumline" width="100%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');" alt="" border="0" />&nbsp;</div><span>{L_PERMISSIONS_LIST}</span>
                </td>
            </tr>
            </table>
        </div>
        <div id="topic_auth_list">
            <table class="forumline" width="100%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MINIMISE}" onclick="javascript:ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');" alt="" border="0" />&nbsp;</div><span>{L_PERMISSIONS_LIST}</span>
                </td>
            </tr>
            <tr><td class="row1">{S_AUTH_LIST}</td></tr>
            </table>
        </div>
        <script language="javascript" type="text/javascript">
        <!--
        tmp = 'topic_auth_list';
        if(GetCookie(tmp) == '2')
        {
            ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');
        }
        //-->
        </script>
    </td>
</tr>
</table>
{FORUM_WORDGRAPH}
<div id="shoutbox_h" style="display: none;">
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td>&nbsp;</td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>
<div id="shoutbox">
<script type="text/javascript">
<!--
tmp = 'shoutbox';
if(GetCookie(tmp) == '2')
{
    ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
}
//-->
</script>
{IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</div>

 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
Try to use this

Code: [Download] [Hide] [Select]
<div class="forumline nav-div">
    <p class="nav-header">
        <a href="{U_PORTAL}">{L_HOME}</a>{NAV_SEP}<a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}
    </p>
    <div class="nav-links">
        <div class="nav-links-left">{CURRENT_TIME}</div>
        <!-- BEGIN switch_user_logged_in -->
        {U_MARK_READ}<!-- <a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a> -->
        <!-- IF S_WATCH_FORUM --> | {S_WATCH_FORUM}<!-- ENDIF -->
        <!-- END switch_user_logged_in -->
        <!-- BEGIN switch_user_logged_out -->
        &nbsp;
        <!-- END switch_user_logged_out -->
    </div>
</div>
<div id="shoutbox_h" style="display: none;">
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_SHOW}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR_ALT}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td>&nbsp;</td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>
        <div id="shoutbox">
        <script type="text/javascript">
        <!--
        tmp = 'shoutbox';
        if(GetCookie(tmp) == '2')
        {
           ShowHide('shoutbox', 'shoutbox_h', 'shoutbox');
        }
        //-->
        </script>
        {IMG_THL}{IMG_THC}<img style="padding-top:3px;float:right;cursor:pointer;" src="{IMG_MINIMISE}" onclick="javascript:ShowHide('shoutbox','shoutbox_h','shoutbox');" alt="{L_HIDE}" /><a href="{U_SHOUTBOX_MAX}" class="forumlink">{L_SHOUTBOX}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
        <tr><td><iframe src="{U_SHOUTBOX}" scrolling="no" width="100%" height="190" frameborder="0" marginheight="0" marginwidth="0"></iframe></td></tr>
        </table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
        </div>

{XS_NEWS}

<!-- BEGIN switch_forum_rules -->
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td colspan="3">
        <table class="forumline" width="100%" cellspacing="0">
        <tr>
            <td class="row-header">
                <span>
                <!-- BEGIN switch_display_title -->
                {L_FORUM_RULES}
                <!-- END switch_display_title -->
                </span>
            </td>
        </tr>
        <tr><td class="row1g-left" width="100%"><div class="post-text">{FORUM_RULES}</div></td></tr>
        </table>
    </td>
</tr>
</table>
<!-- END switch_forum_rules -->
<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td align="left" valign="bottom" width="70%">
        <span class="gensmall">{L_MODERATOR}:&nbsp;{MODERATORS}<br />{TOTAL_USERS_ONLINE}<br/>{LOGGED_IN_USER_LIST}<br />{BOT_LIST}</span>
    </td>
    <td align="right" valign="bottom" rowspan="2">
        <span class="gen">{PAGE_NUMBER}</span><br />
        <span class="pagination">{PAGINATION}</span>
    </td>
</tr>
<tr>
    <td align="left" valign="middle">
        
    </td>
</tr>
<tr><td align="left" valign="middle"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a></td></tr>
</table>
{BOARD_INDEX}
<form method="post" action="{S_POST_DAYS_ACTION}" style="display: inline;">
{IMG_THL}{IMG_THC}<a href="{U_VIEW_FORUM}" class="forumlink">{FORUM_NAME}</a>{IMG_THR}<table class="forumlinenb" width="100%" cellspacing="0" cellpadding="0">
<tr>
    <th colspan="2">{L_TOPICS}</th>
    <!-- BEGIN rating_switch -->
    <th width="100">{L_RATING}</th>
    <!-- END rating_switch -->
    <th width="50">{L_REPLIES}</th>
    <th width="100">{L_AUTHOR}</th>
    <th width="50">{L_VIEWS}</th>
    <th>{L_LASTPOST}</th>
</tr>
<!-- BEGIN topicrow -->
<!-- BEGIN divider -->
<tr><td class="forum-buttons2" colspan="7" align="left"><span>{topicrow.divider.L_DIV_HEADERS}</span></td></tr>
<!-- END divider -->
<tr>
    <td class="row3 row-center" width="18">
        {topicrow.U_MARK_ALWAYS_READ}
        <!-- <img src="{topicrow.TOPIC_FOLDER_IMG}" width="15" height="15" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" /> -->
    </td>
    <td class="row1h{topicrow.XS_NEW} row-forum" width="100%" onclick="window.location.href='{topicrow.U_VIEW_TOPIC}'">
        <span class="topiclink{topicrow.XS_NEW}">
            {topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_ATTACHMENT_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="{topicrow.CLASS}">{topicrow.TOPIC_TITLE}</a>{topicrow.CALENDAR_TITLE}
        </span><br />
        <!-- BEGIN switch_topic_desc -->
        <span class="gensmall">&nbsp;{topicrow.switch_topic_desc.TOPIC_DESCRIPTION}</span><br />
        <!-- END switch_topic_desc -->
        {topicrow.GOTO_PAGE}
    </td>
    <!-- BEGIN rate_switch_msg -->
    <td class="row3 row-center-small"><img src="images/rates/rate_{topicrow.TOPIC_RATING}.png" alt="{topicrow.TOPIC_RATING}" /></td>
    <!-- END rate_switch_msg -->
    <td class="row2 row-center-small">{topicrow.REPLIES}</td>
    <td class="row3 row-center-small">{topicrow.TOPIC_AUTHOR}</td>
    <td class="row2 row-center-small">{topicrow.VIEWS}</td>
    <td class="row3 row-center-small" style="padding-top: 0;" nowrap="nowrap">{topicrow.LAST_POST_TIME}<br />{topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}</td>
</tr>
<!-- END topicrow -->
<!-- BEGIN switch_no_topics -->
<tr><td class="row1 row-center" colspan="7" height="30"><span class="gen">{L_NO_TOPICS}</span></td></tr>
<!-- END switch_no_topics -->
<tr>
    <td class="catBottom" valign="middle" colspan="7">
        <table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
        <tr>
            <td valign="middle" nowrap="nowrap"><span class="genmed">&nbsp;{L_DISPLAY_TOPICS}:</span></td>
            <td valign="middle" nowrap="nowrap">&nbsp;{S_SELECT_TOPIC_DAYS}&nbsp;<input type="submit" class="liteoption jumpbox" value="{L_GO}" name="submit" /></td>
            <td valign="middle" align="right" width="100%"><span class="genmed">{S_TIMEZONE}&nbsp;</span></td>
        </tr>
        </table>
    </td>
</tr>
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
</form>
<br />

<table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
    <td align="left" valign="top" nowrap="nowrap">
        <a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" title="{L_POST_NEW_TOPIC}" /></a><br />
        <div id="icon_description_h" style="display: none;">
            <table class="forumline" width="90%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('icon_description', 'icon_description_h', 'icon_description');" alt="" border="0" />&nbsp;</div><span>{L_ICON_DESCRIPTION}</span>
                </td>
            </tr>
            </table>
        </div>
        <div id="icon_description">
            <table class="forumline" width="90%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header" colspan="6">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MINIMISE}" onclick="javascript:ShowHide('icon_description', 'icon_description_h', 'icon_description');" alt="" border="0" />&nbsp;</div><span>{L_ICON_DESCRIPTION}</span>
                </td>
            </tr>
            <tr>
                <td width="20" align="center"><img src="{FOLDER_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td>
                <td class="gensmall">{L_NEW_POSTS}</td>
                <td>&nbsp;&nbsp;</td>
                <td width="20" align="center"><img src="{FOLDER_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td width="20" align="center"><img src="{FOLDER_HOT_NEW_IMG}" alt="{L_NEW_POSTS_HOT}" title="{L_NEW_POSTS_HOT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_HOT}</td>
                <td>&nbsp;&nbsp;</td>
                <td width="20" align="center"><img src="{FOLDER_HOT_IMG}" alt="{L_NO_NEW_POSTS_HOT}" title="{L_NO_NEW_POSTS_HOT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_HOT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_LOCKED_NEW_IMG}" alt="{L_NEW_POSTS_TOPIC_LOCKED}" title="{L_NEW_POSTS_TOPIC_LOCKED}" /></td>
                <td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_LOCKED_IMG}" alt="{L_NO_NEW_POSTS_TOPIC_LOCKED}" title="{L_NO_NEW_POSTS_TOPIC_LOCKED}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_STICKY_NEW_IMG}" alt="{L_NEW_POSTS_STICKY}" title="{L_NEW_POSTS_STICKY}" /></td>
                <td class="gensmall">{L_NEW_POSTS_STICKY}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_STICKY_IMG}" alt="{L_NO_NEW_POSTS_STICKY}" title="{L_NO_NEW_POSTS_STICKY}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_STICKY}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_ANNOUNCE_NEW_IMG}" alt="{L_NEW_POSTS_ANNOUNCEMENT}" title="{L_NEW_POSTS_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_ANNOUNCE_IMG}" alt="{L_NO_NEW_POSTS_ANNOUNCEMENT}" title="{L_NO_NEW_POSTS_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_GLOBAL_ANNOUNCE_NEW_IMG}" alt="{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" title="{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NEW_POSTS_GLOBAL_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
                <td class="gensmall" align="center"><img src="{FOLDER_GLOBAL_ANNOUNCE_IMG}" alt="{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" title="{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}" /></td>
                <td class="gensmall">{L_NO_NEW_POSTS_GLOBAL_ANNOUNCEMENT}</td>
                <td>&nbsp;&nbsp;</td>
            </tr>
            <tr>
                <td class="gensmall" align="center"><img src="{FOLDER_AR}" alt="{L_AR_POSTS}" title="{L_AR_POSTS}" /></td>
                <td class="gensmall">{L_AR_POSTS}</td>
                <td colspan="4">&nbsp;&nbsp;</td>
            </tr>
            </table>
        </div>
        <script language="javascript" type="text/javascript">
        <!--
        tmp = 'icon_description';
        if(GetCookie(tmp) == '2')
        {
            ShowHide('icon_description', 'icon_description_h', 'icon_description');
        }
        //-->
        </script>
        {JUMPBOX}<br />
    </td>
    <td width="40%" align="right" valign="top" nowrap="nowrap">
        <span class="pagination">{PAGINATION}</span><br />
        <div id="topic_auth_list_h" style="display: none;">
            <table class="forumline" width="100%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MAXIMISE}" onclick="javascript:ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');" alt="" border="0" />&nbsp;</div><span>{L_PERMISSIONS_LIST}</span>
                </td>
            </tr>
            </table>
        </div>
        <div id="topic_auth_list">
            <table class="forumline" width="100%" cellspacing="0" cellpadding="0">
            <tr>
                <td class="row-header">
                    <div style="float: right; display: inline; padding-top:6px; padding-right: 6px;"><img src="{IMG_MINIMISE}" onclick="javascript:ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');" alt="" border="0" />&nbsp;</div><span>{L_PERMISSIONS_LIST}</span>
                </td>
            </tr>
            <tr><td class="row1">{S_AUTH_LIST}</td></tr>
            </table>
        </div>
        <script language="javascript" type="text/javascript">
        <!--
        tmp = 'topic_auth_list';
        if(GetCookie(tmp) == '2')
        {
            ShowHide('topic_auth_list', 'topic_auth_list_h', 'topic_auth_list');
        }
        //-->
        </script>
    </td>
</tr>
</table>
{FORUM_WORDGRAPH}

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
It is stil on the botum of the forum

 
 



 
MrCrazySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
i think that u are making something wrong...
Try to clear cache if you think that are u making things ok

I've tested on my test site and it's fine

http://www.icyphoenix.com.ar/viewforum.php?f=1
 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Shoutbox 
 
Yes I see but if you see on your forum their is no shoutbox

so when I klik on the button forum then the shout is below.

when you klik on your forum button you see also no forum

I deletet mij part en copieet your in to mij forum.
but nothing changed
 



 
MrCrazySend private message  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron