Is there a way we can show only the threads that belong in the tag that we followed?
For example: I follow extension and dev tags using this extension, is there a page that I can view only threads belong in those two tags?

    huuduy216 This has been suggested in the past - it may be added in the future. Not an option as of right now.

    IanM Hi, after the last update we observed a strange thing: we get a notification for one of our own actions! As you can see on screenshot, the user ChristophZ got a notification for his own action of changing the tag of a discussion.
    screenshot

    • IanM replied to this.

      IanM Also, some users are annoyed that these "change of tag" notifications are active by default... But I guess it's a bit late now to change this unless you want to override already customized settings that users did, which isn't an option I think.

      • IanM replied to this.

        iPurpl3x one option you do have (if you've not spotted this already)

        You could use something along the lines of this, to set different preferences to your liking at each new registration?

          0.3.6

          • Fix issue where you'd be notified about a changed tag that you changed yourself, if you were subscribed to that tag.
          • Fix issue where the discussion starter would not be notified about the changed tag, if they were subscribed to that tag.

          Thank you you raising this iPurpl3x

          Updating

          composer require fof/follow-tags

          IanM OK thanks, I see. I'll ask the client if he wants this.
          And thanks for the quick of bug fixes!

          10 days later

          0.4.0

          img

          • View discussions in followed tags in Following page
            • User setting for default filtering option (following, discussions in tags, both)
            • Admin setting for default filtering option (overriden by user setting, see above)
          • 0.4.1 Hopefully improve performance in forums with hundreds of tags

          Updating

          composer require fof/follow-tags
          php flarum cache:clear

            datitisev Hopefully improve performance in forums with hundreds of tags

            Tagged 0.4.1 that fixes the unnecessary amount of queries. One per tag.

            Is there a way how to make some forum tag followed by everyone? I would like to make "Private discussions" tag followed by everyone so they will be notified about new private discussions (fof/byobu).
            How exactly is this information stored anyway? I didn't find table in the database related to this.

              Flaiming Private discussions are set using the recipients table and is_privaye column iirc. There are user notification settings for these discussions - you'll have to find a way to make them true by default on sign up. It is not in the scope of this extension.

                datitisev I didn't mean it as request to add this functionality to extension, I just want to do it as one-time operation.

                robinodds I don't think there's much we can do. Flarum's design behaves like this when there's not enough horizontal space.

                With this exact set of controls, it seems the breaking point is 376px wide.

                With a lot of mobile devices having a viewport width of around 360px (according to this website) we can assume it goes to the next line on a lot of devices.

                Solutions include:

                • Removing some buttons. For example if Pusher or websocket is enabled, the refresh button disappears, saving up space
                • Customizing the texts through Linguist to use shorter phrasing
                • Use CSS to make the buttons narrower to try to keep them on a single line
                • Use CSS to make it a bit less ugly when it goes to a new line. A PR to Flarum core for that would be welcome!
                • only allow users with a viewport width of 376px or higher to access the forum

                I also notice your forum isn't in English. Simply translating the text could solve the problem if the text ends up shorter in your language 😉 But just as well it could make the problem much worse 😅

                  clarkwinkelmann I suppose one possible solution could be adding a scroll bar? In which case we might want to experiment with custom scroll bar css to avoid the default blocky one

                  • w-4 replied to this.

                    askvortsov

                    Just adding white-space: nowrap; overflow: auto; will do. On mobile the scrollbar will only show on scroll as an inline overlay.