Search Results for 'buddypress'
-
Search Results
-
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
Topic: plugin content under profile
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
Topic: BuddyPress Profile
I want to know whether you are able to rearrange the tables are shown on the profile pages. For example if I had a description, an email address and a telephone number as my profile fields, I may want to telephone number and email on one side and the description on the other.
Is there a way to jump into the files (I am using a child theme) and move the code around so it displays differently on the front end?
Any guidance would be appreciated.
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!
vonJanneHey! i am developing a plugin for my client…
i would need all the user’s avatars..currently site is saving image’s names in ‘wp_yz_media’ table (using youzers add on)… but there’s no information about the users….
user’s information is in ‘wp_signups’ …i have tried using this
global $bp;
$the_user_id = $bp->loggedin_user->userdata->ID;but this gives me info about the current logged in user…
is there any way of getting all the users info?
or is there any other table in which buddypress stores all the info ?
The 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