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 on your vBadvanced CMPS v2! (https://vborg.vbsupport.ru/showthread.php?t=97497)

hawork 10-15-2006 03:34 PM

I'm testing it in v3.6.2 and it seems to work smoothly!

Thank you very much!

silks 10-17-2006 09:12 PM

hi - i have had this installed 3.6.2 on one skin but installed a new one and now it stays minimised in that style - can any one tell me what to do please?

BaselineAce 10-19-2006 01:41 PM

AJAX doesn't work in Safari. Also, I cannot get the box to display correctly (height is distorted).

anoojgeorge 10-19-2006 04:09 PM

please helpppppppppppppppppppppppp it ++++edup my homepage i unstalled it and deleted the module and all the ++++ing files but it still on my page

Trana 10-19-2006 09:56 PM

Quote:

Originally Posted by anoojgeorge
please helpppppppppppppppppppppppp it ++++edup my homepage i unstalled it and deleted the module and all the ++++ing files but it still on my page

Restore the site from your backup or post an error message here.

midirtrider 10-23-2006 04:48 PM

Quote:

Originally Posted by Trana
Restore the site from your backup or post an error message here.

which hopefully you made a backup :D




... I have a quick question.. The shoutbox in my VBa is now missing the smilies tab, and the text colors tab.. is there a way to integrate these back in?

my members really liked using diffrent colors in shout and smilies as well..


by the way thanks for all your hard work.. love the shout box as a module!!

stonner 11-11-2006 05:04 PM

hi,

ich habe vbshout im /forum und cmps im root-verzeichnis.

habe im template vbshout.php ersetzt durch forum/vbshout.php. das funktioniert. Jedoch, wenn man auf dem Portal auf einen benutzernamen klickt, ist der link noch immer falsch:

http://www.schuelerforum.net/member.php?u=684

statt

http://www.schuelerforum.net/forum/member.php?u=684

wo kann ich das korrigieren?

Vielen dank!

sduckie2k5 11-14-2006 11:09 PM

Quote:

Originally Posted by stonner (Post 1114863)
hi,

ich habe vbshout im /forum und cmps im root-verzeichnis.

habe im template vbshout.php ersetzt durch forum/vbshout.php. das funktioniert. Jedoch, wenn man auf dem Portal auf einen benutzernamen klickt, ist der link noch immer falsch:

http://www.schuelerforum.net/member.php?u=684

statt

http://www.schuelerforum.net/forum/member.php?u=684

wo kann ich das korrigieren?

Vielen dank!

Dont speak the language but looks to me like he has the same problem I do, shoutbox works but the members links arent prefixed with the forum. How can I fix this as well? Thankyou in advance


Found my own answer. If anyone else wants to know, add the prefix in the forumhome_vbshout_shout template in front of /member.php at the beginning of the code.

stud 11-16-2006 04:47 PM

Great Mod! A few questions:

a. How do you include special characters, like quotation marks. Currently, they show up as "
[edit] Fixed - just needed an upgraded v2.1 version of vbShout

b. Any way of limiting what is shown? Either remove or better yet, RESIZE images?
How about a way to trim URLs so that very long ones don't make the shoutbox resize so drastically.

c. Any chance of adding the "Who's shouting" mod to it, possibly underneath so as not to disrupt the sizing of the box?
https://vborg.vbsupport.ru/showthrea...ght=vbshoutwol

buurman 11-30-2006 08:19 AM

I searched a lot, because I only got LOADING on CMPS shoutbox, but found the solution.
I think it is posted before, but could not find it.

In your adv_portal_vbshout template, replace al the links to "vbshout.php" with /forum/vbshout.php or /forums/vbshout.php

Wroks like a charm, thx for the great plugin. *clicks install*

stud 11-30-2006 04:58 PM

buurman, just a quick note - this is listed in the Official directions, under Step 5.

FleaBag - no planned updates, eh?

buurman 12-01-2006 10:07 AM

Quote:

Originally Posted by stud (Post 1128823)
buurman, just a quick note - this is listed in the Official directions, under Step 5.

FleaBag - no planned updates, eh?

I see, but clearly was "the template" not enough information, for noobs like me :)
Maybe a good idea to replace it with "the template adv_portal_vbshout" because I see a lot of questions about the "loading" thingie...

Just an idea...

Cynthdivide 12-12-2006 01:24 PM

Well done FleaBag and Scotty2k. This is almost an essential for anyone running with the vba cmps.

buurman 12-14-2006 02:34 PM

Its a much asked question, but cant seem to find the answer, sorry...

How can I enable a timestamp in the shoutbox?

Shazz 12-14-2006 08:29 PM

Anyone confirm on 2.1 flatout?

Wordplay 01-06-2007 09:58 PM

thank you, is there a way to get a character split? because people post words into my shoutbox that are too long, like links.

theczech 01-15-2007 12:29 AM

Quote:

Originally Posted by Trana (Post 886455)
I turned on the scroll bars but they look horrible. Does anyone know how to turn on ONLY the vertical scroll bar so people can scroll through older messages?

Also, I am trying to get the timestamps to work in the side panel module.

I can get the time in there with:

<span style='float:right'> {$Shout['time']} </span>

but the time is always formatted "Today at: xxxxxxx". Does anyone have a suggestion for how to format it to #:## AM/PM?

Thanks!

TO CHANGE THE TIME FORMAT:

- Open your vbshout.php

- Locate this code:
Code:

function buildTime($time = TIMENOW)
{
        global $vbulletin;

        $Time  = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->options['yestoday']);
        $Time .= ' ';
        $Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->options['yestoday']);

        return $Time;

- If you want to disable the "x minutes ago" part, then put // in front of the these lines like this:
Code:

//      $Time  = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->options['yestoday']);
//        $Time .= ' ';

- If you want to change the time format for the [xx:xx am] part of the timestamp, change this line:
Code:

$Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->options['yestoday']);
to something like this:
Code:

        $Time .= vbdate('PUT_YOUR_DESIRED_FORMAT_HERE', $time, $vbulletin->options['yestoday']);
Replace 'PUT_YOUR_DESIRED_FORMAT_HERE following this simple guide.

Mine says
'g:ia' which makes a timestamp that looks for example like this: '6:55pm'.

AS ALWAYS, YOU SHOULD MAKE A COPY OF YOUR ORIGINAL FILES BEFORE ATTEMPTING ANY CHANGES TO YOUR WORKING CODE!!!

akulion 01-29-2007 09:03 AM

thanks for this

even though for newbies like me u should mention that the template to include to put vbshout

lol i was totally confused for like 10 mins before i eventually got it
thanks

Pearl 02-04-2007 03:23 PM

Thanks for this hack its really nice.
I edited the template to make the smiles, colours and options on mainpage work I hope you dont mind :)

View it here

Http://www.clanlife.eu

Rainingman 02-05-2007 06:29 AM

Can you discribe how you changed the template for showing the smilies, colors and options? Thank you very much

ffak 02-06-2007 06:48 AM

Quote:

Originally Posted by Pearl (Post 1174483)
Thanks for this hack its really nice.
I edited the template to make the smiles, colours and options on mainpage work I hope you dont mind :)

View it here

Http://www.clanlife.eu

Can we see the modified template please for adding smilies buttons?

thx :)

Pearl 02-06-2007 03:39 PM

It says the code is to long to post?

Renada 02-06-2007 04:06 PM

Quote:

Originally Posted by Pearl (Post 1176052)
It says the code is to long to post?

Hi Pearl,

Try adding it as an attachment if the code is too long. :)

Regards & thanks,
Renada

ffak 02-08-2007 06:13 AM

Please can you post you template?

Pearl 02-08-2007 04:48 PM

This will only work when your cmps and forum are not in the same location.

notes: After refresh format bar always goes back to default.
:The code below is the upper code of the entire code that means U only chnage the code until u hit <script type='text/javascript'>
<!--

Below that use the code orginally posted in this thread.

goodluck.

Code:

<td class="alt1" align="left" width="100%">
        <form action="forums/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' />
<div id='shout_emo' style='display:none'>
                <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
                <tr>
                        <td class="tcat" align="center">
                                Emoticons
                        </td>
                </tr>
                <tr>
                        <td class='alt2' width='100%' height='100%' align='center' valign='top'>
                                <a href="#" onclick="return sb_Smilie(':)')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_smile.gif" alt="Smile" border="0" /></a> <a href="#" onclick="return sb_Smilie(':whaaz')"><img src="http://www.clanlife.eu/forums/images/smilies/whatever.gif" alt="whatever" border="0" /></a> <a href="#" onclick="return sb_Smilie(':shuffle')"><img src="http://www.clanlife.eu/forums/images/smilies/shuffle.gif" alt="shuffle" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie('nod')"><img src="http://www.clanlife.eu/forums/images/smilies/nod1.gif" alt=":nod" border="0" /></a> <a href="#" onclick="return sb_Smilie(':?:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_question.gif" alt="Question" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie(':p')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_bleh.gif" alt="Bleh" border="0" /></a>
                        </td>
                </tr>
                </table>
        <br />
</div>
       



        <if condition="!$vboptions[shout_editor_position]">
                <if condition="$bbuserinfo[userid] > 0">
                        <table width='100%' border='0' cellpadding='0' cellspacing='0'>
                                <tr>
                                        <td width='100%'>
                                                <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>
                                        <div style="height: 2px"></div>
                                        </if>
                                </if>
                                        <div id="vbshout" style="overflow:auto;height:{$vboptions['shout_box_height']}px;width:100%;">
                                                Loading...
                                        </div>
                                <if condition="$vboptions[shout_editor_position]">
                                        <if condition="$bbuserinfo[userid] > 0">
                                        <div style="height: 2px"></div>
                                        <table width='100%' border='0' cellpadding='0' cellspacing='0'>
                                        <tr>
                                                <td width='100%'>
                                                        <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" />
                                                        <input type='button' class='button' value='Clear' onclick='sb_Clear()' />
                                                        <input type='button' class='button' value='Smilies' onclick='sb_Smilies(this)' />
                                                        <input id='sb_mem_bold' type='button' class='button' style='font-weight:bold' value='B' onclick='sb_PropChange_Button(this, "fontWeight")' />
                                                        <input id='sb_mem_underline' type='button' class='button' style='text-decoration:underline' value='U' onclick='sb_PropChange_Button(this, "textDecoration")' />
                                                        <input id='sb_mem_italic' type='button' class='button' style='font-style:italic' value='I' onclick='sb_PropChange_Button(this, "fontStyle")' />
                                                        <select id='sb_color_mem' name='font_color' onchange='sb_PropChange(this, "color")'>
                                                                <option value="Default">Color [Default]</option>
<option value="#000000" style="color:#000000;">#000000</option>
<option value="#000033" style="color:#000033;">#000033</option>
<option value="#000066" style="color:#000066;">#000066</option>
<option value="#000099" style="color:#000099;">#000099</option>
<option value="#0000CC" style="color:#0000CC;">#0000CC</option>
<option value="#0000FF" style="color:#0000FF;">#0000FF</option>
<option value="#003300" style="color:#003300;">#003300</option>
<option value="#003333" style="color:#003333;">#003333</option>
<option value="#003366" style="color:#003366;">#003366</option>
<option value="#003399" style="color:#003399;">#003399</option>
<option value="#0033CC" style="color:#0033CC;">#0033CC</option>
<option value="#0033FF" style="color:#0033FF;">#0033FF</option>
<option value="#006600" style="color:#006600;">#006600</option>
<option value="#006633" style="color:#006633;">#006633</option>
<option value="#006666" style="color:#006666;">#006666</option>
<option value="#006699" style="color:#006699;">#006699</option>
<option value="#0066CC" style="color:#0066CC;">#0066CC</option>
<option value="#0066FF" style="color:#0066FF;">#0066FF</option>
<option value="#009900" style="color:#009900;">#009900</option>
<option value="#009933" style="color:#009933;">#009933</option>
<option value="#009966" style="color:#009966;">#009966</option>
<option value="#009999" style="color:#009999;">#009999</option>
<option value="#0099CC" style="color:#0099CC;">#0099CC</option>
<option value="#0099FF" style="color:#0099FF;">#0099FF</option>
<option value="#00CC00" style="color:#00CC00;">#00CC00</option>
<option value="#00CC33" style="color:#00CC33;">#00CC33</option>
<option value="#00CC66" style="color:#00CC66;">#00CC66</option>
<option value="#00CC99" style="color:#00CC99;">#00CC99</option>
<option value="#00CCCC" style="color:#00CCCC;">#00CCCC</option>
<option value="#00CCFF" style="color:#00CCFF;">#00CCFF</option>
<option value="#00FF00" style="color:#00FF00;">#00FF00</option>
<option value="#00FF33" style="color:#00FF33;">#00FF33</option>
<option value="#00FF66" style="color:#00FF66;">#00FF66</option>
<option value="#00FF99" style="color:#00FF99;">#00FF99</option>
<option value="#00FFCC" style="color:#00FFCC;">#00FFCC</option>
<option value="#00FFFF" style="color:#00FFFF;">#00FFFF</option>
<option value="#330000" style="color:#330000;">#330000</option>
<option value="#330033" style="color:#330033;">#330033</option>
<option value="#330066" style="color:#330066;">#330066</option>
<option value="#330099" style="color:#330099;">#330099</option>
<option value="#3300CC" style="color:#3300CC;">#3300CC</option>
<option value="#3300FF" style="color:#3300FF;">#3300FF</option>
<option value="#333300" style="color:#333300;">#333300</option>
<option value="#333333" style="color:#333333;">#333333</option>
<option value="#333366" style="color:#333366;">#333366</option>
<option value="#333399" style="color:#333399;">#333399</option>
<option value="#3333CC" style="color:#3333CC;">#3333CC</option>
<option value="#3333FF" style="color:#3333FF;">#3333FF</option>
<option value="#336600" style="color:#336600;">#336600</option>
<option value="#336633" style="color:#336633;">#336633</option>
<option value="#336666" style="color:#336666;">#336666</option>
<option value="#336699" style="color:#336699;">#336699</option>
<option value="#3366CC" style="color:#3366CC;">#3366CC</option>
<option value="#3366FF" style="color:#3366FF;">#3366FF</option>
<option value="#339900" style="color:#339900;">#339900</option>
<option value="#339933" style="color:#339933;">#339933</option>
<option value="#339966" style="color:#339966;">#339966</option>
<option value="#339999" style="color:#339999;">#339999</option>
<option value="#3399CC" style="color:#3399CC;">#3399CC</option>
<option value="#3399FF" style="color:#3399FF;">#3399FF</option>
<option value="#33CC00" style="color:#33CC00;">#33CC00</option>
<option value="#33CC33" style="color:#33CC33;">#33CC33</option>
<option value="#33CC66" style="color:#33CC66;">#33CC66</option>
<option value="#33CC99" style="color:#33CC99;">#33CC99</option>
<option value="#33CCCC" style="color:#33CCCC;">#33CCCC</option>
<option value="#33CCFF" style="color:#33CCFF;">#33CCFF</option>
<option value="#33FF00" style="color:#33FF00;">#33FF00</option>
<option value="#33FF33" style="color:#33FF33;">#33FF33</option>
<option value="#33FF66" style="color:#33FF66;">#33FF66</option>
<option value="#33FF99" style="color:#33FF99;">#33FF99</option>
<option value="#33FFCC" style="color:#33FFCC;">#33FFCC</option>
<option value="#33FFFF" style="color:#33FFFF;">#33FFFF</option>
<option value="#660000" style="color:#660000;">#660000</option>
<option value="#660033" style="color:#660033;">#660033</option>
<option value="#660066" style="color:#660066;">#660066</option>
<option value="#660099" style="color:#660099;">#660099</option>
<option value="#6600CC" style="color:#6600CC;">#6600CC</option>
<option value="#6600FF" style="color:#6600FF;">#6600FF</option>
<option value="#663300" style="color:#663300;">#663300</option>
<option value="#663333" style="color:#663333;">#663333</option>
<option value="#663366" style="color:#663366;">#663366</option>
<option value="#663399" style="color:#663399;">#663399</option>
<option value="#6633CC" style="color:#6633CC;">#6633CC</option>
<option value="#6633FF" style="color:#6633FF;">#6633FF</option>
<option value="#666600" style="color:#666600;">#666600</option>
<option value="#666633" style="color:#666633;">#666633</option>
<option value="#666666" style="color:#666666;">#666666</option>
<option value="#666699" style="color:#666699;">#666699</option>
<option value="#6666CC" style="color:#6666CC;">#6666CC</option>
<option value="#6666FF" style="color:#6666FF;">#6666FF</option>
<option value="#669900" style="color:#669900;">#669900</option>
<option value="#669933" style="color:#669933;">#669933</option>
<option value="#669966" style="color:#669966;">#669966</option>
<option value="#669999" style="color:#669999;">#669999</option>
<option value="#6699CC" style="color:#6699CC;">#6699CC</option>
<option value="#6699FF" style="color:#6699FF;">#6699FF</option>
<option value="#66CC00" style="color:#66CC00;">#66CC00</option>
<option value="#66CC33" style="color:#66CC33;">#66CC33</option>
<option value="#66CC66" style="color:#66CC66;">#66CC66</option>
<option value="#66CC99" style="color:#66CC99;">#66CC99</option>
<option value="#66CCCC" style="color:#66CCCC;">#66CCCC</option>
<option value="#66CCFF" style="color:#66CCFF;">#66CCFF</option>
<option value="#66FF00" style="color:#66FF00;">#66FF00</option>
<option value="#66FF33" style="color:#66FF33;">#66FF33</option>
<option value="#66FF66" style="color:#66FF66;">#66FF66</option>
<option value="#66FF99" style="color:#66FF99;">#66FF99</option>
<option value="#66FFCC" style="color:#66FFCC;">#66FFCC</option>
<option value="#66FFFF" style="color:#66FFFF;">#66FFFF</option>
<option value="#990000" style="color:#990000;">#990000</option>
<option value="#990033" style="color:#990033;">#990033</option>
<option value="#990066" style="color:#990066;">#990066</option>
<option value="#990099" style="color:#990099;">#990099</option>
<option value="#9900CC" style="color:#9900CC;">#9900CC</option>
<option value="#9900FF" style="color:#9900FF;">#9900FF</option>
<option value="#993300" style="color:#993300;">#993300</option>
<option value="#993333" style="color:#993333;">#993333</option>
<option value="#993366" style="color:#993366;">#993366</option>
<option value="#993399" style="color:#993399;">#993399</option>
<option value="#9933CC" style="color:#9933CC;">#9933CC</option>
<option value="#9933FF" style="color:#9933FF;">#9933FF</option>
<option value="#996600" style="color:#996600;">#996600</option>
<option value="#996633" style="color:#996633;">#996633</option>
<option value="#996666" style="color:#996666;">#996666</option>
<option value="#996699" style="color:#996699;">#996699</option>
<option value="#9966CC" style="color:#9966CC;">#9966CC</option>
<option value="#9966FF" style="color:#9966FF;">#9966FF</option>
<option value="#999900" style="color:#999900;">#999900</option>
<option value="#999933" style="color:#999933;">#999933</option>
<option value="#999966" style="color:#999966;">#999966</option>
<option value="#999999" style="color:#999999;">#999999</option>
<option value="#9999CC" style="color:#9999CC;">#9999CC</option>
<option value="#9999FF" style="color:#9999FF;">#9999FF</option>
<option value="#99CC00" style="color:#99CC00;">#99CC00</option>
<option value="#99CC33" style="color:#99CC33;">#99CC33</option>
<option value="#99CC66" style="color:#99CC66;">#99CC66</option>
<option value="#99CC99" style="color:#99CC99;">#99CC99</option>
<option value="#99CCCC" style="color:#99CCCC;">#99CCCC</option>
<option value="#99CCFF" style="color:#99CCFF;">#99CCFF</option>
<option value="#99FF00" style="color:#99FF00;">#99FF00</option>
<option value="#99FF33" style="color:#99FF33;">#99FF33</option>
<option value="#99FF66" style="color:#99FF66;">#99FF66</option>
<option value="#99FF99" style="color:#99FF99;">#99FF99</option>
<option value="#99FFCC" style="color:#99FFCC;">#99FFCC</option>
<option value="#99FFFF" style="color:#99FFFF;">#99FFFF</option>
<option value="#CC0000" style="color:#CC0000;">#CC0000</option>
<option value="#CC0033" style="color:#CC0033;">#CC0033</option>
<option value="#CC0066" style="color:#CC0066;">#CC0066</option>
<option value="#CC0099" style="color:#CC0099;">#CC0099</option>
<option value="#CC00CC" style="color:#CC00CC;">#CC00CC</option>
<option value="#CC00FF" style="color:#CC00FF;">#CC00FF</option>
<option value="#CC3300" style="color:#CC3300;">#CC3300</option>
<option value="#CC3333" style="color:#CC3333;">#CC3333</option>
<option value="#CC3366" style="color:#CC3366;">#CC3366</option>
<option value="#CC3399" style="color:#CC3399;">#CC3399</option>
<option value="#CC33CC" style="color:#CC33CC;">#CC33CC</option>
<option value="#CC33FF" style="color:#CC33FF;">#CC33FF</option>
<option value="#CC6600" style="color:#CC6600;">#CC6600</option>
<option value="#CC6633" style="color:#CC6633;">#CC6633</option>
<option value="#CC6666" style="color:#CC6666;">#CC6666</option>
<option value="#CC6699" style="color:#CC6699;">#CC6699</option>
<option value="#CC66CC" style="color:#CC66CC;">#CC66CC</option>
<option value="#CC66FF" style="color:#CC66FF;">#CC66FF</option>
<option value="#CC9900" style="color:#CC9900;">#CC9900</option>
<option value="#CC9933" style="color:#CC9933;">#CC9933</option>
<option value="#CC9966" style="color:#CC9966;">#CC9966</option>
<option value="#CC9999" style="color:#CC9999;">#CC9999</option>
<option value="#CC99CC" style="color:#CC99CC;">#CC99CC</option>
<option value="#CC99FF" style="color:#CC99FF;">#CC99FF</option>
<option value="#CCCC00" style="color:#CCCC00;">#CCCC00</option>
<option value="#CCCC33" style="color:#CCCC33;">#CCCC33</option>
<option value="#CCCC66" style="color:#CCCC66;">#CCCC66</option>
<option value="#CCCC99" style="color:#CCCC99;">#CCCC99</option>
<option value="#CCCCCC" style="color:#CCCCCC;">#CCCCCC</option>
<option value="#CCCCFF" style="color:#CCCCFF;">#CCCCFF</option>
<option value="#CCFF00" style="color:#CCFF00;">#CCFF00</option>
<option value="#CCFF33" style="color:#CCFF33;">#CCFF33</option>
<option value="#CCFF66" style="color:#CCFF66;">#CCFF66</option>
<option value="#CCFF99" style="color:#CCFF99;">#CCFF99</option>
<option value="#CCFFCC" style="color:#CCFFCC;">#CCFFCC</option>
<option value="#CCFFFF" style="color:#CCFFFF;">#CCFFFF</option>
<option value="#FF0000" style="color:#FF0000;">#FF0000</option>
<option value="#FF0033" style="color:#FF0033;">#FF0033</option>
<option value="#FF0066" style="color:#FF0066;">#FF0066</option>
<option value="#FF0099" style="color:#FF0099;">#FF0099</option>
<option value="#FF00CC" style="color:#FF00CC;">#FF00CC</option>
<option value="#FF00FF" style="color:#FF00FF;">#FF00FF</option>
<option value="#FF3300" style="color:#FF3300;">#FF3300</option>
<option value="#FF3333" style="color:#FF3333;">#FF3333</option>
<option value="#FF3366" style="color:#FF3366;">#FF3366</option>
<option value="#FF3399" style="color:#FF3399;">#FF3399</option>
<option value="#FF33CC" style="color:#FF33CC;">#FF33CC</option>
<option value="#FF33FF" style="color:#FF33FF;">#FF33FF</option>
<option value="#FF6600" style="color:#FF6600;">#FF6600</option>
<option value="#FF6633" style="color:#FF6633;">#FF6633</option>
<option value="#FF6666" style="color:#FF6666;">#FF6666</option>
<option value="#FF6699" style="color:#FF6699;">#FF6699</option>
<option value="#FF66CC" style="color:#FF66CC;">#FF66CC</option>
<option value="#FF66FF" style="color:#FF66FF;">#FF66FF</option>
<option value="#FF9900" style="color:#FF9900;">#FF9900</option>
<option value="#FF9933" style="color:#FF9933;">#FF9933</option>
<option value="#FF9966" style="color:#FF9966;">#FF9966</option>
<option value="#FF9999" style="color:#FF9999;">#FF9999</option>
<option value="#FF99CC" style="color:#FF99CC;">#FF99CC</option>
<option value="#FF99FF" style="color:#FF99FF;">#FF99FF</option>
<option value="#FFCC00" style="color:#FFCC00;">#FFCC00</option>
<option value="#FFCC33" style="color:#FFCC33;">#FFCC33</option>
<option value="#FFCC66" style="color:#FFCC66;">#FFCC66</option>
<option value="#FFCC99" style="color:#FFCC99;">#FFCC99</option>
<option value="#FFCCCC" style="color:#FFCCCC;">#FFCCCC</option>
<option value="#FFCCFF" style="color:#FFCCFF;">#FFCCFF</option>
<option value="#FFFF00" style="color:#FFFF00;">#FFFF00</option>
<option value="#FFFF33" style="color:#FFFF33;">#FFFF33</option>
<option value="#FFFF66" style="color:#FFFF66;">#FFFF66</option>
<option value="#FFFF99" style="color:#FFFF99;">#FFFF99</option>
<option value="#FFFFCC" style="color:#FFFFCC;">#FFFFCC</option>
<option value="#FFFFFF" style="color:#FFFFFF;">#FFFFFF</option>

                                                        </select>
                                                        <select id='sb_font_mem' name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
                                                                <option value="Default">Font Face [Default]</option>
<option value="Arial">Arial</option>
<option value="Arial Black">Arial Black</option>
<option value="Arial Narrow">Arial Narrow</option>
<option value="Book Antiqua">Book Antiqua</option>
<option value="Century Gothic">Century Gothic</option>
<option value="Comic Sans MS">Comic Sans MS</option>
<option value="Courier New">Courier New</option>
<option value="Fixedsys">Fixedsys</option>
<option value="Franklin Gothic Medium">Franklin Gothic Medium</option>
<option value="Garamond">Garamond</option>
<option value="Georgia">Georgia</option>
<option value="Impact">Impact</option>
<option value="Lucida Console">Lucida Console</option>
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
<option value="Microsoft Sans Serif">Microsoft Sans Serif</option>
<option value="Palatino Linotype">Palatino Linotype</option>
<option value="System">System</option>
<option value="Tahoma">Tahoma</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Trebuchet MS">Trebuchet MS</option>
<option value="Verdana">Verdana</option>
</if></if>
                                                        </select>
                                                       
                                                </td>
                                        </tr>
                                        </table>
                                       
                               
                                </td>
                        </tr>
                </tbody>


</form>
                                </td>

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


Renada 02-08-2007 05:49 PM

Quote:

Originally Posted by Pearl (Post 1177677)
This will only work when your cmps and forum are not in the same location.

notes: After refresh format bar always goes back to default.
:The code below is the upper code of the entire code that means U only chnage the code until u hit <script type='text/javascript'>
<!--

Below that use the code orginally posted in this thread.

goodluck.

Code:

<td class="alt1" align="left" width="100%">
    <form action="forums/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' />
<div id='shout_emo' style='display:none'>
        <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
        <tr>
            <td class="tcat" align="center">
                Emoticons
            </td>
        </tr>
        <tr>
            <td class='alt2' width='100%' height='100%' align='center' valign='top'>
                <a href="#" onclick="return sb_Smilie(':)')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_smile.gif" alt="Smile" border="0" /></a> <a href="#" onclick="return sb_Smilie(':whaaz')"><img src="http://www.clanlife.eu/forums/images/smilies/whatever.gif" alt="whatever" border="0" /></a> <a href="#" onclick="return sb_Smilie(':shuffle')"><img src="http://www.clanlife.eu/forums/images/smilies/shuffle.gif" alt="shuffle" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie('nod')"><img src="http://www.clanlife.eu/forums/images/smilies/nod1.gif" alt=":nod" border="0" /></a> <a href="#" onclick="return sb_Smilie(':?:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_question.gif" alt="Question" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie(':p')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_bleh.gif" alt="Bleh" border="0" /></a>
            </td>
        </tr>
        </table>
    <br />
</div>


Hi Pearl,

Thank you very much for posting this. In the script you have all the smilies hard coded on your site - do we have to hard code every smilie to make them work? Right now they're all linked to you :)

Regards,
Renada

ffak 02-09-2007 06:39 AM

Thanks Pearl.

Sure if we could have 5 random smileys instead of 10 hardcoded ones it will be ok! :D

Pearl 02-10-2007 09:15 AM

link then to your sites forum/smilies folder:p

mat.knott 02-23-2007 03:47 PM

since installing vbshout, my site seems to crash and no link will work. i have to close IE and restart it for it to work again... what could cause this?

also on my vbadvanced home page it just says loading... how did you guys get round this as isee some have fixed it..

vbshout 2.01? where did you get this from

The Wall 02-28-2007 04:18 AM

hey any word on this working with vB 3.6.4 and vBshout 2.1?

MelH 03-06-2007 09:57 PM

I have this (v2.1) working with vB 3.6.4 and vBadvanced CMPS.

However -

It works correctly on the home page and other pages that I've added to the Site Nav module but when you click a header link eg. 'Calendar' it just displays the shout input box, shout button and the word 'loading' under that. Shouts that are visible on the home page are no longer visible and when you try to add a shout nothing happens.

The CMPS file is in my root and the vB files are in another directory. I've found and changed the paths (3) in the template file as it says in the instructions.

Does anyone have any suggestions?

localhost 03-07-2007 03:54 PM

i have vba index.php in the root of the site and the forum files in a directory called forum.

I got everything working accept the username links to http://www.mysite.co.uk/member.php and not http://www.mysite.co.uk/forum/member.php

what would i need to change to get this working thanks?

richard4339 03-08-2007 12:45 AM

Okay, two questions, if there's anyone around to look.

1. I used the side module version on http://www.squarextreme.com. The input and submit fields are showing off to the side. How can I correct this?

2. I've noticed that this takes the timestamp away from the posts, which is obviously neccessary for the sidebar. Can it be kept for the forumhome version?

Edit: localhost, you probably have the link to your forums wrong. You might want to double-check your settings in both the vb options and vba options.

localhost 03-08-2007 06:43 PM

all links are correct

Black Tiger 03-09-2007 01:07 AM

I'm running VBA and VB 3.6.5, having the same problem as in message #64.
When I choose the editor position blow the messages it moves completely to the right side almost out of range.

When I choose above messages, all is fine.
I have it on a right side column.

How can I fix this?

richard4339 03-12-2007 08:41 PM

Quote:

Originally Posted by Black Tiger (Post 1199253)
I'm running VBA and VB 3.6.5, having the same problem as in message #64.
When I choose the editor position blow the messages it moves completely to the right side almost out of range.

When I choose above messages, all is fine.
I have it on a right side column.

How can I fix this?


Sounds like what was happening to me. I'm going to try moving the bar to the top to see if it fixes my problem.

Black Tiger 03-13-2007 09:10 PM

And have another problem now. I set the height of the vbshout in the vbshout main settings to a height of 600 pixels like my adsense is too.
But it does not matter, even if I set it to 300, it just gets longer and longer. Does anybody know how to fix this?

ABeautifulBrown 03-16-2007 05:12 AM

the vbshout on the regular homepage uses the color you used last. the cmps doesn't- how can I get this to work?

richard4339 03-16-2007 06:05 AM

Causing me far too much uproar. Uninstalling.

Black Tiger 03-16-2007 02:52 PM

It would be nice if the coder could give a "read" confirm so we know he will be working on the issue's.


All times are GMT. The time now is 07:44 PM.

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.01812 seconds
  • Memory Usage 1,960KB
  • 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
  • (6)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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