Block notifications for reply likes
Concept
Tumblr recently introduced reply likes with no built-in way to block their notifications. If you leave a reply on a popular post, it can get hundreds of likes (= hundreds of notification) with no easy way to block them. It would be nice to have a button to block these likes similarly to the "block notifications" one
(If anyone needs this functionality in the meantime, it's also possible to block notifications for a specific reply with an adblocker like ublock origin, but that's a bit cumbersome)
Hmm. We could do this as a tweak or by allowing NotificationBlock to be used on posts by other people, presumably.
If anyone wishes to just block seeing the reply likes entirely (won't block notifications, unfortunately), the following filter worked for me in UBlockOrigin (remove the spaces):
www . tumblr . com##button.NcZPX.TRX6J:nth-of-type(2)
@mesaprotector
for all reply like notifications this should work: www.tumblr.com##.pclKV .YuXNZ.KO1zx:has-text(Liked your comment)
If anyone wishes to just block seeing the reply likes entirely (won't block notifications, unfortunately), the following filter worked for me in UBlockOrigin (remove the spaces):
www . tumblr . com##button.NcZPX.TRX6J:nth-of-type(2)
a) I consider this a separate issue; more importantly, b) if one wants to hide like counts, one should do so without hiding the button itself, such that the functionality is not lost. nth-of-type is also best avoided to prevent a change in the button order from resulting in the wrong thing being hidden. tumblr.com##span.tS5OZ>svg:has(>use[href="#managed-icon__ds-like-outline-16"])+span would be one way to do this.