Search Results for 'custom activity page'
-
Search Results
-
I added some customized content to the buddypress.php template in my theme, but no matter the section (notifications, activity, profile etc.), my custom content appears in every page.
How can I have the content appear only on the home page (or another specific profile page?)?
Thanks in advance.
I am tinkering with some tricks shown here: https://usersinsights.com/buddypress-custom-profile/.
It has been mostly successful and straight forward more or less. The examples in the link adds customized content to the user’s HEADER section however (where Avatar & last-active time is shown) using:
add_action( ‘bp_profile_header_meta’, ‘my_function’ );
How might I add actions to the main body of a profile page (i.e. in the Base profile section [before and after])? I’ve tried substituting ‘bp_profile_header_meta’ with the other hooks shown in the tutorial i.e.:
add_action( ‘bp_before_profile_content’, ‘my_function’ );
add_action( ‘bp_before_member_activity_content’, ‘my_function’ );but none of them displays the content within the main body of the profile. Please help.
Thanks in advance.What I am trying to do is add a custom page type to my customizr child theme. This page would act as the front page for the site. I want to replicate most of the features of the current front page but show the (public) activity stream in a central column and recent blog posts in a sidebar (rather than filling the page as at present). A bit more like Facebook etc..
I’m getting my head around the complicated beast that is Customizr but I am clueless as to what I need to even start looking at to put the activity feed on the page as well.
I’m feeling overwhelmed by something that I keep thinking should be relatively straight forward. I would welcome some guidance to ease me into this.
Topic: Custom Notifications
Hi,
I am trying to add some notifications up near the breadcrumbs in my site. I tried just adding:
`bp_notifications_add_notification()’
To my page that renders the content but no numbers appear. What do I need to do so I can have an icon along with a number that represents activity?
For example, Mentions – 2
Thanks,
StanDear all
I have been searching around on google without luck for this one.
I have a custom post type, let say “city”, where I want each city to have its group like or group activity feed. Either by mimicking a group or creating a separate group for each post, in order to show the activity on the “city” page frontend. And allowing users to follow
Thanks for any advise in order to have this functionality
Eirik
Hello,
I know this has been asked before and I followed the suggestion from this thread:
https://buddypress.org/support/topic/block-activity-stream-types/and tried adding this code to my the child theme functions.php and to bp-custom.php:
// Filter bbPress from updating activity stream function imath_activity_dont_save( $activity_object ) { $exclude = array( 'bbp_topic_create', 'bbp_reply_create',‘friendship_created’, ‘joined_group’, ‘updated_profile’, ‘updated_profile_photo’); // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function if( in_array( $activity_object->type, $exclude ) ) $activity_object->type = false; } add_action(‘bp_activity_before_save’, ‘imath_activivity_dont_save’, 10, 1 );but it didn’t work, profile updates, profile photo updates, new friendships, forum topics and forum replies are still showing on the activity page 🙁
What am I doing wrong?
Thank you for your help.I’m running WP 4.9.8 with the Twenty Twelve theme on my site http://www.charlottemasoneducation.org
All plugins are updated.Plugins:
Akismet Anti-Spam
bbPress Version 4.0.8
BP Registration Options Version 2.5.14
BP xProfile Location Version 4.3.5
BuddyPress Version 1.6
BuddyPress Activity Plus Version 3.1.0
BuddyPress Activity ShortCode Version 1.6.4
BuddyPress Edit Activity Version 1.1.5
BuddyPress Group Email Subscription Version 1.0.9
BuddyPress Groups Extras Version 3.8.2
InfiniteWP – Client Version 0.3.0
Remove Dashboard Access Version 3.4.1
The Events Calendar Version 1.0.2
W3 Total Cache Version 1.4.2
Widget Logic Version 0.9.7
Wordfence Security Version 5.9.0
WP SMTP Version 7.1.11 | By Wordfence | View detailsWhen I go to APPEARANCE > CUSTOMIZE > HOMEPAGE SETTINGS and choose Sitewide Activity as the home page, it causes a redirect loop on the homepage. While I’m logged in as admin, I can see the Sitewide Activity page by clicking on the home page, but anyone who is logged out, gets a “too many redirects” error.
When I change the settings to REGISTER as the home page, logged in members are redirected to the MEMBER page after logging in.
I have tried adding a redirect plugin and that breaks the site. I would really like members to land on the Sitewide Activity feed once they log in.
Any help would be greatly appreciated. Thank you.