Search Results for 'buddypress'
-
AuthorSearch Results
-
July 27, 2012 at 12:05 am #138017
In reply to: How to place $bp->loggedin_user->domain in
modemlooper
ModeratorDon’t use globals in template files. Use template tags.
https://codex.buddypress.org/developer-docs/buddypress-template-tags/
July 26, 2012 at 10:00 pm #138015Paul Wong-Gibbs
KeymasterIf this is pure bbPress question, you’re best to ask on bbpress.org, as that where those experts are. Or do you mean that you think BuddyPress is affecting bbPress’ log in process?
July 26, 2012 at 9:51 pm #138014In reply to: Non Registered Users Can View Registered Users
aces
ParticipantDo you mean something like the walled garden technique?
I use (bp version 1.5.6 ): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/code-snippet-make-site-privet-parse-error/#post-130982
Then I use the following to hide feeds from logged out users
`
function bp_remove_feeds() {
remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
}
add_action(‘init’, ‘bp_remove_feeds’);
`July 26, 2012 at 9:09 pm #138012frank tredici
Member@aces. I am looking through your response. Where do I define the location of my Mystery Man graphic inside your code solution?
I have it located at `../wp-content/themes/my-theme/images/mystery-man.jpg`
July 26, 2012 at 8:53 pm #138011aces
ParticipantIt’s not quite the same thing but with bp version 1.5.6, I use the following in bp-custom.php:
// see: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/1-5-group-avatars-using-mystery-man-default#post-109448 function my_avatar_defaults() { global $bp; // change 'identicon' to anything listed here: // http://en.gravatar.com/site/implement/images/#default-image $bp->grav_default->group = 'identicon'; $bp->grav_default->user = 'monsterid'; } add_action( 'bp_init', 'my_avatar_defaults' );July 26, 2012 at 8:33 pm #138010Toby Cryns (@themightymo)
Participant@mercime – We are using group forums. We are, however, rewriting the urls using the forum slug constant in wp-config.php.
It is weird, because this is only happening on our DEV environment. It seems to be working fine on LIVE.
Any other thoughts? Possible avenues to explore?
July 26, 2012 at 8:22 pm #138009In reply to: Forum posts problem in groups
@mercime
Participant@dreamlarp basic troubleshooting is changing to bp-default theme. I suggest that you double-check that all the BP components are in working order using bp-default theme before installing/activating a third-party theme.
Could also be a plugin issue, one that has not been updated for latest BP version. There are a variety of factors which could trip up a smooth installation. First thing is change to bp-default theme and work from there.
July 26, 2012 at 8:16 pm #138008In reply to: Help needed in buddypress
@mercime
ParticipantI would suggest posting at WP support forums https://wordpress.org/support/plugin/buddypress-activity-plus
July 26, 2012 at 8:15 pm #138007In reply to: BuddyPress in subdomain
@mercime
ParticipantYou can change Settings > Privacy option so that one of the blogs – like your dev site – will not be indexed.
July 26, 2012 at 8:10 pm #138006In reply to: Sidebar in Footer in Wootheme
@mercime
Participant@sparklyscotty I presume that you looked if your theme was listed in the page I linked to above? https://buddypress.org/community/groups/installing-buddypress/forum/topic/alligning-buddypress-with-swatch-theme/
July 26, 2012 at 8:09 pm #138005frank tredici
MemberThe hook is `bp_core_signup_user`. https://buddypress.trac.wordpress.org/browser/tags/1.5.6/bp-members/bp-members-signup.php#L443
July 26, 2012 at 8:02 pm #138004In reply to: Buddypress and phpBB forums
@mercime
Participant@beggers best place to ask is at the WordPress.org forums and to search plugins there. There was a plugin that “bridged” the two (WP/phpBB) way back.
Right now I see the following
– https://wordpress.org/extend/plugins/phpbb-single-sign-on/
– https://wordpress.org/extend/plugins/phpbb-recent-topics/
– https://wordpress.org/extend/plugins/tags/phpbbJuly 26, 2012 at 5:42 pm #138003fixanddestroy
Member@mercime : Thanks for replying! Unfortunately, `define ( ‘BP_ENABLE_ROOT_PROFILES’, true );` is not in bp-custom.php, or anywhere else that I can find, so that isn’t the solution. The only functions in there at the moment are custom avatar dimensions for full size and thumbnail avatars. I tried adding `define ( ‘BP_ENABLE_ROOT_PROFILES’, false );` in case I could explicitly turn that function off, but that didn’t work either.
Is there anywhere else that root profiles are possibly enabled? Any other ideas?
July 26, 2012 at 5:32 pm #138002@mercime
Participant== Rather than linking to ‘http://site.com/members/username/’ the way they should, they instead link to ‘http://site.com/username/’. ==
@fixanddestroy that happens when you or someone else added
`define ( ‘BP_ENABLE_ROOT_PROFILES’, true );`
in your bp-custom.phpJuly 26, 2012 at 5:18 pm #137998In reply to: Drop down options defaults to ”0”
@mercime
Participant@12sp This is an issue you should bring to your theme developer’s forums. As far as I know, if you’re using Suffusion theme with BuddyPress, you also need to install a plugin https://wordpress.org/extend/plugins/suffusion-buddypress-pack/
July 26, 2012 at 5:01 pm #137996@mercime
ParticipantStrange. What about regular members? Can they see forums page?
Also, since you’re not using Group Forums, disable Discussion Forums in menu BuddyPress > Components. Go back to your sitewide forums page and check if it’s working properly.
July 26, 2012 at 4:55 pm #137995In reply to: Group Hierarchy not working
@mercime
ParticipantClosing this. Topic has already been posted the plugin’s forums https://buddypress.org/community/groups/bp-group-hierarchy/forum/topic/group-organizer-not-listing-in-my-order/
July 26, 2012 at 4:11 pm #137993idanny08
Member@mercime thank you for your time. everything it’s working fine. breadcrumbs are not working and I removed it.
July 26, 2012 at 2:18 pm #137991In reply to: Member/User Specific Items using functions.php
frank tredici
MemberHi @joelshakespear … I think you are about 4-5 days behind me. I looked into this very same thing and have some code for you to glance over:
`
if (bp_get_member_user_id() != 1 /*admin*/ && bp_get_member_user_id() != 35 /*user35*/ && bp_get_member_user_id() != 36 /*user36*/) {
$members_phoneNumber = bp_get_member_profile_data( ‘field=Phone Number’ );
if (empty($members_phoneNumber)) $members_phoneNumber = ‘(no phone number entered)’;
$members_title = bp_get_member_profile_data( ‘field=Title’ );
if (empty($members_title)) $members_title = ‘(no title entered)’;
echo ‘‘ . $members_phoneNumber . ‘ | ‘ . $members_title;
if (is_site_admin()) {
$user = new WP_User( bp_get_member_user_id() );
$user_role = ucwords(wp_sprintf_l( ‘%l’, $user->roles ));
if ($user_role == ‘Bbp_participant’) $user_role = ‘Administrator’;
echo ‘ | ‘ . $user_role . ‘‘;
}
echo ‘‘;
}
`I use it in the members loop script, but you could probably tear it apart and use it on the member’s page for your needs. Sure hope it helps you out.
July 26, 2012 at 2:09 pm #137989frank tredici
MemberFYI, the BuddyPress development team has rejected my enhancement request to implement a Community Notification Capability (see https://buddypress.trac.wordpress.org/ticket/4381).
July 26, 2012 at 2:08 pm #137988frank tredici
MemberSounds good @joelshakespear — I will gladly let you know what I find out. Keep checking back here and I will update this post as I gain ground on finding a good solution for Community Notification Capabilities.
July 26, 2012 at 12:43 pm #137984frank tredici
MemberThanks @joelshakespear
Where is `BP Mass Messaging` ? Is it an Admin option? Is it a plugin?
If it is the plugin, I already tried it and it does not work. I got:
`You do not have sufficient permissions to access this page.`
Note, I am the WP Admin.Plus I don’t think it is supported by the developer any longer. I posted to their forum site and s/he did not respond.
P.S. we have our own servers and host the site internally so the email blast to our 250 members will not be an issue.
July 26, 2012 at 12:04 pm #137982In reply to: Is there a shortcode for usernames?
tamilcselvan
Member@aces Its works…thanks.
July 26, 2012 at 11:38 am #137981In reply to: Forum posts problem in groups
July 26, 2012 at 11:33 am #137980In reply to: [Resolved] Avatar not uploading
temmy
MemberThanks mo, you gave me the right concept needed. I tried setting the write permission to 777 and it still did not work. If that’s the case, then the GD Library must be the issue. I found this post https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/avatar-problem-upload-and-crop-works-but-not-showing-image/. I immediately called my host company and once GD Library was upgraded… that was it! I can now upload avatars. My buddypress site is now ready with avatar upload. Thanks! CASE RESOLVED.
-
AuthorSearch Results