View Full Version : Forum Display Enhancements - Forumdisplay Warning Message
Kirk Y
12-15-2007, 10:00 PM
Forumdisplay Warning Message
What does this do?
This modifications adds the ability to give specific forums "warning messages" that are shown to the user before he/she enters the forum. For example: the user enters a forum that is intended for adults; the user enters this forum, is presented with the warning message explaining as much, and he/she can then choose to proceed into the forum or return back to where they were.
Installation
1. Import the Product XML and upload the two images to your /images/misc folder.
2. Configure the Warning Message through the Forum Manager.
3. Setup the Global Options through the vBulletin Options menu.
Features
-Customizable message per forum
-Control background color of pop-up
-Control opacity of background layer behind pop-up
-Cookie options allow you to enable users to permanently disable messages or show them once per session
-Exclude specific Usergroups from having to view pop-ups
-Control dimensions (height and width) and coordinate position of pop-up
Version History
1.00 - Initial Release
1.01 - Added table prefixes
1.02 - Added option for cookie control
1.03 - Fixed session cookie bug; added ability to exclude usergroups from warning pop-ups; changed data type for better compatibility
1.04 - Added option for height/width and position control of pop-up
Please click Install if you use this modification
dtv100
12-16-2007, 04:48 AM
thank you for share this addon is nice will test later .
G0F0RBR0KE
12-16-2007, 04:52 AM
Thank you very much. This could be good for future reference.
Magnumutz
12-16-2007, 04:56 AM
Whoa... this is reaaaaly cool dude.
*Clicks Install*
Hi,
I'm getting this error:
Database error in vBulletin 3.6.7:
Invalid SQL:
ALTER TABLE `forum` ADD `kirky_splash` VARCHAR( 1500 ) NOT NULL;
MySQL Error : Table 'blog.forum' doesn't exist
Error Number : 1146
jgommel
12-16-2007, 05:32 AM
When installing the product, you get a database error... I dug into your product xml and found a few things you want to change.
The install and uninstall code only worked after making these changes.
INSTALLCODE
Look for the following...
<installcode><![CDATA[$db->query_write("ALTER TABLE `forum` ADD `kirky_splash` VARCHAR( 1500 ) NOT NULL");]]></installcode>
...and change it to
<installcode><![CDATA[$db->query("ALTER TABLE `" . TABLE_PREFIX . "forum` ADD `kirky_splash` VARCHAR( 1500 ) NOT NULL");]]></installcode>
UNINSTALLCODE
Look for the following...
<uninstallcode><![CDATA[$db->query_write("ALTER TABLE `forum` DROP `kirky_splash`");]]></uninstallcode>...and change it to
<uninstallcode><![CDATA[$db->query("ALTER TABLE `" . TABLE_PREFIX . "forum` DROP `kirky_splash`");]]></uninstallcode>
The changes here, are for those of us who are using 3rd party styles and have more than one images directory. The way you have it, the user would have to alter the code to point to the correct misc directory.
MISC IMAGES PATH
Look for the following...
defineheader: '<div style="padding: 5px; color: white; font: bold 16px Verdana; background: black url(images/misc/blockdefault.gif) center center repeat-x;border-bottom:1px solid #373737;"><a style="position:absolute; top: 2px; right: 5px" href="javascript:splashpage.closeit()" title="Skip to Content"><img src="images/misc/skip.gif" border="0" width="114px" height="23px" /></a>$vboptions[splashtitle]</div>',
...and change it to
defineheader: '<div style="padding: 5px; color: white; font: bold 16px Verdana; background: black url($stylevar[imgdir_misc]/blockdefault.gif) center center repeat-x;border-bottom:1px solid #373737;"><a style="position:absolute; top: 2px; right: 5px" href="javascript:splashpage.closeit()" title="Skip to Content"><img src="$stylevar[imgdir_misc]/skip.gif" border="0" width="114px" height="23px" /></a>$vboptions[splashtitle]</div>',
Kirk Y
12-16-2007, 05:38 AM
A simple "you forgot table prefixes" would have sufficed. :)
Working fine now :)
thx !
yahoooh
12-16-2007, 07:03 AM
does it appear once ?
jgommel
12-16-2007, 08:05 AM
A simple "Thanks" would have been nice too :)
PoetJA-1975
12-16-2007, 08:58 AM
Thanx :) = Nice share!
Jacquii.
Mark K
12-16-2007, 09:19 AM
Thanks for this Kirk Y, exactly what i was looking for. Great mod!
Jimandbob
12-16-2007, 01:07 PM
Installed and working perfectly.
Thanks
Doctor Death
12-16-2007, 01:27 PM
Before installing, can you answer the question of it can be made to display for a user only ONE time based upon a stored value or cookie?
I really want this but I dont want to burden users every time they open a forum.
Thank you for your efforts.
Endurer
12-16-2007, 02:39 PM
Thank you, I really need this one. :)
Kirk Y
12-16-2007, 03:02 PM
Before installing, can you answer the question of it can be made to display for a user only ONE time based upon a stored value or cookie?
I really want this but I dont want to burden users every time they open a forum.
Thank you for your efforts.
If you see my note in red, once the user clicks to continue, a cookie is set with that specific forum's id. This cookie is cleared when the user closes their browser; so they're prompted once per session per forum.
princeedward
12-16-2007, 03:14 PM
nice addon kirk...thanks for the release...good work... ;)
kollam003
12-16-2007, 03:20 PM
Great hack Kollam003 clicks install
Derek Chai
12-16-2007, 04:42 PM
Thanks I NEEDED!
iogames
12-16-2007, 04:53 PM
Quality ;)
henrikhansen
12-16-2007, 07:04 PM
Great mod.
If it is slightly extended, so that you can set the warning so it automatically leads further to the forum, it can be used for adds, contest announcements, general info, etc.
Smoothie
12-16-2007, 07:28 PM
work with 3.6.5?
Kirk Y
12-16-2007, 07:30 PM
work with 3.6.5?
Should work fine from 3.5.x and beyond.
iogames
12-16-2007, 07:32 PM
Can I in the HTML code, add a sponsorship or Ad?
Kirk Y
12-16-2007, 07:33 PM
Can I in the HTML code, add a sponsorship or Ad?
Yes, you can use HTML entities in the message.
iogames
12-16-2007, 07:48 PM
Yes, you can use HTML entities in the message.
Then Nominated! cause it has potential! :up:
4number8
12-16-2007, 08:18 PM
Does this affect the whole forum? I'd use it if I could make the message show on only the forums that I chose, Does this do that?
Thanks a lot for the share.
Kirk Y
12-16-2007, 08:33 PM
Does this affect the whole forum? I'd use it if I could make the message show on only the forums that I chose, Does this do that?
Thanks a lot for the share.
Guys, please... read the release post.
This modifications adds the ability to give specific forums "warning messages" that are shown to the user before he/she enters the forum. For example: the user enters a forum that is intended for adults; the user enters this forum, is presented with the warning message explaining as much, and he/she can then choose to proceed into the forum or return back to where they were.
Doctor Death
12-16-2007, 09:06 PM
If you see my note in red, once the user clicks to continue, a cookie is set with that specific forum's id. This cookie is cleared when the user closes their browser; so they're prompted once per session per forum.
Can this be set to NOT clear that cookie via an option?
That would be tremendously useful.... Great addition.
Kirk Y
12-16-2007, 09:19 PM
Can this be set to NOT clear that cookie via an option?
That would be tremendously useful.... Great addition.
Yes, the ability for users to request never to be shown the warning again (for each forum) via a permanent cookie will be in the next version.
valdet
12-16-2007, 09:28 PM
This is a quality mod.
Thanks for your time Kirk.
XFSImperial
12-16-2007, 09:39 PM
Yes, the ability for users to request never to be shown the warning again (for each forum) via a permanent cookie will be in the next version.
Looks like a great mod. I'll wait for the permanent cookie version :D
Doctor Death
12-16-2007, 11:46 PM
Yes, the ability for users to request never to be shown the warning again (for each forum) via a permanent cookie will be in the next version.
That is outstanding. I will wait for that one. Thanks much, very useful
shaynehammy
12-17-2007, 01:05 AM
Yeah, definitely waiting in anticipation for the next version
TheBlackPoet
12-17-2007, 01:43 AM
let me say... very nice disclaimer... i really like the fact that it dont continue to pop up for the same user unless he deletes his/her cookies.. really nice..
JohnBee
12-17-2007, 02:39 AM
Great MOD! I would love to have this on a per post basis.
Reason being, many posts have specific content and it would be great if members could alert others accordingly.
Any chance it could work at that level?
Kirk Y
12-17-2007, 02:53 AM
Great MOD! I would love to have this on a per post basis.
Reason being, many posts have specific content and it would be great if members could alert others accordingly.
Any chance it could work at that level?
Only in the instance where a single post is being viewed.
ie: https://vborg.vbsupport.ru/showpost.php?p=1402573&postcount=37
There's really no way to display this kind of warning for specific posts. I imagine it could be possible to display a warning above each postbit - but that's going beyond the intended function of this modification.
Derek Chai
12-17-2007, 03:15 AM
Can you make it so it displays when a users enters the forum like right when they type YOURFORUM.com and it pops up..
Kirk Y
12-17-2007, 03:23 AM
Can you make it so it displays when a users enters the forum like right when they type YOURFORUM.com and it pops up..
You mean your forum's index? Yeah, I suppose I can add that functionality into the next version.
dacho
12-17-2007, 07:44 AM
I do not know why, but this do not work at my place :confused:
I installed the xml, I defined informed in the specific forum and nothing happen
Mark K
12-17-2007, 08:40 AM
Wow didnt realise so many people would like this mod :p
Kirk Y
12-17-2007, 09:54 AM
I do not know why, but this do not work at my place :confused:
I installed the xml, I defined informed in the specific forum and nothing happen
Could you post up your FORUMDISPLAY template in CODE tags please?
Qwest
12-17-2007, 03:50 PM
Wow that's pretty cool.
Mecho
12-17-2007, 06:56 PM
nice idea .. would u add an option for exclude usergroups .
thanks
Wayne Luke
12-17-2007, 09:20 PM
Tagged for next version when user has the ability to place cookie control on this.
Kirk Y
12-18-2007, 01:19 AM
v1.02 released: cookie control functionality added.
XFSImperial
12-18-2007, 01:31 AM
v1.02 released: cookie control functionality added.
Awesome, greatly appreciated!
Derek Chai
12-18-2007, 01:35 AM
Thanks I hope to see my suggestion soon.
Kirk Y
12-18-2007, 01:40 AM
Thanks I hope to see my suggestion soon.
Yes, it'll be in the next version. I just wanted to get this one out quickly as so many people wanted control over how the cookies were handled.
kollam003
12-18-2007, 02:19 AM
updated mine thanks
Doctor Death
12-18-2007, 09:49 AM
Two questions: I am having issues with the top of the warning box being "hid behind" my forums flash header... How can I bring this to the very front of the display?
Can you post the HTML code for your sample warning message? I really liked the simplicty and color scheme of that.
Thank you!!
Mecho
12-18-2007, 01:38 PM
i really want to use this too . but is there anyway to exclude some usergroups ?
Kirk Y
12-18-2007, 02:56 PM
Two questions: I am having issues with the top of the warning box being "hid behind" my forums flash header... How can I bring this to the very front of the display?
Can you post the HTML code for your sample warning message? I really liked the simplicty and color scheme of that.
Thank you!!
You can sort of make it out in the first screenshot:
<div align="center" style="font-weight:bold;color:yellow;font-size:25px">WARNING!</div><br />
This section of our forum is intended for Mature Audiences only.<br />
As such it may contain material that is neither suitable nor appropriate for those under the age of 17.
And I'll have a look into the flash issue.
Doctor Death
12-19-2007, 12:34 AM
Thanks a lot... I believe there is some parameter that needs to be adjusted to ensure the flash takes front position.
Doctor Death
12-19-2007, 01:01 AM
I went back and looked and I think the line that can fix this is
document.write('<div id="slashpage" style="position: absolute; z-index: 100; bottom:90px; left:275px; color: white; background-color:$vboptions[splashbgcolor]; border: solid 1px black;">') //Main splashpage container
The "Z-index" is apparently the order of the "stack" of windows...
Usually HTML pages can be considered two-dimensional, because text, images and other elements are arranged on the page without overlapping. There is a single rendering flow, and all elements are aware of the space taken by others.
In CSS 2.1, each box has a position in three dimensions. In addition to their horizontal and vertical positions, boxes lie along a "z-axis" and are formatted one on top of the other. Z-axis positions are particularly relevant when boxes overlap visually. (from CSS 2.1 Section 9.9.1 - Layered presentation)
It means that CSS style rules allow you to position boxes on layers in addition to the normal rendering layer (layer 0). The Z position of each layer is expressed as an integer representing the stacking order for rendering. Greater numbers mean closer to the observer. Z position can be controlled with the CSS z-index property.
So, you either edit the number by hand or you change it to a configuration option. Will try to edit it right now.
==============
Update: Tried changing Z-index to 1000 and didnt work, still was embedded behind the Flash header.
Kirk Y
12-19-2007, 06:06 AM
I haven't had a chance to experiment, but I'm fairly certain than any kind of active content (windows media, flash, quicktime, etc.) is always displayed on the highest level - regardless of z-indexing values.
You could try adding wmode="opaque" or wmode="transparent" to your flash/embed params. Not the most ideal solution - but it might work.
Doctor Death
12-19-2007, 09:15 AM
There was another modification that fixed a similar problem...
Found at https://vborg.vbsupport.ru/showthread.php?t=135106&page=4
This might help.
dacho
12-19-2007, 03:18 PM
I do not know why, but this do not work at my place :confused:
I installed the xml, I defined informed in the specific forum and nothing happen
Could you post up your FORUMDISPLAY template in CODE tags please?
So this is my FORUMDISPLAY template (by Attachment)
Kirk Y
12-19-2007, 05:51 PM
There was another modification that fixed a similar problem...
Found at https://vborg.vbsupport.ru/showthread.php?t=135106&page=4
This might help.
I'll have a look at it this evening.
So this is my FORUMDISPLAY template (by Attachment)
Everything looks fine... can't see anything wrong off-hand that'd mess up the template replacement. If you want to set up an admin login for me, I can troubleshoot it for you.
Doctor Death
12-19-2007, 10:58 PM
So this is my FORUMDISPLAY template (by Attachment)
Did you turn on the Modification under OPTIONS as well??
dacho
12-20-2007, 04:27 AM
I'll have a look at it this evening.
Everything looks fine... can't see anything wrong off-hand that'd mess up the template replacement. If you want to set up an admin login for me, I can troubleshoot it for you.
I send you Private Messages
Did you turn on the Modification under OPTIONS as well??
clear
Doctor Death
12-21-2007, 12:10 AM
Any progress on figuring out how to make it to the top of the stack on windows and content?
Bflat5
12-21-2007, 03:48 AM
I'm getting the database error too. So it doesn't install. Would be a cool add-on though.
Kirk Y
12-21-2007, 04:27 AM
I'm getting the database error too. So it doesn't install. Would be a cool add-on though.
The table prefixes issue was fixed. What's the exact error you're getting?
Bflat5
12-21-2007, 03:33 PM
Here's the error I'm getting.
Database error in vBulletin 3.6.8:
Invalid SQL:
ALTER TABLE `forum` ADD `kirky_splash` VARCHAR( 1500 ) NOT NULL;
MySQL Error : Too big column length for column 'kirky_splash' (max = 255). Use BLOB instead
Error Number : 1074
Date : Friday, December 21st 2007 @ 12:30:37 PM
Script : http://www.mydomain.com/forums/admincp/plugin.php?do=productimport
Referrer : http://www.mydomain.com/forums/admincp/plugin.php?do=productadd
IP Address :
Username :
Classname : vb_database
Kirk Y
12-21-2007, 08:10 PM
Here's the error I'm getting.
Database error in vBulletin 3.6.8:
Invalid SQL:
ALTER TABLE `forum` ADD `kirky_splash` VARCHAR( 1500 ) NOT NULL;
MySQL Error : Too big column length for column 'kirky_splash' (max = 255). Use BLOB instead
Error Number : 1074
Date : Friday, December 21st 2007 @ 12:30:37 PM
Script : http://www.mydomain.com/forums/admincp/plugin.php?do=productimport
Referrer : http://www.mydomain.com/forums/admincp/plugin.php?do=productadd
IP Address :
Username :
Classname : vb_database
I'll post an updated version later tonight.
Spika
12-21-2007, 09:00 PM
Hello! Excellent job!
One question... Can I put into warnig message a link (to another thread or post)?
code '[url]' donĀ“t work
Thanks
Kirk Y
12-21-2007, 09:17 PM
Hello! Excellent job!
One question... Can I put into warnig message a link (to another thread or post)?
code '[url]' don?t work
Thanks
No, you can't use BBCode; use HTML instead.
<a href="http://path/to/forum/showthread.php?t=1234"></a>
cnredd
12-21-2007, 10:00 PM
Is there a way this could be reconfigured to where...
A) Only guests can see it?...and...
B) Instead of a warning, make it something like "Thank you for entering this thread, We'd like you to register and join our conversation." and then they don't see it again when they close it?
Kirk Y
12-21-2007, 10:19 PM
Is there a way this could be reconfigured to where...
A) Only guests can see it?...and...
B) Instead of a warning, make it something like "Thank you for entering this thread, We'd like you to register and join our conversation." and then they don't see it again when they close it?
(a) Yes, in the next version (tonight hopefully).
(b) The display is completely customizable. The only thing that is physically set are the "Return Back - Continue Forward" links -- everything above is set by you.
(Note however that this was designed for use on a per forum basis - not a per thread basis.)
cnredd
12-21-2007, 10:23 PM
(a) Yes, in the next version (tonight hopefully).
(b) The display is completely customizable. The only thing that is physically set are the "Return Back - Continue Forward" links -- everything above is set by you.
(Note however that this was designed for use on a per forum basis - not a per thread basis.)Thank you...sounds promising...
I'll check in in a day or two and see if you have the next version ready...
LCN2007
12-22-2007, 03:49 AM
Nice mod exactly what i was looking for for my adult area.
SNATCH3R
12-22-2007, 06:40 AM
Good idea..thanks for this..will be installing later to my forum....
Alibass
12-22-2007, 06:05 PM
Seems hack is setting cookie when you select return to previous page, so if you select that same forum again you do not get the pop-up message in the same session but instead you are taken straight into the forum. Is this correct? Seems to me cookie shouldn't be set until you select skip or continue forward. :erm:
Kirk Y
12-23-2007, 08:46 PM
Seems hack is setting cookie when you select return to previous page, so if you select that same forum again you do not get the pop-up message in the same session but instead you are taken straight into the forum. Is this correct? Seems to me cookie shouldn't be set until you select skip or continue forward. :erm:
Yes, this shouldn't be happening - it should only set the cookie as you said, when you click to continue. I'll add this to my list of bugs to fix.
Alibass
12-23-2007, 09:08 PM
Thank you for the reply, will be looking forward to your update. :)
Happy Holidays!
Doctor Death
12-23-2007, 10:37 PM
I would still like to see this mod be able to overcome the layering of flash headers... any further thought on that???
dacho
12-24-2007, 07:26 AM
Everything looks fine... can't see anything wrong off-hand that'd mess up the template replacement. If you want to set up an admin login for me, I can troubleshoot it for you.
Kirk
I send you private message with my admin login
you can help me please ;)
Jason Black
12-24-2007, 01:23 PM
Greatttt Hackkkkkkkkkkkkkkkkk
Kirk Y
12-24-2007, 08:13 PM
v1.03 Released
- Fixed bug that set the pop-up session cookie when the warning displayed, rather than when the user clicked to continue
- Changed row data type to TEXT for better compatibility
- Added ability to exclude Usergroups from splash warnings
Bflat5
12-24-2007, 08:45 PM
Still getting the same database error when trying to install.
Kirk Y
12-24-2007, 10:03 PM
Still getting the same database error when trying to install.
Give it a try now.
Bflat5
12-25-2007, 12:06 AM
Give it a try now.
Looks like that fixed it. Thanks. :)
dacho
12-25-2007, 06:33 AM
At my place this does not work with IE6, could be that this does not support IE6 ?
Kirk Y
12-25-2007, 04:32 PM
At my place this does not work with IE6, could be that this does not support IE6 ?
Seems so; IE 5 and 6 don't play nice with it. I'll see what I can do.
princeedward
12-25-2007, 06:43 PM
nice update bro....thanks a lot...;)
Doctor Death
12-25-2007, 07:56 PM
Can I make a suggestion? That in the configuration, you allow the user to specify x,y coordinates of where box will be located AND x,y dimensions of this box.
If you can do this, then the flash header part is not important, because the box can be put where the header is not.
Make sense?
Thanks
Kirk Y
12-25-2007, 09:03 PM
I'll consider putting it in.
If you'd like to modify it yourself; the following is the relevant area of the splashwarn_js template:
document.write('<div id="slashpage" style="position: absolute; z-index: 100; bottom:90px; left:275px; color: gray; background-color:$vboptions[splashbgcolor]; border: solid 1px black;">') //Main splashpage container
document.write('<div style="color:white;width:700px;height:150px;padding:5px;" class="splashtext" align="center">')Red = Location of Pop-up
Blue = Dimensions of Pop-up
Doctor Death
12-25-2007, 10:54 PM
I made those mods and it is SWEET. The perfect addition.... I really think you will benefit by making those modifyable options, but in the meantime hand editing is GREAT.
Thank you again.
www.ddsog.com
princeedward
12-26-2007, 08:29 AM
YEAH! its...really nice now...voted for MOTM!....
maybe we can add also this rating image....
attach image for those interested...
73801
73800
73803
73804
Click Here For A Working Test (http://epaloids.com/forumdisplay.php?f=145)
:p
dacho
12-26-2007, 09:26 AM
I'll consider putting it in.
If you'd like to modify it yourself; the following is the relevant area of the splashwarn_js template:
document.write('<div id="slashpage" style="position: absolute; z-index: 100; bottom:90px; left:275px; color: gray; background-color:$vboptions[splashbgcolor]; border: solid 1px black;">') //Main splashpage container
document.write('<div style="color:white;width:700px;height:150px;padding:5px;" class="splashtext" align="center">')Red = Location of Pop-up
Blue = Dimensions of Pop-up
Take a look
http://forums.dacho.co.il/test.htm
The problem in IE it's not in the div position
if it's static, it's working fine... it's something with the Dinamic definition
princeedward
12-27-2007, 08:09 PM
hi bro kirk...
is it normal that this will work only to forum section title when you clicked....but not to the last post title at the right side??? or did i missed something...and how can i make this work???
please view attachment
73865
thanks and best regards...
:p
Kirk Y
12-29-2007, 04:01 AM
hi bro kirk...
is it normal that this will work only to forum section title when you clicked....but not to the last post title at the right side??? or did i missed something...and how can i make this work???
please view attachment
73865
thanks and best regards...
:p
No, this modification wasn't intended to show a warning message for threads within the forum - only on the forum itself. If there is a high enough demand for such an option, I'll look into adding one.
Kirk Y
12-29-2007, 04:02 AM
v1.04 Released
- Added control for dimensions (height and width) of the warning pop-up
- Added control for position of the warning pop-up via X,Y coordinates
shaynehammy
12-29-2007, 07:00 AM
I'd defintely need it for a particular forum section rather than the forum home. Please can you add this option?
What would be even better is any thread that disaplys in recent posts that falls under any R18 forum that the hack is enabled for would display the warning. How possible is this?
princeedward
12-29-2007, 11:30 AM
No, this modification wasn't intended to show a warning message for threads within the forum - only on the forum itself. If there is a high enough demand for such an option, I'll look into adding one.i guess it would be better to have this option...coz' it will be useless then...if someone click to the last post...seen at the right side..they can auto-get inside without having that warning sign...right?...i hope you can add this one...
...this is really a nice mod in deed...anyway thanks for the new update too...
thanks and best regards...
:p
Kirk Y
12-29-2007, 01:20 PM
I'd defintely need it for a particular forum section rather than the forum home. Please can you add this option?
The modification already does this... it's never shown a warning on the forum home; hence the name Forumdisplay Warning Message. :erm:
Doctor Death
12-31-2007, 03:44 PM
Great mod and I really appreciate how developer listens to users.
Issue: Latest mod has x,y position options as well as x,y box dimension options.
Those options are NOT used in the plugin -- the original values are hard coded in the plugin.
Here is the plugin sourcecode to show that:
document.write('<div id="slashpage" style="position: absolute; z-index: 100; bottom:90px; left:275px; color: gray; background-color:$vboptions[splashbgcolor]; border: solid 1px black;">') //Main splashpage container
document.write(this.defineheader) //header portion of splashpage
document.write('<div style="color:white;width:700px;height:350px;padding:5px;" class="splashtext" align="center">')
Kirk Y
12-31-2007, 05:35 PM
Fixed, try now.
djbaxter
12-31-2007, 05:43 PM
Can't download it:
vBulletin Message
Invalid Attachment specified. If you followed a valid link, please notify the administrator
Kirk Y
12-31-2007, 05:47 PM
Working fine for me. :erm:
Doctor Death
01-01-2008, 10:47 PM
Great mod -- love the fact you can put in the x,y coordinates, makes it PERFECT.
One last suggestion (for the moment!!)
Have an option to put an HTTP link in so that if they click "GO BACK" it takes them to another website (like www.disney.com)!! If that option field is blank it takes them back to the previous screen.
You have done a great job on this and it should be standard VBulletin ware!!
donal
01-25-2008, 04:44 AM
Thanks for the nice mode. Installed and working fine with VB 3.7.0 beta.
I small problem though. Warning is working fine at forum display and thread display but it doesnt display if someone clicks on the direct link of the post. Since latest thread are shown at my forum home, the warning wont display if someone click on these links.
christicehurst
01-25-2008, 10:59 AM
I got a problem, it's only showing a blank black box in front of the forum.
jasculs
01-25-2008, 12:28 PM
Thanks for the nice mode. Installed and working fine with VB 3.7.0 beta.
I small problem though. Warning is working fine at forum display and thread display but it doesnt display if someone clicks on the direct link of the post. Since latest thread are shown at my forum home, the warning wont display if someone click on these links.
Once this is fixed...I'll definitely use this great mod...I think that they should get the warning message no matter how they get in.
jewropa
01-25-2008, 02:01 PM
Doesnt work in IE, please help! In Firefox works fine!
SVTCobraLTD
01-25-2008, 02:39 PM
No luck here. Only get a black screen when installed and yellow writing at the top to click to have cookie saved. Nothing shows up on the screen even when I tried to use an image. This is on 3.6.8pl2
Luciolle
01-25-2008, 05:16 PM
Just a little question, you think it's possible to apply this modification to a evenement on calendar ?
When a evenement spray out on index page at the bottom, apply this WARNING system to this to ?
Sorry for my poor english :p
shunter
02-03-2008, 12:49 PM
Is there a way to make it appear every time the same person enters that forum... i dont want them to be able to disable it...
thanks for the help
Zorck
02-03-2008, 02:54 PM
excelent mod!
thanks
Martell
02-05-2008, 03:38 PM
Kirk Y Does not work. vB 3.6.8 PL2:(
Has made all under the instruction. Nothing shows.
=>Thanks, has understood!:)
shunter
02-11-2008, 10:17 PM
Is there a way to make it appear every time the same person enters that forum... i dont want them to be able to disable it...
thanks for the helpdoes anyone know how i can make this pop up every time that persons enters in the forum :)
TCE Killa
02-13-2008, 04:49 PM
No luck here. Only get a black screen when installed and yellow writing at the top to click to have cookie saved. Nothing shows up on the screen even when I tried to use an image. This is on 3.6.8pl2
I get the exact same. I'm using 3.6.8 Pl2 as well.
Uninstalled:(
mastertek2000
02-13-2008, 09:54 PM
this look great but could not get it to work no errors just never pop's up it turned on and i did set it in forum management i run IE6 works fine on Fire Fox any help pls thanks
sp0okz
02-14-2008, 06:05 PM
i get a black screen thats all and im using ie7
sp0okz
02-15-2008, 06:21 PM
Can we have a update asap please
shunter
02-18-2008, 09:23 AM
I'd love to know how to make this pup up everytime someone enter that forum :)
sambalis
02-19-2008, 06:11 AM
Goodmorning!
I installed it, and nothing happens!!!
Does anything has to do with VBAdvanced???
donal
02-27-2008, 09:58 AM
It seems that this hack is no more supported.
Leo Brazil
03-05-2008, 05:23 PM
I've really tried hard to find my self a way to solve the issues I was having with this mod.
I can only get a black translucid screen...that's it, just like other said here running 3.6.8PL2
It's a shame this is not supported any longer, it would help me a lot.
Leo clicks Uninstall.
l0streflecti0n
03-05-2008, 08:06 PM
dosent work on 3.6.4
SVTCobraLTD
03-26-2008, 01:03 AM
I've really tried hard to find my self a way to solve the issues I was having with this mod.
I can only get a black translucid screen...that's it, just like other said here running 3.6.8PL2
It's a shame this is not supported any longer, it would help me a lot.
Leo clicks Uninstall.
Same here, sounded like a great mod but had to uninstall it.
SVT
Sergioh
03-27-2008, 03:52 AM
Ok maybe I'm blind, but I can't find the option to select specific forums for this.
Lilyandy
04-11-2008, 06:17 AM
vbb 3.6.9 error @@
sexyeyes83
04-22-2008, 09:07 AM
Such a shame this is unsuppoted. This is exactly what I was looking for, however it dosent appear to work.
Harley D
05-25-2008, 01:15 PM
I have this working on (vBulletin 3.6.8 Patch Level 2).
At first it didn't work in IE 7, but after using limited HTML it works fine now.
So if your having problems with it showing correctly under IE or FireFox, try using TEXT ONLY to see what happens. Then add your HTML a little at a time, Testing after each change.... Good Luck ;o)
Harley D
05-25-2008, 01:45 PM
O.K. since the setting are so important in order to get this working correctly, I will give you the settings that I am using that are working for me, in both IE & FireFox.
<div align="center"><img src="http://www.YourForum.com/forums/images/rated_nc-17.jpg" border="0"><p><b>This Section Of Our Forum Is Intended For Mature Audiences Only!<br>As such it may contain material that is neither suitable nor appropriate for those minor age,<br>Sexually-oriented adult content which may include visual images and verbal descriptions of nude adults. Adults engaging in sexual acts, and other audio and visual materials of a sexually-explicit nature.</b></p><p><b><font weight="bold" color="#ff0000">Permission To Enter This Forum Section And To View Or Download Its Contents Is Strictly Limited Only To Consenting Adults Who Affirm That The Following Conditions Apply:</font></b></p><p><b>That you are at least 18 years of age or older, and that you are voluntarily choosing to view and access such sexually-explicit images and content for your own personal use.</b></p><p><b>That you intend to view the sexually-explicit material in the privacy of your home, <br>or in a place where there are no other persons viewing this material who are either minors, <br>or who may be offended by viewing such material.</b></p><p><b>If all of these conditions apply to you, you are given permission to enter and continue forward.<br>But if not, you don't deserve any permission to enter and view all the contents of this forum section and you should now exit or return to previous page. </b></p></div>
Splash Warning Height & Width = 500x800
Splash Warning Position = 100,100
All other setting where left with the default ones.
Hope this helps. ;)
Antonio Pereira
05-29-2008, 07:06 AM
This mod dont have more suport ?
Please Kirk Y this a good mod, make an update to 3.7.1
Best Regards
Antonio Pereira
05-29-2008, 07:29 AM
In 3.7.1 dont work and dont show error nothing.
Any help ?
I need so much this mod.
Best Regards
Antonio Pereira
05-29-2008, 10:04 AM
Update my last post:
In 3.7.1
Firefox --OK
Ineternet Explorer --Problems with objects flash i think, give a error message.
And the option the let admin disable via cookie dont work in IE and Firefox.
se_p800
06-06-2008, 05:19 PM
Any luck gettin this to work in 3.7.1? I wish this was supported, its exactly what I need! Also is there a way so you can use get this so show up no matter what page you visit? Like its in the "headerinclude" template?
CFodder
08-14-2008, 12:41 AM
Works fine on 3.7.2PL1. Pity it's not supported any more tho as would like it to be just centered on the page.
dtv100
09-05-2008, 05:18 PM
i using this with 3.7.3 and is working like this.
if someone click in thread from forum home or new post wont get msg but if they enter forum msg show.
demoniavbh
01-10-2009, 02:32 PM
Oh...I also would need this for my forum :( But I have 3.8
Welshy2008
02-06-2009, 08:05 AM
I have this on my 3.6.8 board.
I am upgrading it to a 3.8.1 at the weekend. Will this work on it please? I don't want to lose this fantastic add-on.
Doctor Death
02-06-2009, 10:17 AM
Works great on 3.8.1.
Welshy2008
06-06-2009, 12:57 PM
Thank You DD. Sorry for the extremely late reply. (I lost the name of the hack and only just got round to looking for it).
:O
BadgerDog
06-08-2009, 10:13 PM
Hi ... :)
Ok, I realize that this mod is not supported, but can anyone help me with this problem?
Running v3.67pl2 ....
When you set the option so that a user can "Continue forward and never show again", it doesn't seem to work? If you select that option, close down the browser and then go back into the same forum, it presents the same message again? This happens in both Safari and IE browsers. :confused:
Don't cookies get cleared at that time someone logs out of the site, or quits their browser?
I'm not a real smart person but if the cookies are cleared, then what's the point of this option at all? I thought it was supposed to set a cookie so the user never had to view the forum splash message again, assuming he selected the option "never" above?
What am I missing, or is there a BUG in this mode?
Thanks for any feedback... :)
Regards,
Badger
ps: In IE I also get a page error when the splash mod displays:
Line 168
Char 2
Error: this splashiframeref.location is null or not an offset
Code: 0
URL: http://www.xxx.xxxx.xxxx
chick
06-10-2009, 10:33 AM
Mod is unfortunately not supported. too bad. I did not mark installed because it does not work properly. Kirky have mercy!
macbooking
06-10-2009, 02:06 PM
S2pid question but where can i find this? (https://vborg.vbsupport.ru/attachment.php?attachmentid=73240&d=1197786000)
Running 3.8.2
Thx
t.uzuner
08-21-2009, 09:38 PM
not running 3.8.4 i need this mod
ricardoNJ
10-08-2009, 06:35 AM
3.8.4 No Work
Welshy2008
01-28-2010, 08:49 AM
Works great for me on 3.8.4 - Can anyone confirm if it works on vB4 4.0.1 Please?
Welshy2008
03-07-2010, 10:47 AM
Works great for me on 3.8.4 - Can anyone confirm if it works on vB4 4.0.1 Please?
Make that 4.0.2 PL1. :)
Welshy2008
07-06-2010, 01:03 PM
Kirk hasn't been online for well over a Year.
Can someone port this to 4.0.4 please?
Welshy2008
08-04-2010, 10:23 AM
Anyone going to port this to vB4 please?
Many Thanks.
Welshy2008
08-17-2010, 11:45 AM
Can someone port this to vB4.0.5 and vB4.06 please?
Welshy2008
01-25-2011, 05:59 PM
Still like to see this ported to 4.0.7 and higher. :)
Nirjonadda
07-05-2012, 07:43 PM
please update it for 4.1.10
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.