Search Results for 'buddypress'
-
AuthorSearch Results
-
September 8, 2015 at 10:42 pm #244174
shanebp
ModeratorIf you think you’ve found a bug in 2.3.3, you can submit a ticket here.
Be sure to include some screenshots.September 7, 2015 at 4:34 pm #244152In reply to: required Username twice at Registration
modemlooper
Moderatorthe column on the right are added profile fields, you can remove the field from the admin
more info on profile fields https://codex.buddypress.org/administrator-guide/extended-profiles/
September 6, 2015 at 10:53 pm #244138In reply to: required Username twice at Registration
nilje
ParticipantNo, there is no other plugin which could cause it
I’ve made a screenshot
http://www.danielaholl.de/Apublic/Unbenannt-1.jpg
I think the left side is the WordPress registration and right the one for buddypress.. there are my custom profile fields too.September 6, 2015 at 10:25 pm #244135In reply to: required Username twice at Registration
modemlooper
ModeratorBuddyPress and WP do not have two usernames. Is this the BuddyPress registration form or another form by a plugin?
September 6, 2015 at 9:30 pm #244129In reply to: required Username twice at Registration
nilje
Participantthanks… thats not really compareable, the double password entering is just for precaution.
I’ve never seen anywhere to enter my username twice.. And what if they enter two different ones, they don’t know for sure with which one they could login. That’s just odd for everyone who don’t know it’s about WordPress and Buddypress.Your link couldn’t help me, the topics are about not using usernames at general, I need it, but not twice. I dont’t trust the Plugin Simplr Registration Form Plus+, sounds good but there are many who had problems with their databases after using it..
September 6, 2015 at 7:35 pm #244125In reply to: required Username twice at Registration
danbp
ParticipantYou think right. BuddyPress need this field to sync with WordPress.
It’s really confusing for the user to set the username twice.
And what about entering password twice ?Read from here:
https://buddypress.org/support/topic/hide-the-username-and-display-firstnamelastname/September 6, 2015 at 7:24 pm #244124In reply to: Problems with groups without forum
danbp
Participantthe pages go directly to groups/name_group/forum, so i have a not found error
Let’s think that you set up forum wrong. Verify your bbPress settings. Or that you added some bbPress shortcodes to the BP group page.
On a correct install of BP/bbP, if a group has a forum, it is because the group creator activated it.
As site admin, go to the group management on front-end and deactivate the forum.
or/and
If you don’t want forum for groups, simply deactivate this option in bbPress settings.
Deactivate also Allow users to create forums in BuddyPress settings.September 6, 2015 at 1:31 pm #244119danbp
ParticipantYes ! You need to use template overload, then you can remove that part from the template.
While creating a new group:
See bp-templates/bp-legacy/buddypress/groups/create.php
While modifying a group:
bp-templates/bp-legacy/buddypress/groups/single/admin.phpCaution: if you do this, you can only use public or private groups. Hidden groups are “invite users” only.
September 6, 2015 at 8:32 am #244118In reply to: Profile Signature
danbp
ParticipantIt is standard! At least if you use xprofile component to let your users enter their signature.
1) Create a new field. Call it Signature and give it a textarea type.
2) Once this field is edited by a user, during registration or later, the signature appears on his profile.3) if you want this field somewhere else, for ex on the profile header, you simply write a function to call this field and hook it into the template you want.
Ie. Add this to child theme functions.php or bp-custom.php
function my_signature() { if ( bp_is_active( 'xprofile' ) ) if ( $signature = xprofile_get_field_data( 'Signature', bp_get_member_user_id() ) ) : // field name; case sensitive echo $signature; endif; } add_filter( 'bp_before_member_header_meta', 'my_signature' );Or to use Henry’s advice
add_filter( 'bp_after_profile_content', 'my_signature' );Reference
September 6, 2015 at 8:24 am #244117johnnymestizo
ParticipantLooks like this is actually core Buddypress.
I don’t have friends running on my Buddypress site.
But when people create a group, they are asked to invite their friends.
Can this be removed ?
September 6, 2015 at 8:06 am #244116danbp
ParticipantCheck the translation file: buddypress_CN.po (with a text editor like Notepad++) and verify that email text are all in plain text. Those strings shouldn’t contain any html entities.
Read from here for more details about email customization:
https://buddypress.org/support/topic/customizing-emails-template/
https://buddypress.org/support/topic/registration-process/September 6, 2015 at 7:56 am #244115danbp
ParticipantPlease give details about your config: theme, plugin list.
https://buddypress.org/support/topic/when-asking-for-support-2/On a default install, there are no restriction for visitors to see all profiles.
Have you tested without captcha plugin ?
Do you use a cache ?
While testing after been connected as admin, it’s important to ensure that your brower history & cookies are cleared.September 6, 2015 at 6:02 am #244113Tafmakura
ParticipantFound the solution, by placing buddypress.js in my child theme file (childtheme/buddypress/js/buddypress.js) as advertised, the problem was the activity privacy plugin https://wordpress.org/plugins/buddypress-activity-privacy/ this conflicts with my overide, afteruninstalling it my buddypress.js works!!!
September 5, 2015 at 11:40 pm #244109Tafmakura
ParticipantOkay so upon further inspection it turns out my buddypress.js is being used, however the click function for the the #whats-new-form form around line 101 is not being executed from the buddypress.js, it is being completely ignored WHY?
September 5, 2015 at 10:52 pm #244108In reply to: Profile Signature
maxmore88
ParticipantNo idea what that means, surprised this is not standard part of buddypress and even more surprised there is no plug to do this.
September 5, 2015 at 7:25 pm #244103shanebp
ModeratorIf you use Dan’s approach, you want to do it by first making a template overload of the file he links to. And then writing a conditional for the calls to the user link. It will work fine.
Or you can use the filter hook for
bp_activity_user_link()and then you don’t need to touch template files. You could write a filter in theme/functions.php – something like:function imborx_profile_link( $link ) { if( $link != bp_loggedin_user_domain() ) $link = // custom url return $link; } add_filter( 'bp_get_activity_user_link', 'imborx_profile_link', 15, 1 );September 5, 2015 at 6:41 pm #244100danbp
ParticipantSee template entry.php
Caution: modification are preferably done via child-theme.
September 5, 2015 at 6:33 pm #244098In reply to: admin panel forbbpress/buddypress?
shanebp
ModeratorBuddyPress and bbPress are different plugins.
bbPress has it own spport forums.
In wp-admin, under Settings, you should links for: BuddyPress, Forums
In wp-admin, in the main nav column, you should see links for: Forums, Topics, Replies
There is no path ‘…/bb-admin’September 5, 2015 at 1:55 pm #244089In reply to: PM – reply by email?
Henry Wright
ModeratorThat plugin completely crashed my site
Ouch!
The developer of that particular plugin is a BuddyPress core developer so if you open an issue on the plugin’s GitHub repo, he should be able to help 🙂
September 5, 2015 at 1:26 pm #244086Youngtive
ParticipantSorry forgot some information!
WP: 4.2.4
Buddypress: 2.5.8September 5, 2015 at 10:42 am #244076In reply to: PM – reply by email?
Henry Wright
ModeratorYou’d need a plugin for this. Check out BuddyPress Reply By Email.
September 5, 2015 at 9:45 am #244073In reply to: New plugin: BuddyPress Mute
Henry Wright
ModeratorHey djsteveb
Thanks for your feedback! As you say it could be a plugin conflict or maybe even a theme issue.
Not using GitHub isn’t a problem. Once you’ve completed all of your tests, can you post the issues you find on the plugin’s support forum? I’d be happy to take a look
September 5, 2015 at 9:03 am #244071djsteveb
Participant“when user reply or comment on any post” – when I hear that I think of replying to a post in wordpress language, which is a chrono blog post, and not a ‘static “page” ‘ – however I am going to assume you mean replying in the various comment reply places all throughout buddypress; like activity comments, group updates, etc.
I am confused by what you are saying, but it’s only becuase I have no clue about how any of these things work. I’m still trying to learn php and then going to try to learn how wp and bp actually works – and that looks like it’s gonna take a long time.
However now that you have provided some details I am sure one of the much smarter people around here will be able to guide you in the right direction.
September 5, 2015 at 7:46 am #244070developer
Participantthanks @djsteveb for replying
i am looking for a do_action hook so that i hook my customize function during the post button is clicked when user reply or comment on any post
actually i am placing a captcha in buddypress comment which is done
look what i do here…//action hook to display captcha in comments.
add_action(“bp_activity_entry_comments”,”function_for_display_captcha”);but i need hook for validation of that captcha.
i hope you are not confused this…
September 5, 2015 at 7:08 am #244067djsteveb
Participant@ajaysingh-1
man – there is post_comment, post_update – and a bunch of others on the hookr io page
http://hookr.io/plugins/buddypress/#index=anot sure what you mean post button comment section..
hmm.. section on the site-wide activity page?
via private message emails / replies?hmm.. group replies?
I don’t know anything about the functions and code actually – but hopefully the hookr info will help ya, or this comment will help you detail what exactly you are looking for – so if someone does know about this code they will know more about what you mean..
-
AuthorSearch Results