Mattiewagg Posted August 29, 2014 Share Posted August 29, 2014 So I've got a LOT of mods that I haven't endorsed from almost a year ago, about 7-10 pages of them. Is there a way I can just abstain from ALL of those I haven't yet endorsed rather than having to click through every page? Link to comment Share on other sites More sharing options...
michelleb Posted September 2, 2014 Share Posted September 2, 2014 I agree Link to comment Share on other sites More sharing options...
Dark0ne Posted September 2, 2014 Share Posted September 2, 2014 There is not a way to do this. Link to comment Share on other sites More sharing options...
Mattiewagg Posted September 2, 2014 Author Share Posted September 2, 2014 There is not a way to do this.Well that's alright. Thank you for responding though. Link to comment Share on other sites More sharing options...
LeianneH Posted September 3, 2014 Share Posted September 3, 2014 Ummm can't you just go into your site preferences and set the 'File reminder notice' to 'never' ? Then it won't ask you if you want to endorse any of those mods anymore? I could be confused about what you're asking though ... I certainly don't want to contradict the site owner of all people, so maybe ask what that option does - because I never get 'reminders' to endorse mods I've downloaded at all. Link to comment Share on other sites More sharing options...
Mattiewagg Posted September 3, 2014 Author Share Posted September 3, 2014 Ummm can't you just go into your site preferences and set the 'File reminder notice' to 'never' ? Then it won't ask you if you want to endorse any of those mods anymore? I certainly don't want to contradict the site owner of all people, so maybe that's not what that option does - but you might want to just give it a try.Not what I meant, sorry if I was unclear. I want the notices. Just not for the 200-300+ mods I've already installed in the past few years. Call me lazy, but I don't want to go through 13-15 pages of mods I've installed months or years ago. Is it unfair to the mods that I downloaded a while ago? Maybe. But I chose not to endorse many of them for a reason, so going back through them again would be a pain. Basically it would allow for a "clean slate" with the notices so they're not notices from a mod I downloaded in 2012. Link to comment Share on other sites More sharing options...
Corrodias Posted February 24, 2017 Share Posted February 24, 2017 I see this is an old topic, but as it's as relevant as ever - and I just went through a similar experience - I thought I'd share my method. We can use a little JavaScript with jQuery to take care of this quickly. Open your browser's dev console (F12 usually) and enter this command to abstain from the first 10 items on the page that have NOT been abstained from: $('a[title=Abstain]:not([onclick=""])').slice(0, 10).click()It only does 10 at a time because I'm considerate enough not to send 100 requests at a time to the server.Explanation:a: the clickable link elementstitle=Abstain: of those, only the Abstain links:not([onclick=""]): once you have abstained, the site removes the onclick attribute, so this excludes any that have already thusly been clickedslice: takes the first 10click: calls the click function, the same as a mouse click would do Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now