|
Post by Dragon on Apr 26, 2012 18:07:10 GMT -8
Is it possible to remove certain links from the forum jump ?
|
|
|
Post by Wormopolis on Apr 26, 2012 23:21:43 GMT -8
that is doable. forum jump items are done by the board id they go to. will it be a list or just one item?
|
|
|
Post by Dragon on May 11, 2012 19:39:09 GMT -8
Multiple listed items please. Sorry, I honestly just came back here first time since my last post Im petitioning Subdevo to remove from the navbar board links for my locations: Movie locations, Tv Locations... From the main board and posts under Movies, Tv Shows.... Currently getting nada from him >.> This is subsequent in taking down the location links visibility under forum jump for the locations board. So boards like Music Locations, Movie Locations and Tv Show locations would be the ones we need removed from visibility under forum jump all pages.
|
|
|
Post by Wormopolis on May 11, 2012 22:36:36 GMT -8
you can try this:
<script type="text/javascript"> <!-- // remove some links from forumjump
var listOfBoardsToRemove="boardid1|boardid2|boardid3";
var fj=document.getElementById('forumjump'); for (opts=fj.options, oo=0; oo<opts.length; oo++) { if (opts[oo].value && opts[oo].value.match(new RegExp('board=('+listOfBoardsToRemove+')(&|$)',''))) { fj.removeChild(opts[oo]); oo--; } }
// --> </script>
|
|
|
Post by Dragon on May 12, 2012 14:14:07 GMT -8
|
|
|
Post by Wormopolis on May 12, 2012 20:05:39 GMT -8
recopy.. I dropped a )
|
|
|
Post by Dragon on May 14, 2012 12:50:26 GMT -8
Still doesnt seem to be working, put into global footer. I believe I have it in there right.
Music locations, tv locations, and movie locations shouldnt show under jump, they do D:
|
|
|
Post by Wormopolis on May 14, 2012 19:14:06 GMT -8
hmmm... ok.. try that version
|
|
|
Post by Dragon on May 15, 2012 12:03:26 GMT -8
Still not working.
|
|
|
Post by Wormopolis on May 15, 2012 18:26:56 GMT -8
one of these versions will work...
|
|
|
Post by Dragon on May 18, 2012 22:46:13 GMT -8
Not that version either. Changed the order to alphabetical for locations, no dice.
|
|
|
Post by Wormopolis on May 19, 2012 11:43:53 GMT -8
ok.. href was the wrong attribute. should be value. try that one
|
|
|
Post by Dragon on May 19, 2012 15:55:23 GMT -8
No dice. D:
|
|
|
Post by Wormopolis on May 19, 2012 19:02:17 GMT -8
actually.. it is working in FF and chrome, but IE doesnt seem to care if an option is displayed or not when it is in a select tag...
|
|
|
Post by Wormopolis on May 19, 2012 19:14:00 GMT -8
I hate doing it that way, but try that one
|
|