15 votes

Is there a way to filter out all link posts?

Topic deleted by author

5 comments

  1. [3]
    winther
    Link
    Your can add filters to ignore tags. Most links will have a source tag. Så add source to filtered tags in your sidebar will hide probably almost all link posts.

    Your can add filters to ignore tags. Most links will have a source tag. Så add source to filtered tags in your sidebar will hide probably almost all link posts.

    8 votes
    1. mycketforvirrad
      Link Parent
      And substack, blogger & wordpress and you're pretty much at a 100% success rate.

      And substack, blogger & wordpress and you're pretty much at a 100% success rate.

      7 votes
    2. crissequeira
      Link Parent
      Thank you! 😊 It does! Almost everything that is a link is gone.

      Thank you! 😊 It does! Almost everything that is a link is gone.

      3 votes
  2. [2]
    Wes
    Link
    This bit of CSS should also filter out any links that haven't been tagged yet. Since it's a client-side tweak though, it'll mean an inconsistent number of results are returned per-page. It can be...

    This bit of CSS should also filter out any links that haven't been tagged yet. Since it's a client-side tweak though, it'll mean an inconsistent number of results are returned per-page. It can be applied via extensions like Stylus.

    .topic-listing li:has(.topic-title > a[href^="http"]) {
    	display: none;
    }
    
    7 votes
    1. crissequeira
      Link Parent
      ooh Wow. That’s a very well-targeted selector. I might give it a try! Thank you! ❤️

      ooh Wow. That’s a very well-targeted selector. I might give it a try! Thank you! ❤️

      2 votes