vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   [AJAX] vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097)

tipoboy 02-17-2006 12:01 AM

[QUOTE=Luggruff]
Quote:

Originally Posted by tipoboy

Neat !
But how would I get only the shoutbox, and not the entire enviroment?
Don't want all that in a popup :p

not too sure to be honest, as i said before i mearly used mtha's hack and S@NL - BlackBik helped me with a problem i had if you find out let me know as i might be interested too

leeman 02-17-2006 03:32 AM

Quote:

Originally Posted by S@NL - BlackBik
It's not in the template, but it's in the vbshout.php file on your server ;)


Ooops .... :o

Ohiosweetheart 02-17-2006 03:37 AM

Quote:

Originally Posted by Ragnarok
That one I can answer. In your vBShout options, set your banned usergroups to include all usergroups you do not wish to use the shoutbox, and set your banned permissions to "Can not view the shoutbox"

Thanks for the info about vBShout on all pages!

thank you sweetie!

Luggruff 02-17-2006 08:30 AM

[QUOTE=tipoboy]
Quote:

Originally Posted by Luggruff

not too sure to be honest, as i said before i mearly used mtha's hack and S@NL - BlackBik helped me with a problem i had if you find out let me know as i might be interested too

well, the thing is, it's no different from JUST diabling the plugin, and JUST add a link with a content like this:

Code:

<a href="#" onclick="window.open('http://www.yourdomain.com/vbshout.php?do=chat','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=600,height=500'); return false;">Shoutbox</a>
does the same
(well maybe not the link aim but it's fairly the same.)

Za4a Tuner 02-17-2006 09:07 PM

Hello @ all,
i've found a "bug" @ the Shoutbox.

If an Admin does Edit a Shout -> everything is OK!

If an User wants to edit his shout (.../vbshout.php?do=archive),
he can do the changes ->
but the changes are not shown in the Showbox.
If the User returns to the Archiv,
it seems like no changes have been done!

Does anyone have an idea how to fix this?

vbreal 02-18-2006 02:55 AM

Quote:

Originally Posted by S@NL - BlackBik
Nope, i haven't seen that arround yet.


whew,

thanks

---MAD--- 02-18-2006 12:28 PM

does this work with vbulletin 3.5.3?

S@NL - BlackBik 02-18-2006 12:51 PM

Yes.

Stone Cold 3:16 02-18-2006 12:53 PM

Yeah

vB Version: 3.5.0 RC2

For me, i just use any hack for vb 3.5.0

---MAD--- 02-18-2006 03:14 PM

Quote:

Originally Posted by Stone Cold 3:16
Yeah

vB Version: 3.5.0 RC2

For me, i just use any hack for vb 3.5.0

ok cool ill install it now :)

GoTTi 02-18-2006 03:41 PM

can we get a update here?

---MAD--- 02-18-2006 03:59 PM

Quote:

Originally Posted by GoTTi
can we get a update here?

installed - working perfectly!

---MAD--- 02-18-2006 04:31 PM

Quote:

Originally Posted by MAD_PLayEr1
installed - working perfectly!

can we have a list of all the admin controls guys?

GoTTi 02-18-2006 05:32 PM

when i ban a usergroup from viewing the shoutboc, they are getting this error:

Fatal error: Call to undefined function: isbanned() in /home/SITE/public_html/forum/global.php(349) : eval()'d code on line 112

lucky64 02-18-2006 07:32 PM

Awesome hack, just installed, worked perfectly, including the 'who's shouting' hack addon.

Any chance of being able to control what vbcode can be used?

I don't want html, or img for example, but do want smilies..

How about a way to adjust the shoutbox size, from the users end?

username12 02-18-2006 09:05 PM

Any way to make it so mods can't edit people's shouts? I actually don't even know how they're doing it, but I'd like to restrict it to admins only (or nobody).

lucky64 02-18-2006 09:14 PM

Quote:

Originally Posted by lierduh
If you want to have shoutbox on all forumdisplay pages:

1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete

2) Edit the plugin code for 'vBShout [Template Alteration]'

Find: '$vbulletin->templatecache['FORUMHOME'] = str_replace($Position, $Position . ' $Shoutbox', $vbulletin->templatecache['FORUMHOME']);'

Replace it with:

$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);

This is a quick and dirty hack. The shoutbox will only show up under navbar!

3) If you want the shoutbox to show up only in certain forums:

a. add
if ($forumid ==13)
{

In the beginning of the above plugin. 13 is the forum ID you want the shoutbox to show.

b. add
}

in the end of the code.

Any way to get it so it displays at the bottom as opposed ot the top? I wanted to get the shoutbox on the forum home, and in one of my subforums at the bottom.

Weapon-x 02-18-2006 10:41 PM

I installed it. Awesome mod. How do I remove the Color and Font Face scroll boxes?

Weapon-x 02-19-2006 01:03 AM

How do I make the shoutbox appear at the bottom?

Luggruff 02-19-2006 07:45 AM

Quote:

Originally Posted by Weapon-x
I installed it. Awesome mod. How do I remove the Color and Font Face scroll boxes?

yoursite.com/admcp -> styles and templates -> template manager -> edit templates (at the top in the drop down) -> forumhome templates -> forumhome_vbShout

find:
Code:

<select name='font_color' onchange='sb_PropChange(this, "color")'>
                                                                {$DropDowns['color_selector']}
                                                        </select>
                                                        <select name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
                                                                {$DropDowns['font_selector']}
                                                        </select>

and add this before:

Code:

<if condition="in_array($bbuserinfo['usergroupid'], array(numbers of usergroupID's seperated by comma))">
..if you want to restrict the options to a sertain number of usergropus or

Code:

<if condition="in_array($bbuserinfo['userid'], array(numbers of userID's seperated by comma))">
..if you want to restrict the options to a sertain number of users

Don't forget to add </if> after the color and font code !

Quote:

Originally Posted by Weapon-x
How do I make the shoutbox appear at the bottom?

yoursite.com/admcp -> vBulletin Settings -> vBshout Options -> vBShout Position

Weapon-x 02-19-2006 02:10 PM

Quote:

Originally Posted by Luggruff
yoursite.com/admcp -> styles and templates -> template manager -> edit templates (at the top in the drop down) -> forumhome templates -> forumhome_vbShout

find:
Code:

<select name='font_color' onchange='sb_PropChange(this, "color")'>
                                                                {$DropDowns['color_selector']}
                                                        </select>
                                                        <select name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
                                                                {$DropDowns['font_selector']}
                                                        </select>

and add this before:

Code:

<if condition="in_array($bbuserinfo['usergroupid'], array(numbers of usergroupID's seperated by comma))">
..if you want to restrict the options to a sertain number of usergropus or

Code:

<if condition="in_array($bbuserinfo['userid'], array(numbers of userID's seperated by comma))">
..if you want to restrict the options to a sertain number of users

Don't forget to add </if> after the color and font code !



yoursite.com/admcp -> vBulletin Settings -> vBshout Options -> vBShout Position


Thank You

Hangout 02-19-2006 04:28 PM

I'v just installed this but where abouts do i go to change the options like in the screenshots? cos when i installed it all it said was Loading...... and thats it nothing else

TeaTree 02-19-2006 06:06 PM

Does anyone know any vbshout codes such as /me ?

Thanks:D

furst 02-20-2006 01:52 AM

Is it possible to display the same shoutbox on two different sites?

username12 02-20-2006 02:37 AM

I was concerned about this originally, but my forum activity has actually increased since I installed it. Despite a few thousand shouts a day, people are discussing the features and going to check them out. Some people are slowing down in posting, but it seems to be helping overall so far. Server loads haven't been impacted at all.

eNforce 02-20-2006 08:30 AM

I'm trying to set this up with eBux/eStore so members can buy a secondary usergroup to view the shoutbox.

I enter every single usergroup into the banned area except for a custom usergroup setup to be able to view the shoutbox, well even if a user is in this custom group their primary usergroup overides the custom so the the shoutbox is still not viewable.

Is there a way around this?

SHD Born2Fight 02-20-2006 11:24 AM

Thank you for this great hack!

But one problem: Opera 9 Beta Users cant scroll in the Shoutbox :surprised:

VBUsers 02-20-2006 05:11 PM

disregard. great hack! thanks for the help

Holidazed 02-21-2006 12:49 PM

When not logged in on my site, I get the following error on my shoutbox:
-------------------------------------
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288
-------------------------------------
See for yourself at http://www.hidingplace.com/vbb350/

Ideas?

Luggruff 02-21-2006 04:33 PM

post withdrawn !

bashy 02-21-2006 04:39 PM

Hi

Type /prune in the actual shoutbox no reason to go into the admincp

S@NL - BlackBik 02-21-2006 05:41 PM

Quote:

Originally Posted by bitg
When not logged in on my site, I get the following error on my shoutbox:
-------------------------------------
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288
-------------------------------------
See for yourself at http://www.hidingplace.com/vbb350/

Ideas?

Look at this post to solve that problem. It works ;)

Holidazed 02-21-2006 06:34 PM

Quote:

Originally Posted by S@NL - BlackBik
Look at this post to solve that problem. It works ;)

Thank you. That resolved it.

DeathMONGER 02-21-2006 08:48 PM

two ideas for it:

an in-thread abilty to 'advertise post'. it would be a little button in a thread taht, when clicked, auto enters a message into the shoutbox saying like "/me suggests checking out thread [url="thread location"]<Thread Title>{/url], by <Author>


there also needs to be a way to disable the million IRC chat things such as <blink> and /me and everything else from the public. its so obnoxious. tymuch

Rickie3 02-21-2006 08:53 PM

i have a question i have the shoutbox on the main forum index page,what i was wondering i have hidden private forums and a few of my members have requested a private shout box under that private forum is this possiable to do?so i what i'm asking can i have a public shoutbox for all members as well as a private shoutbox for hidden forums

CoreIssue 02-22-2006 08:27 PM

This may have been asked a bunch, but there are just too many posts to dig through.

We have a lot of smilies. Is there any way to have a more smilies function rather than rotating through them randomly?

Thanks!

Weapon-x 02-22-2006 09:25 PM

How do you make the vbshout box on a totally different page?

CommunityZ 02-22-2006 10:46 PM

Is it possible to set the shoutbox didn't appear to guest/visitor and how?

cOuNtErFiET 02-22-2006 11:29 PM

yea in the options put in the usergroups that you want banned from it? i did that on my site and i think that worked they can't see it

lucky64 02-23-2006 01:03 AM

Shortly after installing this, I noticed the birthdays from the forum home dissapeared...

I tried disabling the plugin, but it's still not coming back.

My users told me that they were still there after the shoutbox was installed, but dissapeared a day or so after..


All times are GMT. The time now is 04:04 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03709 seconds
  • Memory Usage 1,834KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete