PDA

View Full Version : Add to favorites on forumhome


Sephiroth32
12-03-2002, 07:39 PM
I am stumped here.

I want to have a little link in the forum listing that lets you add a perticular forum to your favorites. I found a javascript but it only lets you do one url, could I pout as the url the url to any forum but use $forum[forumid]?

filburt1
12-04-2002, 06:52 PM
As in add a forum to Internet Explorer's favorites?

assassingod
12-04-2002, 07:00 PM
I am a little confused. There is a script that lets you click and it adds to your IE's favourites, but what you are saying is confusing me.
Could you explain a bit better?

Sephiroth32
12-04-2002, 09:30 PM
ok sorry i'll try to be more clear here (and yes its IE)

I want a link to appear next to every forum name that says [add to favorites]. When you click it I would like it to bring up the favorites dialog for IE so you can add it like thoose links on websites that say "add this page to your favorites".

I have found an add to favorites javascript but it is just a function that only supports one URL. The script is:

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function addbookmark()
{
bookmarkurl="http://wwwyoursite.com"
bookmarktitle="Site Title"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarkti tle)
}
// End -->
</script>


As you can see only one url can be used. I tried making the URL include $forum[forumid] but it just put nothing for $forum[forumid]. Is there a way to have this add to favorites link for ever forum? or does it require file hacking

filburt1
12-04-2002, 09:57 PM
I'll look into this.

filburt1
12-04-2002, 10:11 PM
I'll have it done once this is resolved: http://www.vbulletin.com/forum/showthread.php?postid=381121

Nairb
12-04-2002, 10:37 PM
couldnt you just do something like:

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function addbookmark()
{
bookmarkurl="$bburl/showthread.php?$forumid"
bookmarktitle="$threadname"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarkti tle)
}
// End -->
</script>

those arent the right variables, but it makes the point...

Sephiroth32
12-04-2002, 10:38 PM
thanks :)
Nairb read my post, I tried that :)

filburt1
12-04-2002, 10:52 PM
Nairb just gave me a very good idea though...

filburt1
12-04-2002, 10:59 PM
<a href="http://www.vbulletintemplates.com/mods/showthread.php?s=&threadid=2217" target="_blank">http://www.vbulletintemplates.com/mo...&threadid=2217</a>

Sephiroth32
12-04-2002, 11:59 PM
thanks!!!!

filburt1
12-05-2002, 12:16 AM
No problem :)