Home
Mottie's Help Site
Resources
Support Tickets
Sign Up!
•
Login:
Password:
Save
New User?
Forgot?
Support
Top Mods!
Forum Module - Media
by Mottie
1
2
3
4
5
Forum Module - Media v5
by Mottie
Description
This mod allows you to add a YouTube video and change the player styling along with other options. Also, you can easily add a mp3 audio file using the basic Google mp3 player
or a player that can easily be styled (Wordpress player)
Please see
this post
for instructions.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Mail Notification
by Mottie
1
2
3
4
5
Mail Notification v6
by Mottie
Description
This mod opens a popup to notify you if you have a new mail message. It was written for users who wish to hide their top menu bar (state bar/log in bar). Or if you just want a bigger message telling you that you have mail. I've set it up to open either a growl window (timed popup) or a facebox (popup you have to close).
For more information on the custom variables, please see
this post
.
To style the growl window (pictured above), use the "Growl Window Styling" Mod or refer to
this post
.
To style the Facebox popup window, please refer to
this post
.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Wowhead Search
by sonofsamedi
1
2
3
4
5
Wowhead Search v5
by sonofsamedi
Description
Just a simple import from the Wowhead website to allow in-site searching.
taken from
Wowhead goodies for your site.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Event Signup/Withdraw Button
by Mottie
1
2
3
4
5
Event Signup/Withdraw Button v3
by Mottie
Description
******************************************
The signup button has changed, so
this mod is no longer needed
******************************************
Make your Event Sign Up/Withdraw button more prominent.
All this mod does is adds a css class to the button, you can modify everything else!
Before
After
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Signup Status Color
by Mottie
1
2
3
4
5
Signup Status Color v5
by Mottie
Description
This mod will add CSS classes to the character status, so you can set the color yourself with the CSS and the script will do the rest. Within the script, you can set it to just color the Status column or the entire row. This is what it will look like:
*Note: this is an old screenshot, but the code still works
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Admin Forums
Welcome to the GuildPortal Help Community! These forums are for admin-to-admin help.
Available Forums
Forums
:
Feature Discussion
> New popup warning when clicking an outside link.
Prev
1
2
3
4
5
6
Next
FitzztiF
(New Admin)
4/17/2008 7:46 AM EST
:
RE: New popup warning when clicking an outside link.
link
FitzztiF
Posts: 5509
Zomgawsh Poster
Ug, what a stupid change. Thanks GP for making me take 30 minutes out of my day to hack around this. For anyone that would like to revert links back to the non-interceptor crap, you can use the following:
Go to control panel->Style & Colors->Advanced Style Settings->Footer
In here, click the < > button for html input. Add the code below.
Basically what this does is adds a function that undos what the new GP function does. Anyone that looks at the source can see that GP encodes the link at the very bottom. Using setTimeout(, 1) will cause our function to be executed 1 millisecond after page load, reverting all the links (since we can't block their encoding of them). All my wowhead popups and off site links are back to normal. Yell if there are any questions.
Code to add to footer:
edit: Remove the line breaks around the script command, it would let me post it with those in.
<
script language="Javascript">
function fixStupidLinks()
{
try
{
var interceptUrl = '/Outbound.aspx?Destination=';
for (iLink=0; iLink < document.links.length; iLink++)
{
if( document.links[iLink].href.indexOf( interceptUrl ) != -1 )
{
document.links[iLink].href = unescape(document.links[iLink].href.substring( document.links[iLink].href.indexOf( interceptUrl ) + interceptUrl.length)) ;
}
if( document.links[iLink].href.indexOf( "javascript:" ) == 0 )
{
document.links[iLink].target = "_self";
}
}
}
catch (linkExc)
{}
}
setTimeout("fixStupidLinks();", 1);
</script>
Top
•
Bottom
537867428_Inactive
(New Admin)
4/17/2008 7:51 AM EST
:
RE: New popup warning when clicking an outside link.
link
537867428_Inactive
Posts: 2584
Zomgawsh Poster
i <3 h4XXø5z
THANK YOU! i'll give it shot on my site immediately.
Top
•
Bottom
FitzztiF
(New Admin)
4/17/2008 7:58 AM EST
:
RE: New popup warning when clicking an outside link.
link
FitzztiF
Posts: 5509
Zomgawsh Poster
Just a bump in case someone already copied my code above, I added a check for the broken mail problem too. It was changing the Tree View of Select From Guild Members to be an external link. It should now catch that and set it back to opening in self.
Does this stuff get tested at all or are we just paying to be beta testers?
Top
•
Bottom
537867428_Inactive
(New Admin)
4/17/2008 7:59 AM EST
:
RE: New popup warning when clicking an outside link.
link
537867428_Inactive
Posts: 2584
Zomgawsh Poster
OK.. it works.. but it has to be last scriptlet in your footer. I tried first to insert it ahead of my wowhead.com script, and it did not work.. then i moved it to the end of my footer and now it does work just fine.
THANK YOU!!!
Top
•
Bottom
Ghantu
(New Admin)
4/17/2008 8:24 AM EST
:
RE: New popup warning when clicking an outside link.
link
Ghantu
Posts: 237
Fingers of Fury!
It works for me too.
Have you noticed that they've made their interceptor a little dynamic? If you make a wowhead link now, it says:
Specific Link Information:
# The destination site is either owned by, or is owned by a parent company that is owned by, an RMT company.
# The destination site is known to have had more than one instance of a trojan/keylogger/virus outbreak.
Top
•
Bottom
537867428_Inactive
(New Admin)
4/17/2008 8:28 AM EST
:
RE: New popup warning when clicking an outside link.
link
537867428_Inactive
Posts: 2584
Zomgawsh Poster
i think you are refering to this article...
http://www.wowinsider.com/2008/03/10/wowhead-and-other-sites-are-having-trouble-with-ad-banner-keylog/
Top
•
Bottom
xandune
(New Admin)
4/17/2008 8:29 AM EST
:
RE: New popup warning when clicking an outside link.
link
xandune
Posts: 818
Zomgawsh Poster
Im not too smart...what am i supposed to be removing out of that code for it to work? Thanks!
Top
•
Bottom
FitzztiF
(New Admin)
4/17/2008 8:31 AM EST
:
RE: New popup warning when clicking an outside link.
link
FitzztiF
Posts: 5509
Zomgawsh Poster
xandune said:
Im not too smart...what am i supposed to be removing out of that code for it to work? Thanks!
<
script
needs to be all in one line
It just won't let me put it like that in the same post (gives an error)
Top
•
Bottom
xandune
(New Admin)
4/17/2008 8:37 AM EST
:
RE: New popup warning when clicking an outside link.
link
xandune
Posts: 818
Zomgawsh Poster
Thanks! got it!
Top
•
Bottom
Yage_
(New Admin)
4/17/2008 8:40 AM EST
:
RE: New popup warning when clicking an outside link.
link
Yage_
Posts: 1087
Zomgawsh Poster
FitzztiF said:
Ug, what a stupid change. Thanks GP for making me take 30 minutes out of my day to hack around this.
Works great, thanks SO much!
Top
•
Bottom
Prev
1
2
3
4
5
6
Next
Admins Online
There are
members online.
Updating...
{1}
##LOC[OK]##
{1}
##LOC[OK]##
##LOC[Cancel]##
{1}
##LOC[OK]##
##LOC[Cancel]##
Loading.....
So-and-so has logged on!
disable
0
Purple Dragon (Public)
Guild Chat
0
0
Member Detail
Request Chat
Visit Site
Visit Wall
Send Mail
Admin
%title%
%message%