Search Results for 'buddypress'
-
Search Results
-
Hi there,
first of all: A big thank you for this incredible plugin and all your work! Buddypress is really amazing!
I need some help with the following issue: I want to enable existing custom taxonomies (I made them myself) with Buddypress Groups. I’ve already searched for days and weeks, but I could just find some plugins like Groups Taxo, BuddyPress Groups Tag and so on. But all they do is add a new taxonomy.
I hope you get what I mean and can give me some hints. Is there some plugin or code out there, which suits my needs?
Thank you in advance!Wordpress v 4.8.3
Buddypress v 2.9.2Hey!
Would love to know how to display the number of posts each member published (yes, members can publish posts from the front-end) on the members’ directory AND BP widgets.While I got the process of showing xprofile info, I couldn’t find a way to add other info.
P.S
I am just a plain mortal and not a code-god, so simplified explanation would be much appreciated, thanks.Please, is there a plugin that can can keep any buddypress activity post pending until approved by admin. Thanks for your time and help.
Hi,
This is the third community I build using BuddyPress, and it’s the first time I have problems with BuddyPress and especially groups.
This is how the groups are displayed:

Instead of this usual “tight” display:

Do you have any idea what could cause it? For now I deactivated all group-related plugins.
Thank you for your help!
Hi!
I am using WordPress 4.8.3, BuddyPress 2.9.2, and s2Member 170722
at http://gatetest2.aishasalem.comI am doing everything that I can to integrate BuddyPress and s2Memeber.
I am hoping to get a smooth registration process going. With a free membership and a paid membership, s2member_level1. It seems no matter what I do, the registration process is ugly, and they don’t really talk to each other.
Currenlty, I am trying the code out from this post https://codex.buddypress.org/developer/user-submitted-guides/useful_func_s2_bp/. It seems very promising. I have modified the code a little AND had to add some code to disable the buddypress automatic redirect from the default wordpress registration page.
Here is my code (slightly modified from the one in the post, as I want to add this for all members, not just level2).
// disable BuddyPress redirect from default reg page function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); // remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; } // Function to populate BP Profile Fields w/ S2member Fields. add_action('wp_login','s2_profile_field_update',10,2); function s2_profile_field_update() { global $current_user; //Array of xprofile field names $xprofile_fields = array('Last Name','Country','Introduce yourself to Aisha Salem'); //Array of s2member field slugs $s2member_fields = array('last_name','user_country','member_letter_aisha'); //Populates BP with S2 info get_currentuserinfo(); // if( current_user_is("s2member_level1") ) { for($i = 0; $i < sizeof($xprofile_fields); $i++) { if(xprofile_get_field_data($xprofile_fields[i], $current_user->id) == '' && get_user_field($s2member_fields[i]) != '' ) { xprofile_set_field_data($xprofile_fields[i], $current_user->id, get_user_field($s2member_fields[i]) ); } } // } }After this, nothing has really changed. I am not sure about the details.
Like:- Where exactly do I get the xprofile field names?
- Where exactly do I get the s2Member field slugs?
- Do I need to create these custom fileds with the same names in both BuddyPress and s2Members? (Which is what I have tried, so I am guessing no, or I am just doing it wrong…)
So, as I understand it, with this code. I use the s2Member registration process and the next time the user loggs in, it is updated to their BuddyPress profile.
Please let me know if I am not understanding this. AND PLEASE help me to understand how to do this correctly.
Thank you so much!
Topic: Login Issues
Wordpress 4.8.3, BuddyPress 2.9.2, self hosted on an Apache (shared) server.
I really want this to work but I install WP and BP without errors. I set ‘activity’ as a static front page. I test the site (there are no other users) and all looks OK.
I logout. I login. The page still appears to be logged out. The page doesn’t refresh to the ‘activity’ page with me as logged in.
I have tried with themes twentyfifteen, sixteen and seventeen.
I’ve searched the entire internet for a solution, not just here, and many people suggest redirect plugins. I’ve tried a few but it doesn’t work for me.
Some solutions suggest bp_custom code. I tried and it didn’t work.
The only solution I sort of found for myself was to place a “who’s online” widget on the page. After I login (and appear logged out) I click the link in the widget to my profile page. Then I can return to the home page and see I am logged in, BUT even that sometimes fails.
Please, someone, tell me what causes this incorrect login issue and how to finally resolve it.
Hello,
About a month ago we had to set our website http://www.dailynintendo.nl back with an backup after an possible hack. Since then our admin is also only available for whitelisted IP’s.
From that moment we encounter problems with buddypress
– members cannot accept friendships
– members can sent PM’s but cannot reply
– members cannot upload avatars anymore (this seems because the IP restricted admin)Does anyone know what the problem can be?
If the answer is reinstall it: Deactivating buddypress seems like a hell when you read on internet (blank pages an so on). Beside that we cannot deactivate it, nothing happens when we click on deactivate.
Kind regards,
Hi,
In my profile of https://buddypress.org/support
https://buddypress.org/members/giuseppecuttone/
in the section ACTIVITY=>PERSONAL are not showed the posts I have created in the lasts months and the lasts years.
Concretely, in
ACTIVITY=>PERSONAL (show Everythings), is showed the follow message:
“Sorry, there was no activity found. Please try a different filter.” (but filter is “EVERYTHING”)
meanwhile in ACTIVITY=>MENTIONS, yes are showed the MENTIONS I have had in the last years.Can someone help me in resolve that? Maybe there is an error in the code of https://buddypress.org/support
Or maybe is there something I have not understood?
Thanks for your support.Topic: Moving time-since span
To match our design… I need to move the time-since span in the activity stream down a line… out of that activity header paragraph. I tried just absolute positioning instead but that’s not working since it’s part of the paragraph which grows when there is a post to a group.
Any css tricks I’m not thinking about?
Or if I have to modify a template file then where exactly is the one I modify? We have a child theme kinda going but I’m not sure where that part is coming from or how to move the span out of that paragraph and down a line.
Thanks for any help with this. I can’t point you to the site because it’s in maintenance mode but it should be the same I imagine with the default wordpress/buddypress layout.

