Quote:
Originally Posted by KAC
jaliam, First I want to thank you for helping me out with this . It is appreciated .
Yes i did have access to the shoutbox.php and I tested it with a shout and it worked . Although I'm a little confused about how to get it to show on the index.php page of the forums ?
Does it need to be put in the header of the site somehow?
Now when I go to the admincp I see the shout I made and I am able to edit or delete the shout .
|
PHP Code:
Open the template FORUMHOME
Find this:
// ####################################
$navbar
// ####################################
Replace it with this:
// ####################################
$navbar
<!-- shoutbox -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[tablewidth]" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_shoutbox')"><img id="collapseimg_forumhome_shoutbox" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_shoutbox].gif" alt="" border="0" /></a>
<a href="shoutbox.php?$session[sessionurl]">Shoutbox</a></td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_shoutbox" style="$vbcollapse[collapseobj_forumhome_shoutbox]">
<tr>
<td class="alt1" width="100%">
<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="120" scrolling="no" frameborder="0" name="shoutbox" id="shoutbox"></iframe>
</td>
</tr>
</tbody>
</table>
<!-- end shoutbox -->
<br />
// ####################################
i think this is what your talking about?