Feed clean-up

Hello,

I used an OPML file to subscribe to what I thought was a single journal's feed but I ended up subscribed to nearly a hundred feeds. I was wondering about a quick way to fix this without having to go threw the hassle of unsubscribing to every single feed one at a time.

Thanks!
  • Run this in Tools → Developer → Run JavaScript to delete all feeds:

    var feeds = Zotero.Feeds.getAll();
    for (let feed of feeds) {
    await feed.eraseTx({ deleteItems: true });
    }
  • edited July 28, 2022
    Thanks for the quick response!
    I don't think it's working tho. After running it, I've got this message :
    Error: Feed 53 has been disabled

    I also tried to close Zotero and open it again but the Feeds are still there.

    *** Update *** Actually it did work! I just had to wait a little while. Thanks for the help.
  • I've also got this message :
    Error: Feed 52 has been disabled.
    could you tell me what I should do next?
  • Restart Zotero and try the above code again.
  • Thank you, I had the same problem and the javascript code worked for me :)
Sign In or Register to comment.