PDA

View Full Version : [REQ] Shoutbox integration


Sovereign
07-31-2005, 09:09 PM
I found vBShout (http://www.vbulletin.org/forum/showthread.php?t=93097) at vB.org, and was wondering if it was possible to put this on the homepage?

ragintajin
08-02-2005, 03:16 PM
I'd like to second that motion. ;)

Our Sponsors
 

Jason McConnell
08-03-2005, 02:05 AM
Me three :)

Sovereign
08-03-2005, 02:53 PM
*Goes to vB.org to request integration....*

Our Sponsors
 

Sovereign
08-05-2005, 06:26 PM
vB.org failure, returning here!

Scotty2k
08-08-2005, 09:18 AM
I changed the template of vbshout to the following and it works. But i have some problems to fix the height of the box .. perhaps someone here has some ideas how to make it better


<form action="forum/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tbody id="collapseobj_forumhome_vbshout" style="$vbcollapse[collapseobj_forumhome_vbshout]">
<tr>
<td class="alt1" align="left" width="100%">
<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<textarea name="shout" style="width: 90%" rows="4" cols="15" class="bginput" /></textarea>
</td></tr>
<tr><td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
</td>
</tr>
</table>
<a href='#' id='vbshout_emoticon'><if condition="$vboptions[shout_extra_options]">Emoticons</if></a>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout" style="overflow:auto;height:100px;width:100%;";>
Loading...
</div>
<if condition="$vboptions[shout_editor_position]"><if condition="$bbuserinfo[userid] > 0">
</if> </if> </td>
</tr>
</tbody>
</table>
</form>
<br />

<div class="vbmenu_popup" id="vbshout_emoticon_menu" style="display:none;overflow:auto;white-space:nowrap;width:{$vboptions['shout_emo_width']}px;padding:8px;height:{$vboptions['shout_emo_height']}px;vertical-align:top;">
<table width='100%' style='height:100%;white-space:nowrap;vertical-align:top;' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%' style='height:100%;white-space:nowrap;vertical-align:top;'>
$Smilie_Build
</td>
</tr>
</table>
</div>

<script type='text/javascript'>
<!--
vbmenu_register('vbshout_emoticon', true)

postingShout = false

function requestShouts()
{
if (!postingShout)
{
ShoutRequest = new vB_AJAX_Handler(true)
ShoutRequest.onreadystatechange(showShouts)
ShoutRequest.send('forum2/vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
}
}

function showShouts()
{
if (ShoutRequest)
{
if (ShoutRequest.handler.readyState == 4 && ShoutRequest.handler.status == 200 && ShoutRequest.handler.responseText)
{
Shouts = fetch_object('vbshout')
Shouts.innerHTML = '<table cellpadding="1" cellspacing="3" border="0" width="98%" align="left">' + ShoutRequest.handler.responseText + '</table>'
setTimeout('requestShouts()', 10000)
}
}
}

function sb_CollectHV(sbForm)
{
rString = ''
inputObjs = sbForm.getElementsByTagName('input')
for (i = 0; i < inputObjs.length; i++)
{
if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '')
{
rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value)
}
}

return rString
}

function postShout(formObj)
{
doShout = new vB_AJAX_Handler(true)
doShout.onreadystatechange(postedShout)

if (postingShout)
{
alert('Posting in progress..')
return false
}

Shout = formObj.shout.value

if (Shout.replace(/ /g, '') == '')
{
alert('You must enter a shout!')
return false
}

doShout.send('forum/vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
sb_Clear()
postingShout = true

return false
}

function postedShout()
{
if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
{
postingShout = false
requestShouts()
}
}

function sb_Input_SC(sProperty, setting)
{
eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"')
eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"')
}

function getSelectionValue(eSelector)
{
return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value
}

function sb_PropChange(eSelector, sProperty)
{
sb_Input_SC(sProperty, getSelectionValue(eSelector))
}

function sb_PropChange_Button_Value(sProperty)
{
trueValue = ''
switch (sProperty)
{
case 'fontWeight':
falseValue = 'bold'
break;

case 'textDecoration':
falseValue = 'underline'
break;

case 'fontStyle':
falseValue = 'italic'
break;
}

return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue
}

function sb_PropChange_Button(cButton, sProperty)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}

sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty))
}

function sb_Smilie(code)
{
document.forms["vbshoutform"].shout.value += ' ' + code
}

function sb_Clear()
{
document.forms["vbshoutform"].shout.value = ''
return true;
}

requestShouts()

-->
</script>

Sovereign
08-11-2005, 10:49 PM
Exactly how does it 'work'? Do I use it as a module in the CMPS or what?

Mr.G
08-15-2005, 01:30 AM
vbshout is a hack that you can download off vbulletin.org

Diver
08-15-2005, 12:11 PM
I changed the template of vbshout to the following and it works. But i have some problems to fix the height of the box .. perhaps someone here has some ideas how to make it better


<form action="forum/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tbody id="collapseobj_forumhome_vbshout" style="$vbcollapse[collapseobj_forumhome_vbshout]">
<tr>
<td class="alt1" align="left" width="100%">
<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<textarea name="shout" style="width: 90%" rows="4" cols="15" class="bginput" /></textarea>
</td></tr>
<tr><td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
</td>
</tr>
</table>
<a href='#' id='vbshout_emoticon'><if condition="$vboptions[shout_extra_options]">Emoticons</if></a>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout" style="overflow:auto;height:100px;width:100%;";>
Loading...
</div>
<if condition="$vboptions[shout_editor_position]"><if condition="$bbuserinfo[userid] > 0">
</if> </if> </td>
</tr>
</tbody>
</table>
</form>
<br />

<div class="vbmenu_popup" id="vbshout_emoticon_menu" style="display:none;overflow:auto;white-space:nowrap;width:{$vboptions['shout_emo_width']}px;padding:8px;height:{$vboptions['shout_emo_height']}px;vertical-align:top;">
<table width='100%' style='height:100%;white-space:nowrap;vertical-align:top;' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%' style='height:100%;white-space:nowrap;vertical-align:top;'>
$Smilie_Build
</td>
</tr>
</table>
</div>

<script type='text/javascript'>
<!--
vbmenu_register('vbshout_emoticon', true)

postingShout = false

function requestShouts()
{
if (!postingShout)
{
ShoutRequest = new vB_AJAX_Handler(true)
ShoutRequest.onreadystatechange(showShouts)
ShoutRequest.send('forum2/vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
}
}

function showShouts()
{
if (ShoutRequest)
{
if (ShoutRequest.handler.readyState == 4 && ShoutRequest.handler.status == 200 && ShoutRequest.handler.responseText)
{
Shouts = fetch_object('vbshout')
Shouts.innerHTML = '<table cellpadding="1" cellspacing="3" border="0" width="98%" align="left">' + ShoutRequest.handler.responseText + '</table>'
setTimeout('requestShouts()', 10000)
}
}
}

function sb_CollectHV(sbForm)
{
rString = ''
inputObjs = sbForm.getElementsByTagName('input')
for (i = 0; i < inputObjs.length; i++)
{
if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '')
{
rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value)
}
}

return rString
}

function postShout(formObj)
{
doShout = new vB_AJAX_Handler(true)
doShout.onreadystatechange(postedShout)

if (postingShout)
{
alert('Posting in progress..')
return false
}

Shout = formObj.shout.value

if (Shout.replace(/ /g, '') == '')
{
alert('You must enter a shout!')
return false
}

doShout.send('forum/vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
sb_Clear()
postingShout = true

return false
}

function postedShout()
{
if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
{
postingShout = false
requestShouts()
}
}

function sb_Input_SC(sProperty, setting)
{
eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"')
eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"')
}

function getSelectionValue(eSelector)
{
return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value
}

function sb_PropChange(eSelector, sProperty)
{
sb_Input_SC(sProperty, getSelectionValue(eSelector))
}

function sb_PropChange_Button_Value(sProperty)
{
trueValue = ''
switch (sProperty)
{
case 'fontWeight':
falseValue = 'bold'
break;

case 'textDecoration':
falseValue = 'underline'
break;

case 'fontStyle':
falseValue = 'italic'
break;
}

return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue
}

function sb_PropChange_Button(cButton, sProperty)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}

sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty))
}

function sb_Smilie(code)
{
document.forms["vbshoutform"].shout.value += ' ' + code
}

function sb_Clear()
{
document.forms["vbshoutform"].shout.value = ''
return true;
}

requestShouts()

-->
</script>

has anyone tested this?
so just added this template as a box?

i would love to use this after upgrading to 3.5 :)

Sovereign
08-16-2005, 02:47 PM
What I meant is, where does that new code go? And how do I install vBShout into the CMPS? Module? Page? Dummy description please. *feels n00bish*

Scotty2k
08-24-2005, 04:03 AM
Just install vbshout with your plugin manager. After thatadd a new Modul in your CMPS with a new template and add my code.

Make sure, that the path in my code is the same to your forum, if not you have to edit 3 Lines

<form action="forum/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">

ShoutRequest.send('forum/vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )

doShout.send('forum/vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))

The Shoutbox works in CMPS but the design and the textlenght is not very nice, so i tried to chance the template "forumhome_vbshout_shout" to fit the design. Here is my modified template

<if condition="!$Shout[s_me]">
<tr><td class="smallfont"><if condition="$Shout[s_by]">
<a href='member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>{$Shout['username']}<if condition="$Shout[s_by]"></a></if>:
<tr>
<td class="smallfont"style="white-space:nowrap" align="left" valign="top">{$Shout['time']}
</if>
</td></tr>
<td class="smallfont" width="98%" align="left">
<if condition="!$Shout[s_me]">
{$Shout['s_shout']}
<else />
<span class='highlight'>
*{$Shout['username']} {$Shout['s_shout']}*
</span>
</if>
</td>
</tr>

Now i have only one problem.. the text is to long and i donīt know how to brake the lines after a defined number of charakters

Sovereign
08-25-2005, 05:25 PM
The shoutbox messes up my site, it makes all the columns on the right side and posts the whole width of the screen... And it doesn't work. I get a white page after I try to shout.

Scotty2k
08-26-2005, 07:03 AM
Did you checked the path to your forum vbshout.php in my template example ?

Timewalk
09-04-2005, 10:02 PM
I want the shoutbox on my portal page only, not on my forums page, is there a way to do that?, or is it impossible with vbshout??

Loco Macheen
09-11-2005, 07:10 PM
I want the shoutbox on my portal page only, not on my forums page, is there a way to do that?, or is it impossible with vbshout??

yes its very possible,, i believe thats what this thread is about :P

Timewalk
09-11-2005, 10:49 PM
yes its very possible,, i believe thats what this thread is about :P

Ya but as soon as you install the plugin for vbshout, the shoutbox ends up on forumhome..

Timewalk
09-11-2005, 11:06 PM
Heres how mine looks, theres nothing in it, or a place to execute a shout??

http://www.microsoftforums.org/

Neises
09-13-2005, 02:47 PM
Anyone try vBShout on every page (http://www.vbulletin.org/forum/showthread.php?t=96158) yet?

Gizmo[5h1t3]
09-13-2005, 05:01 PM
Anyone try vBShout on every page (http://www.vbulletin.org/forum/showthread.php?t=96158) yet?

yep, and i spent 2 hours after it re installing a backup, as it totally crashed my board out.

Loco Macheen
09-14-2005, 04:46 AM
Ya but as soon as you install the plugin for vbshout, the shoutbox ends up on forumhome..
oh. i think it should be.. scotty almost has it, i treid his method, but it thu my boards out of wack.. hopefully osmeone will give it a shot

Chris Croft
09-29-2005, 09:29 AM
Did anybody figure this out? lol... I sure as heck can't

vbusers11
09-30-2005, 02:01 AM
way to rerelease it without even asking, **** off.

I wrote my version myself. didn't even use this thread.

Rukas
09-30-2005, 05:48 AM
^^ I tried that, but as soon as I post it just takes me to a blank http://www.streetspeaker.com/forum/vbshout.php?

Loco Macheen
09-30-2005, 06:53 AM
i tried it to.. it just says loading,, and when i did try and post i got the same thing thelast person got...

but its looking closer :) keep up the good work guys

Rukas
09-30-2005, 11:40 PM
^^ R u running it JUST on the portal or also on the board?

I was trying to run it on forum home and on the portal, maybe that causes the error?

Cant check right now, at work.

LatinPrince
10-02-2005, 03:25 AM
it posts the messages on a new page, after calling the shoutbox.php script but it doesnt stay in the display box. Not sure why it's not posting inside the box but for the most pt everything works exepct the new white window with the posts on some of the user links shown above.

FleaBag
10-03-2005, 09:16 PM
Exactly the same problem for me. Have rooted through it to no avail...

FleaBag
10-03-2005, 09:56 PM
Works 100% now. :) Just posted this over at vB.org [here (http://www.vbulletin.org/forum/showthread.php?t=97497)].

The problem was with this line in the template...
document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.display == 'none')? '' : 'none'
...being parsed incorrectly by this forum for some reason? The second 'display' is pasring as 'displa y'.

majorj0nny1
10-12-2005, 12:46 PM
very nice all ... but can anyone get this small and neat enough to be usable inside a left or right column ... ?

Flow Fusion
10-17-2005, 11:39 AM
very nice all ... but can anyone get this small and neat enough to be usable inside a left or right column ... ?


That would be cool.

FleaBag
10-17-2005, 05:07 PM
I've released it with the side column on vB.org. :)

djnth
12-20-2005, 10:37 PM
Did I do something wrong, I don't have the Smilies Button or the Font options in my shoutbox on my front page only when I go in to the forums are those options there.

trana
12-22-2005, 01:14 AM
So this is an open shoutbox? I.E. it doesn't require the user to log in and doesn't automatically populate their name?

djnth
12-22-2005, 06:09 PM
I believe you can set permissions to allow unregistered guests to post. My problem with it so far is that in my installation there is a button to add Smilies and a button for Font options on the Shoutbox in the Forums, but the Shoutbox that shows up on my front page is missing those two option, so my users are going to the Forum when they want to post to the Shoutbox so they have those extra options which is not convenient at all and almost defeats the point of having it on the front page.

So this is an open shoutbox? I.E. it doesn't require the user to log in and doesn't automatically populate their name?

termino
12-29-2005, 11:18 AM
how to remove the Shoutbox on the Forum homepage?
It's working in the vBadvanced CMPS 2.0 but I dont need it on the forum homepage
any ideas?

trana
01-05-2006, 02:27 AM
Can you clarify please? In the example screenshot it shows a field for the user to put in their UserID. I don't want to prompt people and it should automatically take it from the current logged in user.

Thanks!

Chris-777
01-11-2006, 12:19 AM
I'm almost there, just the font, stretching and timestamp to go.

Any ideas why this might be happening?

http://www.club3g.com/members/chris/shoutbox1.jpg

termino
01-11-2006, 06:14 AM
thats the template "adv_portal_vbshout" (found in the forums :rolleyes: )
to integrate vbShout in the left or right column of vbAdvanced (vBa CMPS)
see attachment how it look!!

<td class="alt1" align="left">
<form action="vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />

<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table border='0' cellpadding='0' cellspacing='0'>
<tr>
<td>
<input type="text" name="shout" style="width: 100%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
</td>
</tr>
</table>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout">
Loading...
</div>
<if condition="$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<div style="height: 2px"></div>
<table border='0' cellpadding='0' cellspacing='0'>
<tr>
<td>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<if condition="$vboptions[shout_extra_options]">
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
</if>
</td>
</tr>
</table>
</if>
</if>
</form>
</td>

<script type='text/javascript'>
<!--

postingShout = false

function requestShouts()
{
if (!postingShout)
{
ShoutRequest = new vB_AJAX_Handler(true)
ShoutRequest.onreadystatechange(showShouts)
ShoutRequest.send('vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
}
}

function showShouts()
{
if (ShoutRequest)
{
if (ShoutRequest.handler.readyState == 4 && ShoutRequest.handler.status == 200 && ShoutRequest.handler.responseText)
{
Shouts = fetch_object('vbshout')
Shouts.innerHTML = '<table cellpadding="1" cellspacing="3" border="0" width="95%" align="left">' + ShoutRequest.handler.responseText + '</table>'
setTimeout('requestShouts()', 10000)
<if condition="$vboptions[shout_messages_order]">
document.getElementById('vbshout').scrollTop = 99999;
</if>
}
}
}

function sb_CollectHV(sbForm)
{
rString = ''
inputObjs = sbForm.getElementsByTagName('input')
for (i = 0; i < inputObjs.length; i++)
{
if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '')
{
rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value)
}
}

return rString
}

function postShout(formObj)
{
doShout = new vB_AJAX_Handler(true)
doShout.onreadystatechange(postedShout)

if (postingShout)
{
alert('Posting in progress..')
return false
}

Shout = formObj.shout.value

if (Shout.replace(/ /g, '') == '')
{
alert('You must enter a shout!')
return false
}

doShout.send('vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
sb_Clear()
postingShout = true

return false
}

function postedShout()
{
if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
{
postingShout = false
requestShouts()
}
}

function sb_Input_SC(sProperty, setting)
{
eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"')
eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"')
}

function getSelectionValue(eSelector)
{
return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value
}

function sb_PropChange(eSelector, sProperty)
{
sb_Input_SC(sProperty, getSelectionValue(eSelector))
}

function sb_PropChange_Button_Value(sProperty)
{
trueValue = ''
switch (sProperty)
{
case 'fontWeight':
falseValue = 'bold'
break;

case 'textDecoration':
falseValue = 'underline'
break;

case 'fontStyle':
falseValue = 'italic'
break;
}

return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue
}

function sb_PropChange_Button(cButton, sProperty)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}

sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty))
}

function sb_Smilie(code)
{
document.forms["vbshoutform"].shout.value += ' ' + code
return false
}

function sb_Clear()
{
document.forms["vbshoutform"].shout.value = ''
return true;
}

function sb_Smilies(cButton)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}

document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.display == 'none')? '' : 'none'
}

requestShouts()

-->
</script>

that works fine!

http://www.cschorr.de/bilder/vbShout-left.png

Chris-777
01-11-2006, 12:07 PM
Hrm, I have your exact template copied, and I still get the exact same spanning/font size problem. :(

Is there a newer version of vBShout after 2.0 perhaps? I don't see one, but I"m not sure what else it could be - my vbAdvanced and 3.5.3 install are completely fresh.

It it's not that template, what else could it be?

ga2000gt
01-13-2006, 10:08 PM
how to remove the Shoutbox on the Forum homepage?
It's working in the vBadvanced CMPS 2.0 but I dont need it on the forum homepage
any ideas?

In your ACP go to ACP > Plugin System > Plugin Manager - find on that page 'vBShout [Template Alteration]' and uncheck the box which will deactivate it. It will no longer be on your forum home.

ga2000gt
01-13-2006, 10:25 PM
Finally got it working correctly as a center module. Only problem is there are only SHOUT and CLEAR buttons, no SMILIES etc. Anyone find a fix for that? Also, what about changing the refresh times so it doesn't refresh as often to relieve some of the bandwidth issues. Any help is greatly appreciated.

xan
01-15-2006, 01:44 AM
Im sorry but since vb.org is retarded with the liscence thing can you just post the entire code and instructions here?

da prez
01-15-2006, 02:30 AM
don't say you are unlicensed around here, it won't turn out good for ya.

gothic1213
01-15-2006, 03:04 AM
Im sorry but since vb.org is retarded with the liscence thing can you just post the entire code and instructions here?
not a wise thing to advertise here m8... :eek:

xan
01-16-2006, 01:00 PM
No I am liscenced Im just to lazy to verify :).

Aaron O
03-27-2007, 05:01 AM
Hrm, I have your exact template copied, and I still get the exact same spanning/font size problem. :(

Is there a newer version of vBShout after 2.0 perhaps? I don't see one, but I"m not sure what else it could be - my vbAdvanced and 3.5.3 install are completely fresh.

It it's not that template, what else could it be?
This is still a problem for vBAdvanced 2.2.1 with vBulletin 3.6.x.

porscheman170
03-30-2007, 11:34 PM
I just tried installing this on 2.2.1 and 3.6.5 it is just stuck at loading when I goto the homepage. Does anybody know how to fix this?

iDestroy
08-26-2007, 11:10 AM
same here.. stuck at loading :|

grtrat1
09-20-2007, 02:37 AM
try re-uploading the vbshout.php file...

rdopey1
01-05-2009, 02:16 AM
Hi, first post here, but we are running the VBShout on 3.7.4, with the current VbAdvance. Working great, except I would like to archive the shoutbox, instead of just pruning it. I know, that you dont support VBShout, but looking at the info here, I have a few questions, and am getting no answers over at VB.org, so will ask here, and see if i get a response. I would like to archive the shoutbox instead of just pruning it. So if i created a module, and input VBShout into it, will I be able to archive the shout box? And if this would work that way, would these instructions be good for the current version also? If not, what would I need to do to the current version to do this? Any and all answers would be greatly appreciated. Thanks in advance.