Search Results for 'buddypress'
-
Search Results
-
I was wondering if there is a way to my Buddypress users to add information to their Friends Profiles
(visible only for themselves)Example: I can add the information to my Friend XY “He wants to get contacted only after 3 pm”
Hey there! I encountered a problem while using the BuddyPress plugin with Geo Directory. (I use Elementor Pro)
I downloaded the plugin and set up the Register & Activate pages manuall, but none of the pages were selected. So, I created two new pages called “register” and “activate.” However, I noticed that the button on the side, as shown in the documentation, was missing. When I checked the pages, it showed that BuddyPress registration pages were allocated, but there was no shortcode block or any content on the pages. Additionally, when I tried to load the pages, it failed and gave me an error. I even tried saving in safe mode, but the issue persisted. I would really appreciate any help in fixing this problem. Thanks in advance! 🙏
Here is the Loom:
Hi guys,
I have installed “Events Manager” with buddypress and:
I can’t find the way to activate budypress toast notifications for Bookings (+1 in the bell and the little message). They just work by email.
For example: If a user has a new reservation on his event, He should be notified. If the reservation is accepted, the other user should also be notified, etc.
Could anyone help?
Thank you.
Hello,
I am just getting my toes into BuddyPress’ documentation, and came across the ‘popular’ user type in BP_User_Query.
I have no idea how ‘popular’ users are defined in BuddyPress. My questions are as follows:
1. How is the ‘popular’ user type defined and sorted in BuddyPress?
2. If ‘popular’ users are calculated across a period of time, could one theoretically sort users into ‘most popular by day, week, month, etc.’?
3. The documentation recommends bp_parse_args() for filtering members. What would a simple function to return popular users using bp_parse_args() look like?Topic: BP page not found
Hello, I recently installed BuddyPress to generate a member space on my site. When I create the Members pages, Activate… none of them work and it either shows me a critical error or it redirects me to my 404 page 😔 Could you help me please? (PS: I have the WpForo plugin for my forum and it is compatible with BuddyPress for members). Thank you in advance for your help. Cordially
Topic: Shortcode
Hello, Can the buddypress profile and its entire information be provided with a code on another subpage?
e.g. I have created a page and I want to display everything from the user’s profile above it.
I am using Buddypress pluging with BuddyPress Xprofile Custom Field Types
I want to Restrict some of profile field created in buddypress profile.
ex. i have singup field set , information field set, premium information field set.
so i want to restrict premium field set , if user want to add any information in premium field set he/she need a membership add details.Topic: Booking and/or Calendar
I did a search of previous posts and none of them were helpful and were from so many years ago. I’m really hoping there is an up to date solution.
I am looking for a plugin that will integrate with Buddypress allowing visitors to book and/or see a person’s availability on a calendar. There are so many booking plugins I have used in the past but have no idea how they could integrate with buddypress.
If this is impossible then at least I would like the user/member to be able to display a calendar on their profile where they could manually enter booked dates and times.Hi,
I have a Custom Post Type ‘golfs’ created with CPT UI.
I try to get the golfs comments (activated) in the Activites feed of BuddyPress without success…I put the code i found here ( https://codex.buddypress.org/plugindev/post-types-activities/ ) in my bp-custom.php file :
function customize_page_tracking_args() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } // Don't forget to add the 'buddypress-activity' support! add_post_type_support( 'golfs', 'buddypress-activity' ); /** * Also don't forget to allow comments from the WordPress Edit Page screen * see this screencap https://cldup.com/nsl4TxBV_j.png */ bp_activity_set_post_type_tracking_args( 'golfs', array( 'action_id' => 'new_blog_page', 'bp_activity_admin_filter' => __( 'Published a new page', 'custom-textdomain' ), 'bp_activity_front_filter' => __( 'Page', 'custom-textdomain' ), 'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">page</a>', 'custom-textdomain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ), 'contexts' => array( 'activity', 'member' ), 'comment_action_id' => 'new_blog_page_comment', 'bp_activity_comments_admin_filter' => __( 'Commented a page', 'custom-textdomain' ), 'bp_activity_comments_front_filter' => __( 'Pages Comments', 'custom-textdomain' ), 'bp_activity_new_comment' => __( '%1$s commented on the <a href="%2$s">page</a>', 'custom-textdomain' ), 'bp_activity_new_comment_ms' => __( '%1$s commented on the <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );New golfs are displayed in the activities feed but not the new comment.
Can anybody tell me what’s wrong ?
WP 6.2.2
BuddyPress 11.2.0
PHP 7.4Thank’s in advance
GilEstá ocorrendo um erro crítico no meu site, algo sobre um problema no código BP-CORE e a ausência de um plugin para Cache de Objetos Persistentes.
A informação é exibida na página de diagnóstico, e eu preciso de ajuda para resolver.
Desde já obrigado pela atenção!
Hello
I find many codes and plugins that help me to avoid the activation email when members join in the site, but when I tried these options affect the invitation system of buddyboss.
For example, if I invite a user to join with a specific role “teacher” with the code the join as subscriber. I know I can change the role, but I want to know if it’s possible to automatically detect the role where I invite the user.
“”function disable_validation( $user_id ) {
global $wpdb;
$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );
$users = $wpdb->get_results( “SELECT activation_key, user_login FROM {$wpdb->prefix}signups WHERE active = ‘0’ “); foreach ($users as $user) {
bp_core_activate_signup($user->activation_key);
BP_Signup::validate($user->activation_key); //fix roles
$user_id = $wpdb->get_var( “SELECT ID FROM $wpdb->users WHERE user_login = ‘$user->user_login'”); $u = new WP_User( $user_id );
$u->add_role( ‘subscriber’ );
}
} add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );
add_filter( ‘bp_core_signup_send_activation_key’, ‘__return_false’ );”
Plugin name: BuddyPress Auto Activate Auto Login and BP Disable Activation Reloaded
Thanks for the helpI installed the theme “Random Content” on 3 of my Buddypress Websites.
I like it, that is what I was looking for for a long time!
I want to show random ads in my sidebar and it works good.BUT
I noticed that it has a conflict with rt-media for Buddypress.
The random content will not show up on pages where RT-media shows pictures:
– on the members media pages and
– on the media pages of my groupsCan you undrestand why and how we can fix that?
Hello,
I would like assistance with implementing a functionality for my WordPress website using BuddyPress. I have a private BuddyPress group, and I want to restrict access to only those users who have a valid member number. Each user has a member number, along with their last name, stored in a database.
I would like to create a mechanism where users requesting to join the group are required to enter their member number. Upon clicking the “Request” button, I want the system to validate the entered member number against my database, which contains two columns: member number and last name. If the user’s last name matches the database entry and the member number is correct, I want their request to be automatically accepted.
Could someone guide me in the right direction or provide an example of how I can achieve this?
Hi,
Our service image
We would like to match amateur baseball team games. As an example, there would be multiple applications for a specific game, and the recruiter would select one and match it.
In addition, we would like to add functions for recruiting new team members and helpers as well.We are currently creating a matching site using HivePress (https://hivepress.io/).
I would like to give HivePress the BuddyPress group/member functionality, please let me know how(integration with BuddyPress).
Hello,
I have isolated an issue that causes Buddypress’s Dynamic blocks to fail to load.
Step one. Have Neve Theme and Buddypress installed, and place Dynamic Members and Dynamic Groups blocks on a Page.
Step two. Verify they work with sample members and groups.
Step three. Install Gamipress and reload the page that was working previously.
Errors:
Dynamic Members:Uncaught TypeError: Cannot read properties of null (reading ‘closest’)
at dynamic-members.js?ver=11.2.0:2:1081
at Array.forEach (<anonymous>)
at r.start (dynamic-members.js?ver=11.2.0:2:992)
at parcelRequire.k5We (dynamic-members.js?ver=11.2.0:2:1647)
at f (dynamic-members.js?ver=11.2.0:1:468)
at parcelRequire.k5We (dynamic-members.js?ver=11.2.0:1:771)
at dynamic-members.js?ver=11.2.0:1:1023Dynamic Groups:
dynamic-groups.js?ver=11.2.0:1 Uncaught TypeError: Cannot read properties of null (reading ‘closest’)
at dynamic-groups.js?ver=11.2.0:2:1053
at Array.forEach (<anonymous>)
at r.start (dynamic-groups.js?ver=11.2.0:2:964)
at parcelRequire.UOvc (dynamic-groups.js?ver=11.2.0:2:1617)
at f (dynamic-groups.js?ver=11.2.0:1:468)
at parcelRequire.UOvc (dynamic-groups.js?ver=11.2.0:1:771)
at dynamic-groups.js?ver=11.2.0:1:1023Any help is appreciated, I will pass this along to Neve’s developer. I have already reached out to Gamipress.
Thanks,
HP Odin
Hello Everyone, I hope you all guys are doing good.
i want to make buddypress name field not required. I activated extended profile but still I don’t see any option to make the field optional.
I tried custom code for the field id ( field_1 ) but no success.
Any help?
Using WordPress and Buddypress with latest version.