Search Results for 'buddypress'
-
AuthorSearch Results
-
November 2, 2015 at 1:21 pm #246246
In reply to: NEW! Buddy Member Stats & BuddyPress Community Stats
danbp
Participantthank you for your interest. But… which plugin do you mean ?
If Buddy Community Stats, consider that messaging in BuddyPress concern firstly friends. When you’re on your profile, you can access to YOUR messages count (separated in send and received). Handling this as a global stat is not relevant to site wide activity.
Imagine a community of hundreds of members where only a handfull of members take heavy contacts. This will increase the counter, but will indicate something absolutely false about you site activity – because it is a private members exchange).
To get this count, you could use Buddy Member stats. But this plugin plays only at the member level, and his counts are not grouped to be shown to site admin.The aim of both plugins is to provide some basic counts for community members while remaining fast (if possible) and simple, not to bring extensive metrics, graphs or analytic stats about anything happening in BuddyPress. There are probably more sophisticated plugins who can do that.
November 2, 2015 at 10:42 am #246240In reply to: [Resolved] Can we change group into a member group?
Venutius
ModeratorYes I think you will find it pretty straightforward, you need to install the BuddyPress Group Hierarchy plugin and from there you can go into the group settings and set a parent group for each group. You may also need the group Hierarchy Propagate plugin
November 2, 2015 at 9:23 am #246232In reply to: Displaying cover image BuddyPress 2.4
danbp
ParticipantPlease, read a possible answer in this new codex article:
November 2, 2015 at 8:54 am #246230In reply to: BuddyPress Site wide activity
Venutius
ModeratorLooking at it, I think you could create a template overload if Activity-loop.php and change the scope of bp_has_activities () to friends.
See the activity loop page for more information:
I’m not an expert, I think this is correct.
November 2, 2015 at 7:56 am #246227In reply to: BuddyPress Site wide activity
Venutius
ModeratorMaybe this will do what you want?
https://buddypress.org/support/topic/new-plugin-friends-only-activity-stream/
November 1, 2015 at 10:07 pm #246218In reply to: Can’t upload Group Avatars
Plucker
ParticipantOK I raised https://buddypress.trac.wordpress.org/ticket/6708
Thanks again for your help.
November 1, 2015 at 9:15 pm #246216In reply to: Can’t upload Group Avatars
shanebp
ModeratorI’ve not seen your issue before.
It may be a bug.
You can submit a possible bug here.
Be sure to include info about the browser you’re using and the hosting environment.November 1, 2015 at 8:53 pm #246215In reply to: Can’t upload Group Avatars
Plucker
ParticipantHi shane, thanks for the very prompt response – I’m getting nothing on screen with debug on and nothing in the file if I also switch the debug log file on.
This is with BuddyPress active, bbpress de-activated and with t013 theme and no other plug-ins installed.
I have the same (or very similar) error with member avatars.
Upload Failed! Error was: The uploaded file could not be moved to wp-content/uploads/avatars/1/avatars/1.November 1, 2015 at 5:32 pm #246210In reply to: Add First Name in the Profile Page
shanebp
ModeratorCreate a template overload of this template:
buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.phpAdd this wherever you like in that template:
bp_displayed_user_fullname();November 1, 2015 at 3:44 pm #246206In reply to: Can’t upload Group Avatars
Plucker
ParticipantI’ve also tried re-installing WordPress and disabling all other plugins.
Then tried deleting all plug-ins and re-installing WordPress and BuddyPress only, and still the same issue.
November 1, 2015 at 2:34 pm #246201In reply to: buddy presss pages just wont work
@mercime
Participant@iamc0llins
– Could you post the steps you have gone through so far so that we can identify where the roadblock is?
– Did you double check in Settings > BuddyPress – Pages panel whether the names of the page is assigned to the respective component you activated?
– Are you running on WAMP/XAMPP/LAMP or other setup?November 1, 2015 at 12:45 pm #246199In reply to: BuddyPress Login
Henry Wright
ModeratorNovember 1, 2015 at 5:50 am #246196karlosdpm
ParticipantHow can I make their avatars to sync with buddypress?
I want them to see the avatar they have had for years now in their buddy press profile I am installing.Currently their avatars show in regular wordpress pages but not on buddypress pages, for example in the profile page or in the activity page.
thank you for your help
October 31, 2015 at 10:28 pm #246189In reply to: The name feild at registration
Brajesh Singh
ParticipantHi,
Since I got this same question in my email today. Assuming that it was you or a coincidence, I will post the code here as well for everyone else.1. BuddyPress Needs the field_1, so you can not delete it. That gives us a solution, we can hide it using css/js and set it’s value to the value of username.
There are two possible approaches.
The first step is use following in cssdiv.field_1{ display:none; }That will hide the input box on the form.
Now, we can update it using the js or PHP. I will post the simple solution using js
You can put the following code in your bp-custom.php or functions.php
function buddydev_disable_firstname() { ?> <script type="text/javascript"> jQuery(document).ready(function(){ var jq=jQuery; jq("#signup_username").on("blur",function(){ jq("#field_1").val(jq("#signup_username").val()); }); }); </script> <?php } add_action( 'bp_after_register_page', 'buddydev_disable_firstname');That should do it.
There is another pure php solution by settings $_POST[‘field_1’] to the other value but I will leave that for others to figure out 🙂
October 31, 2015 at 1:02 pm #246177In reply to: [Resolved] Change the default avatar
silversurfer.wf
ParticipantDude, that is weird. I figured it out. When BuddyPress forums emailed me your response, it added extra characters in the Email. Then, when I cut and paste it back into BuddyPress forums, the extra characters were removed. I changed the code to remove the extra characters the Email added and the error went away.
October 31, 2015 at 11:00 am #246171In reply to: [Resolved] Change the default avatar
Brajesh Singh
ParticipantFor that purpose, please put the following line too in your bp-custom.php
add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' );That forces BuddyPress to avoid using gravatar and use local avatars for default(when no avatar is uploaded).
Hope that helps
vysakhnair
ParticipantThanks for your reply, I have got one more plugin
https://wordpress.org/plugins/buddypress-first-letter-avatar/October 30, 2015 at 9:47 pm #246161In reply to: Include custom wordpress field in registration
chriotte
ParticipantThis is how it looks on the front end with the input added to my code.

(Telefon = Phone)
I simply need som guidance on how to update user_meta on buddypress registration submit.October 30, 2015 at 4:44 pm #246152In reply to: Link avatar to custom nav instead of profile nav
danbp
ParticipantHi,
assuming the link page has a tab named Bourbon (it’s an example) 😉
Define a constant Bourbon and each time you want to go to a profile, by clicking an avatar or so, you’ll be directed directly to Bourbon page of that profile, instead of the default profile Activity page.
Read here:October 30, 2015 at 10:09 am #246145danbp
ParticipantBuddyPress use Gravatar by default, like WordPress.
If your user uploaded custom avatars, you may usebp_core_fetch_avatarin place of wp’sget_avatarhttp://oik-plugins.eu/buddypress-a2z/oik_api/bp_core_fetch_avatar/
More about avatars here and search for “avatar”
http://hookr.io/plugins/buddypress/#index=aOctober 30, 2015 at 9:57 am #246143In reply to: how comments are posted on buddypress?
danbp
ParticipantHi,
check that here and enter “comments” to search box
http://hookr.io/plugins/buddypress/October 30, 2015 at 9:47 am #246141In reply to: wp_signup and wp_user sequence out of synch
danbp
ParticipantHi,
a typo error in WP… it’s fixed.
read here:
https://buddypress.trac.wordpress.org/ticket/6692October 29, 2015 at 10:49 am #246116In reply to: CSS for Registration Form
William
Participant@konberg, if you this code, all labels on the registration form will be lower case.
#buddypress .standard-form label, #buddypress .standard-form span.label { text-transform: lowercase; }If you just use the other code below, only labels on radio buttons will be lower case.
#buddypress .standard-form div.radio div label { text-transform: lowercase; }because other fields, not radio boxes, also got lowercased
This is so because you used this code.
#buddypress .standard-form label, #buddypress .standard-form span.label { text-transform: lowercase; }October 29, 2015 at 2:38 am #246113In reply to: Buddypress in multisite
mrjarbenne
ParticipantWith the upcoming custom header, and a plugin like this to customize the background of your profile, you are pretty close to the customization allowed on Twitter.
October 29, 2015 at 2:33 am #246111In reply to: restricting a user to only one group
mrjarbenne
ParticipantDoes this help?
-
AuthorSearch Results