How to group feeds together

Tacconi

New Member
In the former version it was easy to group some feeds together, for instance having news feeds together in one group, and sport feeds in another group.
Making the overall overview easy.

How do I do that in this new version?
 

joseph raphael

Well-Known Member
In the former version it was easy to group some feeds together, for instance having news feeds together in one group, and sport feeds in another group.
Making the overall overview easy.

How do I do that in this new version?

Using Feed query Module, copy and paste this SQL query code

Code:
IsDeleted = 0 AND FeedId IN (SELECT FeedId FROM Feed WHERE GUID IN ('1','2','3','4','5','6','7','8')) AND EnclosureLink is null

Replace 1,2,3,4,5,6,7,8... with the feeds GUID you want to group together. After you done this, hide the feeds modules from the app build so they appear as one feed in the menu.
 
Top