By Dick Verschuur on Wednesday, 26 September 2018
Posted in General
Replies 5
Likes 0
Views 721
Votes 0
Good morning

Is there a way to hide a Joomla article category from the EasySocial stream?

There is no need for me to show every article (or every edit) in the stream.
Certain categories might as well keep hidden


greetz

Dick
Hey there,

Just want to be clear, do you want to only hide the category or the whole article?
·
Wednesday, 26 September 2018 16:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the reply Farqhan

It seems that, by default, all articles which I publish or edit, are shown to all members.
I don't want this
I need a category in which I can place articles which don't need to be shown in the stream

Greetz

Dick
·
Wednesday, 26 September 2018 17:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Currently it is not possible to do that. We need to modify some core files.
·
Wednesday, 26 September 2018 17:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,
is possible to hide only articles?
thanks
·
Tuesday, 23 October 2018 22:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Currently that is no setting to restrict either category post or single article from the app.

But you can modify on this file JoomlaFolder/media/com_easysocial/apps/user/article/article.php to achieve this :

Restrict certain category id

// Set your restricted category id
$restrictedCategory = array('2', '3');

// Ignore specific category article
if (in_array($article->catid, $restrictedCategory)) {
return;
}



Restrict certain article id

// ignore specific single article id
if ($article->id == '8') {
return;
}
·
Wednesday, 24 October 2018 10:18
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post