Search Results for 'buddypress'
-
Search Results
-
I am using BuddyPress old version and WordPress version 5.3.2.
But, Today, When I to updated BuddyPress Version:5.1.2 it gives me the following an error.Fatal error: Call to undefined function bp_is_user_inactive()
Website Home page: https://wcblogs.com
I am trying to fix these issues but still shows an error.Any suggestion?
Thanks in advance
We want to use the buddypress existing username, email and phone number in the contact form 7. Can you please help us with the php code or short-codes of buddypress to add in the contact form 7?
Eg: We have Email and Name fields in the contact form 7. We want that to be auto populated by their buddypress existing username and email. So that they don’t have to fill those fields again.
Hello,
I use the Buddypress registration form and I send the information concerning the registrations to Mailchim vie the MC4WP plugin.
In my form, there is a date of birth field. However, it would appear that Buddypress adds backslashes in the date data that prevent the data from being sent to Mailchimp. For example, July 14, 1966 is recorded like this: 14\/07\/1966.
Does anyone have any idea how I can fix this problem?
Thank you in advance for your answers.
Olivier Bonnet
AlgofaéI wanted to test ultimate member so I deactivated BuddyPress and deleted the related pages. That was a mistake. The Ultimate member has issues I don’t want to deal with and it scares me that some basic things like deactivating registration are not there. So, my questions is how do I reinstall or get by buddypress pages like members page, log in and log out. I notice the logout is missing in the menu options.
So following the steps in this post:
I used this code:
add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_reply_to( "wordpress@mydomain.com", "My Site" ); }, 10, 2 ); add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_from( "wordpress@mydomain.com", "My Site" ); }, 10, 2 );This partially worked. The signup emails going to the registrant now have the correct From address, but the notifications going to the admin have the WordPress administrator email listed as the From. I believe this is an issue because both the to and from are now a Gmail address, ie. To: myclient@gmail.com and From: myclient@gmail.com, and Gmail is kicking them back as untrusted. How do I get it to change the From email in all cases? Note that I am using the Buddyboss theme, if that makes a difference. Since the above code isn’t checking for the value of $email_type I would have thought it would just work on all of the emails, but the code is also 3 years old so guessing some things may have changed.
Edit: Also, will Buddypress play well with plugins that allow you to send authenticated emails via SMTP or IMAP, such as WP Mail SMTP by WPForms? I feel that might alleviate the issues we are having but it would be good to know if there’s anything special we need to do before going down that road, thanks.
-Michael
Hi,
I am using Thrivecart and Wishlist member to create members for my buddypress membership site.
I can’t seem to stop this from making the users email address immediately public, it shows as the name in profile menu – and also @mentions, and is in their profile url.
While I have workarounds – and can hide this information using CSS, I would prefer for the system to pick firstname or fullname as the profile name.
How do I achieve this? .. as users will be concerned at keeping email address private.
Your help is much appreciated.
Ant
Hi!
We are using BuddyPress with theme KLEO and PaidMembershipsPro for a platform where experts can present themselves including links to their social media profiles, any work they have published, etc. This is our site’s members section (but you’d have to log in to see full profiles): https://www.globalwomennet.org/members/
To make sure visitors viewing profiles do not leave our site, we’d like these external links in the members’ profiles to open in new tabs. I could only find an over 8 years old topic related to my question (https://buddypress.org/support/topic/make-drop-down-menu-links-open-in-new-page/) so I was wondering if there is an easier way to do this by now?Thanks!
vonJanneThe Codex page above says clearly, that if I put a front.php page in /buddypress/members/single/ … it should be picked up. Also, if I have a member type, all I have to do is this:
/buddypress/members/single/front-member-type-{member-type}.php
But none of the above are working. It always uses home.php … any idea why? What am I doing wrong?
Topic: Adding Buddypress rank?
How is Buddypress rank added?
Wordpress:5.3
BuddyPress: 1.0.359Topic: Auto Assign to Group
I am creating an online platform for a client where i use BuddyPress and gamipress. I want users to be moved from one group to another when the user earns a certain number of points .
Topic: get_comment_count()
Hi,
I found the code to hide comments in the activity stream. Adds an additional button (show / hide comments)
How can I add the number of comments for the current post?I have something like that made by @shay1383
add_action( 'wp_footer', 'add_comment_hide_show' ); function add_comment_hide_show() { ?> <style> .activity-comments ul li[id^="acomment-"]{display: none;} </style> <script type="text/javascript"> jQuery(function($) { setInterval(function() { $('.activity-meta').each(function() { if( !$(this).find('.show-comments').length ){ var html = '<a href="#" class="button bp-primary-action show-comments">Show/Hide Comments</a>'; $(this).find('.button.acomment-reply').after(html); } }); }, 500); $('body').on('click', '.show-comments', function(e) { e.preventDefault(); var obj = $(this).closest('.activity-content').next('.activity-comments').find('ul li[id^="acomment-"]'); obj.slideToggle(); return false; }); }); </script> <?php }For comments button, the number of commentators is displayed by:
<a href="<?php bp_activity_comment_link(); ?>" class="button acomment-reply bp-primary-action" id="acomment-comment-<?php bp_activity_id(); ?>"><?php printf( __( 'Comment %s', 'buddypress' ), '<span>' . bp_activity_get_comment_count() . '</span>' ); ?></a>But if I use it, the same number of comments appear under each post. How to make it work?
Topic: member contact form
hi , i have buddypress and gravity forms installed.
when viewing another member’s profile, there will be contact form, friends can fill the form and submit a message to that member.Topic: meeting request
hi , how can i add meeting request to buddypress
i wan’t the user to send simple request, the admin approve it , then the other member can accept or refuse. is there any plugin to do that or can you give me code or is there any core function?
and thank you