FriendsOfFlarum Follow Tags
- Edited
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?
Would any of you consider adding this feature to the extension as a contract? @IanM @datitisev
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
- Edited
0.4.0
- 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
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.
- Edited
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
Just adding white-space: nowrap; overflow: auto;
will do. On mobile the scrollbar will only show on scroll as an inline overlay.