Search Results for 'buddypress'
-
Search Results
-
Hi
We are using the WPLMS plugin with all email templates powered by Buddypress.
Can you direct us to the Export data request mail. This is not found in the WP > Emails list of templates nor the WPLMS Touchpoint email templatesRegards
Does anyone know how to update the time format for BuddyPress? I’d like to change the format from the default.
20 seconds ago. I’d like to it to read a few seconds ago.
1 day, 7 hours ago. I’d like it to read 1 day ago.
1 week, 2 days ago. I’d like it to read 1 week ago.
2 weeks, 3 days ago. I’d like it to read 2 weeks ago.And so on..
Does anyone actually know how to achieve this without telling me to look at
function bp_core_time_since?I think I’m having an issue becouse of I use cache plug-ins my site? Could there be a conflict?
When I install there are some design problems occures.
Thank you in advance.
Dear Forum Members,
I am trying to customize the standard buddypress activation email that is sent upon registration of a new user (I am using latest WordPress and Buddypress Versions).
After following the suggestions on https://websistent.com/custom-buddypress-activation-email/, I did manage to edit the subject line with following snippet in wp-content/plugins/bp-custom.php:
add_filter( 'bp_core_signup_send_validation_email_subject', 'custom_buddypress_activation_subject', 10, 2 ); function custom_buddypress_activation_subject( $subject, $user_id ) { $user = get_userdata( $user_id ); return $user->user_login . ' – Activate your ' . get_bloginfo( 'name' ) . ' account'; }This works fine.
However, the following snippet for customizing the message of the email does not work:
add_filter( 'bp_core_signup_send_validation_email_message', 'custom_buddypress_activation_message', 10, 3 ); function custom_buddypress_activation_message( $message, $user_id, $activate_url ) { $user = get_userdata( $user_id ); return "Hi $user->user_login, Thanks for registering! To complete the activation of your account please click the following link: $activate_url Thanks, Jesin"; }I have tried the approach, as outlined here https://buddypress.org/support/topic/customizing-buddypress-activation-emails-outside-and-still-get-activation-key/, too. It did not work neither.
I am not sure whether this hook (bp_core_signup_send_validation_email_message) is still working or if there is a better way to hook into this message.
Could anybody shed some light on this issue and help me with customizing the activation email content while still prodiving activation link and activation key?
Thanks a lot and kind regards
JoachimHi,
Just installed BuddyPress and have a question. We have bbPress for forums and wanted PM capability for which the best option seemed to be BuddyPress. I don’t really want a social media feel to the site – it’s a club site with a number of features – events, forums and some static information.
Normally the home page displays “latest posts” which is used for management updates etc. It’s important not to lose this, but as soon as I activate BuddyPress, the home page disappears and is replaced by the “Members” page. I’ve tried disabling “enable default front page for member profiles” but this has no effect. If I disassociate the “members” page in BuddyPress settings, the home page returns, but member profiles become inaccessible (404 error). Is there a way to have the standard home page but allow access to the member’s profile via another link in the menu somewhere (and by clicking the link under a member avatar)?
Many thanks
Nick
Hi I have a WordPress site setup that already has user-types set as Vendors.
I am wondering is there anyway to add in Buddypress so that all Vendor user roles are able to use the Buddypress platform, but I would like to restrict access to other members (buyers, and all other role-types for users except admin of course).
Is this possible?
Hello!
Could someone perhaps help me adapt this code? Currently it shows a copy of all blog comments in the activity feed. I want it to rather show copies of learndash lesson comments to their associated course group. There is a plugin that does this, but it’s glorified with many other features, and the feature that I would like for doesn’t work as it should anyways.
/* Post Comments in Buddypress Activity */ function bca_record_activity($comment_id, $approval) { if($approval == 1) { $comment = get_comment($comment_id); $userlink = bp_core_get_userlink($comment->user_id); $postlink = '<a href="' . get_permalink($comment->comment_post_ID) . '">' . get_the_title($comment->comment_post_ID) . '</a>'; bp_activity_add(array( 'action' => sprintf( __( '%1$s commented on the lesson: %2$s', 'buddypress' ), $userlink, $postlink), 'content' => $comment->comment_content, 'component' => 'bp_plugin', 'user_id' => $comment->user_id, 'type' => 'new_blog_comment', )); } } //comment_post is triggered "just after a comment is saved in the database". add_action('comment_post', 'bca_record_activity', 10, 2); // We want activity entries of blog comments to be shown as "mini"-entries function bca_minify_activity($array) { $array[] = 'new_blog_comment'; return $array; } add_filter('bp_activity_mini_activity_types', 'bca_minify_activity'); // Disables comments on this type of activity entry function bca_remove_commenting($can_comment) { if($can_comment == true) { $can_comment = ! ('new_blog_comment' == bp_get_activity_action_name()); } return $can_comment; } add_filter('bp_activity_can_comment', 'bca_remove_commenting');Plugin I reference: https://wordpress.org/plugins/buddypress-learndash/
Your time and support is greatly appreciated!
Topic: Forgot Where A Page Is?
I have forgotten where a particular page is in Buddypress. When you first register, you fill out the required and optional profile fields. You also get to choose a visibility to assign to each profile field. Where do I go to edit the visibility choices that were originally made? Thanks.
Hi everyone.
I am using BuddyPress 6.2.0 and “loco translate”,
my BuddyPress is 100% translated on loco translate, but some label does not show the original words.
For example in the “Groups” page, “Create new group” is translated (which is a link), while “My Groups” and “All Groups” (which are buttons) show the original words and not the translation.
please help me to fix itHi,
I think I’m quite right here?
// Trying to cancel friendship. if ( 'is_friend' == BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), $friend_id ) ) { check_ajax_referer( 'friends_remove_friend' ); if ( ! friends_remove_friend( bp_loggedin_user_id(), $friend_id ) ) { echo __( 'Friendship could not be canceled.', 'buddypress' ); } else { echo '<a id="friend-' . esc_attr( $friend_id ) . '" class="friendship-button not_friends add" rel="add" href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_friends_slug() . '/add-friend/' . $friend_id, 'friends_add_friend' ) . '">' . __( 'Add Friend', 'buddypress' ) . '</a>'; } // Trying to request friendship. } elseif ( 'not_friends' == BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), $friend_id ) ) { check_ajax_referer( 'friends_add_friend' ); if ( ! friends_add_friend( bp_loggedin_user_id(), $friend_id ) ) { echo __( ' Friendship could not be requested.', 'buddypress' ); } else { echo '<a id="friend-' . esc_attr( $friend_id ) . '" class="remove friendship-button pending_friend requested" rel="remove" href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_friends_slug() . '/requests/cancel/' . $friend_id . '/', 'friends_withdraw_friendship' ) . '" class="requested">' . __( 'Cancel Friendship Request', 'buddypress' ) . '</a>'; } // Trying to cancel pending request. } elseif ( 'pending' == BP_Friends_Friendship::check_is_friend( bp_loggedin_user_id(), $friend_id ) ) { check_ajax_referer( 'friends_withdraw_friendship' ); if ( friends_withdraw_friendship( bp_loggedin_user_id(), $friend_id ) ) { echo '<a id="friend-' . esc_attr( $friend_id ) . '" class="friendship-button not_friends add" rel="add" href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_friends_slug() . '/add-friend/' . $friend_id, 'friends_add_friend' ) . '">' . __( 'Add Friend', 'buddypress' ) . '</a>'; } else { echo __( "Friendship request could not be cancelled.", 'buddypress' );I would like to replace all text buttons with matching icons, how does that work? An example of a button here in the code is sufficient for me to understand.
THANKS
Topic: Hiding BuddyPress Profiles
Is there a simple way to ensure that users cannot see each others’ BP profiles?
…For example to set BP so that users can only see their own profiles (while admin can see all profiles).
Topic: Hiding Toolbar for members
Hi,
how can i hide the wordpress toolbar (adminbar) for logged in (!) buddypress members?
thanks!
Hello Guys!
I have a problem with BuddyPress v. 6.2.0.When I try to add an entry (activities) to my profile it is not visible. It is also not in the history (in the admin panel). After refreshing the page, it appears only under my nickname with a note (a few seconds ago). This note is still the same. After adding a comment, this one also does not appear in activities.
The second problem is with group formation. When I want to create a group and give its name and description, and then try to go to the next stage, I get a message that it is not possible to create a group, try again later.
Anyone can help me?
Hi!
when i integrate buddypress items (such as profile, messages, groups…) in the menu, they are just shown if the visitor is logged in.
when i integrate a regular page (i created in wordpress) in the menu, it is shown weather the visitor i slogged in or not.
when i copy the css class of a buddypress menu item (e.g. bp-menu bp-settings-nav) and paste it in the css field of the regular page, this menu item is also just shown to logged in visitors. this is exactly what i need!
the problem is just, that it kind of confuses the menu. all tems with the same class are spoken at once.
is it possible to create my own css class of the same kind, that hides the menu items in case the visitor isn’t logged in?!
thanks a lot!!!
Topic: creating intranet login page
Hi,
i would like to redirect all users who are not logged in to the buddypress login page. Is this possible with buddypress plugin?
this is for creating an intranet.
i’m using the latest version of wordPress, buddyPress and bbPress.
thanks!
Topic: Create a Site Bug
dear team,
i am afraid i´ve found a bug in the “create a site” process under wordpress multisite and buddypress.issue: when creating a new site via BP frontend (/create/), BP uses the site domain of the BP_ROOT_BLOG blog id (site where BP runs) instead of the BLOG_ID_CURRENT_SITE domain (main site of the multisite install) to create a new site on the multisite install, but shows the “correct” multisite main domain on the BP create frontend when entering site name and site title of the new site.
i noticed that issue through a new project setup where i needed to set the BP site on a different domain than the main site of the multisite. tested and replicable on my siteground install with wp 5.5 and bp 6.2.0
looks like a low prio bug, but if someone has an idea to fix this, i would love to try it on my testinstall.
tnx, Eric
Topic: Error in Profile Page
Hi everyone, I am new to BuddyPress and I founded amazing! Really easy to install and Set-up.
I am just having issue with one page, the profile page. When I go to members page (http://www.montesdeoca.guachis.com/miembros/) everything is fine but when I go further in one member (http://www.montesdeoca.guachis.com/miembros/joacotest/) all the header messed up, also the sticky one I believe that is going to a default version and not to the right one.
Wordpress ver: 5.5
BuddyPress: 6.2.0
Theme: Buzzy MikadoAny idea or clue will be really appreciated.
Thanks!