Quote:
Originally Posted by axisoverdrive
Jafo,
you've done an outstanding job. The plugin is working marvelously.
A feature that would be nice: right now, at the bottom of each post, there is a vbridge menu prompting to post in a particular forum or "Do not post in a forum". Could this be moved to the Options panel, so that we can toggle forum comments on or off universally, so we don't need to worry about it on a post-by-post basis?
I guess some users may want the flexibility of choosing the forum they want the post to show up in. So maybe just a comments toggle on/off switch in the options panel, and then if it's "on", it'll give you the forum selection choice when writing a post? is this an easy thing to implement?
Thanks, Jafo!
|
Thanks for your kind words!
I am a bit busy at the moment, but I will be getting back to this plugin soon, I will see if I can add it.
I think you will be able to do this by finding this code:
Code:
Do NOT post to a forum: <input type=checkbox name='nopost' value='1' onChange="if (fon == 0) { DeselectAllList(thedoc); fon = 1; } else { selectAllList(thedoc); fon = 0; }">
And changing it to:
Code:
Do NOT post to a forum: <input type=checkbox name='nopost' value='1' onChange="if (fon == 0) { DeselectAllList(thedoc); fon = 1; } else { selectAllList(thedoc); fon = 0; }" selected>
I think you will also have to find this code:
And change it to:
That is just a quick guess reviewing my code.