Search Results for 'buddypress'
-
Search Results
-
Hello,
Does anyone know how I can get the Buddypress profile page details to draw from the details displayed on the wp-admin/user-edit page? Specifically I would like for the “first name” and “last name” fields on the Buddypress profile page to autofill form the same database used to store the first name and last name displayed on the admin/user-edit page. I am using a registration page from a different plugin (Memberpress) to have users enter these details initially, but currently when they go to the profile page after registering the last name field is still empty and the first name field contains the user’s username. Who knows how to fix this?
Thank you!
So the last few weeks search engine crawls have brought my BP site to its knees even with a 2gig of ram on my VPS
Wondering if anyone has tips for dealing with search engines on a private BP network. Really the only pages I want then to index are the homepage and about pages everything else should be indexed.
Thanks in advance for any help
Hello. We just recently installed buddypress onto our site. I am having trouble with new user registrations. Confirmation emails are not being sent after a new user registers and we did not have this problem before installing buddypress.
I am using wordpress 4.6.1, woocommerce 2.4.6, wc vendors pro 1.3.6 , ninja forms 3.0.5, BP WC vendors 1.0.8, Buddypress 2.6.2.
We are creating an ecommerce marketplace allowing mulitple vendors to set up their own shops and sell their products.
Tried the buddypress email repair tool just a couple hours ago, no luck. I can only activate new signups manually and of course I would like activation emails to go through so new users can activate themselves and login.
Would appreciate any help or advice. Thank you so much for your time!
I am using bbpress for forum and buddypress for members. So now I’ve an issue that when users do reply with quotes in thread then the activity add to the user’s profile activity which is fine but the issue is it shows the quotes not the original reply content, I want to show the reply not the quotes.
For reference I’ve added the screenshot for better understanding.

Hi
I am using buddypress with extended fields. but I have noticed whenever i update information of fields whether from the dashboard or from front end it lands onto blank page when I go back to previous page changes are being made but its not refreshing properly. Any idea ?Wordpress : 4.6.0
buddypress: 2.6.1.1Hello Every one,
is there any way where i can use forums and topic inside custom post type or buddy-press provide a option like a custom post type with texonomy with forums and topic?Thanks
Topic: User Profile Button
Hello,
I have a challenge, and I need help.
I have this plugin installed on my site, and its doing a great job.
When a user is logged in, through a shortcode, “[bp_profile_url]” this plugin will display a link on a page, post or sidebar, to that respective user’s profile, making it easier for the user to view or edit their profile.but, I would like this tweaked alittle. Instead of displaying a raw link “http://example.com/user1/profile,” I would to display a styled up button like “View My Profile”
How do I have this archived?
Thank you.
Hi
I am using bp resume page to have a dynamic cv for the user. What i want is to show view page content in the landing page of buddypress which is home.php . Is there any way i can achieve that? For now its show cv on clicking the link of resume. But i want to remove that and show it on landing page . My life is dependent on it . Helppp!!!!!!!http://dev6.inserito.me/Birthbox/members/admin/
Wordpress : 4.6.0
buddypress: 2.6.1.1Topic: How @mention all members
Is there way to @mention all members?
This is something I’d like to be able to do on the bbpress forum on my buddypress site. I find forum mentions draw more site engagement than emailing all members, but filling a post with all members’ @ names detracts from the post content. So is there a function like @all or @everyone?
Thanks 🙂
in the activity stream, for each entry there is the user’s avatar, and beside that a header that include their username, latest action (‘updated their profile’ or whatever), and below that smaller print indicating when they were last online.
That info is all in the activity-header generated on entry.php. How entry.php calls this info is to run the self-echoing function bp_activity_action.
I want to add xpfofile field data and the delete link to this header. Some would try to ram it into entry.php but then you must fuss around with the CSS to get the info up near or into the activity header, risking breaking something else.
I’m trying to add it to the bp_activity_action. I found a thread sort of on topic here, but this chap was trying to do something else and his self-discovered solution was to ram it into entry.php before the header rather than using the action hook.
I’ve created a simple function to test adding something to bp_activity_action, simply trying to add the word “success!” somewhere in the header:
function SN_member_header() { echo "success!"; } add_action( 'bp_activity_action', 'SN_member_header');…but nothing appears. What am I missing?