-
rich! @ etiviti posted on the forum topic Show Nav Link for Group Members Only in WP (not MU) in the group How-To and Troubleshooting: 15 years, 6 months ago
is the group public? as bp_group_is_visible checks that first, if not then checks groups_is_user_member
-
rich! @ etiviti posted on the forum topic Querying specific groups based on parameters in the group How-To and Troubleshooting: 15 years, 6 months ago
first off – remove the single quotes around $slug_params = “‘” . $details_result . “‘”;
second – no reason to pass in the slug param once you have the loop scope (everything is stored into a global context – just use the proper group template tags)
-
rich! @ etiviti posted on the forum topic Help: bp-custom.php in the group How-To and Troubleshooting: 15 years, 6 months ago
testing that really quick…
Fatal error: Call to undefined function is_main_blog() in D:xampplitehtdocsbuddypresswp-contentpluginsbp-custom.php on line 4 -
rich! @ etiviti posted on the forum topic Can group avatar size be changed? in the group How-To and Troubleshooting: 15 years, 6 months ago
bp_group_avatar accepts the following args
$defaults = array(
‘type’ => ‘full’,
‘width’ => false,
‘height’ => false,
‘class’ => ‘avatar’,
‘id’ => false,
‘alt’ => __( ‘Group avatar’, ‘buddypress’ )
); -
rich! @ etiviti posted on the forum topic Getting @ mention email notifications in blog comments in the group How-To and Troubleshooting: 15 years, 6 months ago
possible – you’ll need to code it in though as it is only setup to sift over activity content. Have a look at the bp_activity_at_message_notification functions on the basics.
*edit – though main blog comments hit the activity stream filter – thus triggering @me mentions.
-
rich! @ etiviti reviewed the plugin BuddyPress Usernames Only: 15 years, 6 months ago




awesome just installed – had previously hacked this feature into the core… time saver! -
rich! @ etiviti joined the group BuddyPress Usernames Only 15 years, 6 months ago
-
rich! @ etiviti posted on the forum topic bp_user_link doesn’t work anymore? in the group How-To and Troubleshooting: 15 years, 6 months ago
filed a ticket
https://trac.buddypress.org/ticket/2409fat finger? – returning the logged in user instead of the displayed user
function bp_displayed_user_link() {
echo bp_get_loggedin_user_link();
}
function bp_user_link() { bp_displayed_user_link(); }where both should be point to:
function bp_get_displayed_user_link() {
global…[Read more] -
rich! @ etiviti posted on the forum topic Thank You! in the group BuddyPress Activity Stream Bump to Top: 15 years, 6 months ago
thanks! 🙂 it is simple but effective
-
rich! @ etiviti posted on the forum topic How to remove those brackets ? in the group How-To and Troubleshooting: 15 years, 6 months ago
what pages? never noticed them (but might be related to jQuery+ajax)
-
rich! @ etiviti posted on the forum topic adding new alert into activity stream in the group Creating & Extending: 15 years, 6 months ago
so you need to create a record outside the scope of BuddyPress? (if you can can bring in the global bp – then you just need a wrapper around function bp_activity_add )
Just have a look at the class BP_Activity_Activity and the save() function
-
rich! @ etiviti posted on the forum topic Group Member Count Showing Users Already Deleted in the group How-To and Troubleshooting: 15 years, 6 months ago
looking at the code – the total_member_count groupmeta updates when on the group’s members page (‘groups_template_group_members’, ‘groups/single/home’)
-
rich! @ etiviti posted on the forum topic Feature Request – View Unbumped Stream in the group BuddyPress Activity Stream Bump to Top: 15 years, 6 months ago
good question – i would have to look into that. it would be easy to find the “unbumped” activity records just by checking if the activity_meta is not there. but how to pull out the information into a “filtered” activity stream is a different story.
-
rich! @ etiviti posted on the forum topic Re-arrange sitewide activity new blog post output in the group How-To and Troubleshooting: 15 years, 6 months ago
there is a filter on the $activity_action that is pushed into the activity record bp_blogs_activity_new_post_action
-
rich! @ etiviti posted on the forum topic Add "Favorite" button to website comments? in the group How-To and Troubleshooting: 15 years, 6 months ago
A user can only “favorite” the activity record for that new_blog_post or new_blog_comment made within the activity stream part of buddypress – when a user views the main blog that activity information is not pulled in. (i have an experimental plugin which replaces all of the blog comments with activity stream) Though it might be […]
-
rich! @ etiviti posted on the forum topic How to make pages like Groups, Forums, members and updates only accessible to members? in the group How-To and Troubleshooting: 15 years, 6 months ago
actually would be very simple – within a bp-custom.php file. have a look at the bp-core-templatetags.php file which contains some simple functions that determine what component/page you are on. Just need to hook that into bp and checked if logged in (if not, then redirect)
ie
bp_is_group()
bp_loggedin_user_id()
etc -
rich! @ etiviti started the forum topic Bump Activity to the top when a comment reply is made (now a plugin) in the group BuddyPress Activity Stream Bump to Top: 15 years, 6 months ago
I promoted this hack to a plugin – since 1.2.4 addressed a bug with re-saving activity records. (please DO NOT USE this if you have a lesser version than 1.2.4.1 – you have been warned) The basics: when a comment reply to an activity record is made – this will update the main date_recorded for […]
-
rich! @ etiviti posted on the forum topic Activity stream as front page in BP 1.2.4, WP 3.0 b2 in the group How-To and Troubleshooting: 15 years, 6 months ago
did you file a trac ticket? (same login info here)
https://trac.buddypress.org/newticket(i can dup the same issue on a fresh single wp3b2 install)
-
rich! @ etiviti posted on the forum topic Time stamp message pages incorrect in the group How-To and Troubleshooting: 15 years, 6 months ago
what version of BP? i had this problem with older versions (1.2.3+ has worked fine)
-
rich! @ etiviti posted on the forum topic Add "Favorite" button to website comments? in the group How-To and Troubleshooting: 15 years, 6 months ago
There is a disconnect between activity stream “favorite” button and the actual blog comments/section
- Load More
@nuprn1
Not recently active