Apparently it appears with non friends activities.. BTW, I’m using “buddypress-friends-only-activity-stream” plugin. Could it be the reason?
Yes it is but What may caused this issue in it? and if I wanted to not use it, how can I restrict activities to friends’ activities only?
Thank you
Anybody? how to hide non friends activity updates from activity stream?
The problem in the plugin is in the row:
$activities->pag_num = $activities->pag_num -1;
When it takes 0 value.
What does pag_num refer to in activity?
hello @amalsh, I did the dirtiest quick hack ever… i wouldn’t advice it, but it removed the error…
replacing : $activities->pag_num = $activities->pag_num -1;
by :
if ($activities -> pag_num != 1) {
$activities -> pag_num = $activities -> pag_num – 1;
}
Hey @funkolector, many thanks. This is what I really need.
@richoz Yeah the plugin is a blessing. None of the credit belongs to me so @pollyplummer and Rich Fuller gets full credit. I just adjusted a couple things based on stuff I viewed on the net and it happened to work out and make it work I suppose the way most people expected too.
Which brings me to the next question: How to change the tab title into something like “Me & My Friend” instead of “All Members”? And also the correct total “Me & My Friend” number. Preferably this is done by the plugin itself.
Thanks in advance.
@richoz
A simple way would be to use a language file:
https://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/
Personally on my own test site I used a function that removes the tab all together since the stream is unified between you and your friends and make this tab irrelevant.