Trying to make new Activity tab
-
hi there,
I’m working on my site’s forums, powered by bbpress and buddypress.One thing I dislike is the existance of both Favorites and Subscriptions. perhaps there’s something I don’t understand but it seems reduntant. I can’t even get anything to show up under the Favorites tab of the Activity (tried to favorite a forum topic and then posting as another user, but nothing).
to the point: I want to get rid of Favorites (already did) and only have Subscriptions.
but I’d like the subscriptions’ activity to show up under the user Activity, in a new tab. Yes I know the user can see the subscribed forums in the members page -> Forums -> Subscriptions, but this is just the list and not a waterfall of the posts inside those threads.I’ve seen some posts where people try to add a new activity tab. this one was the clearest one, and I’ve tried following it to no avail. is the information completely outdated now?
the problem is I cannot even get the hook ‘bp_activity_type_tabs’ to do anything. something as basic as this fails to produce anything:
function bn_add_activity_tab() { echo 'hello'; } add_action( 'bp_activity_type_tabs', 'bn_add_activity_tab', 1, 2 );
if I understand correctly it should hook itself to the activity type tabs. but it does absolutely nothing.
I tried it in my theme’s functions.php, as well as in a plugin (which I also try to force be loaded after buddypress like this). other things in my plugin work (so I’m sure the plugin is loaded and working)any ideas?
thanks
- The topic ‘Trying to make new Activity tab’ is closed to new replies.