Search Results for 'buddypress'
-
AuthorSearch Results
-
February 18, 2015 at 9:33 pm #234712
In reply to: Cannot see a profile page on front end
danbp
Participanthi @vikingpoker,
Iโm sorry to hear that BuddyPress has upset you.
Members are the heart of BuddyPress and the plugin comes with anything necessary to let you manage them.We might be able to help, would you please let us know exactly which components you activated during the BP setup ?
BuddyPress use the WordPress page system for internal purpose only. Content is shown dynamically, depending the context. When you click on a username, BP calls the pre defined member page and use the appropriate template to show the profile.
BuddyPress has also his own menu, on which you’ll find activity, members, groups so far you have activate the respective component. To access this menu, go to dashboard > appearence > menu. If you don’t see it, go to the top right corner of the screen and open the sceen option, and check “buddypress”.
You’re using a framework theme, which is not the easiest to handle if you have not much experience with WP theing. I tested it a while ago and can understand your disapointment. You may probably find good advice about BuddyPress on the Hueman support forum.
I would recommend you to use 2015 or 14 theme during the time you familiarize yourself with BuddyPress.
I invite you to read also the Codex to start with your BuddyPress.
Oh, and if you donโt understand why this is not a #1 topic in this forum, it’s probably because a large majority of user haven’t this issue. And discover here all what you can do with BuddyPress. ๐
February 18, 2015 at 9:07 pm #234708In reply to: Cannot see a profile page on front end
@mercime
ParticipantWhy is there no page setup to show the profile information?
@vikingpoker You do that from the backend. https://codex.buddypress.org/administrator-guide/extended-profiles/February 18, 2015 at 7:18 pm #234700In reply to: User can't edit profile in frontend
Matthias
ParticipantI think @azinfiro had the same problems a few month ago.
Seems it is the normal buddypress behavior, not to show the wordpress fields
https://buddypress.org/support/topic/wp-profile-fields-not-editable-in-bp-profile/This is a bit strange, cause I can change the wordpress fields in bbpress but not in buddypress?!?!
Makes no sense to me!Thanks
MatthiasFebruary 18, 2015 at 5:58 pm #234698In reply to: Users newer than 8 months not in directory
shanebp
ModeratorDid you try using the tools?
In wp-admin, Tools > BuddyPressFebruary 18, 2015 at 5:52 pm #234697r-a-y
KeymasterWishlist Member is a premium plugin so we do not have access to debug the issue.
BuddyPress 2.2.0 did make a change to directory pages that probably caused this issue to occur.
hnla is correct that you should try patching the one line in a WordPress file to see if that fixes the issue:
https://buddypress.org/support/topic/version-2-2-0-and-is_page/#post-234315Please give that a shot first and report back.
The other thing I can think of is Wishlist Member is not properly doing redirects on the correct hook. They should use the
'template_redirect'hook at a priority less than 10 (preferably 0). This is just purely speculation at this point without looking at their code.February 18, 2015 at 5:44 pm #234695shanebp
ModeratorDid you look thru the files for BuddyPress Profile Search ?
Did you notice this action in bp-profile-search\bps-search.php ? And what it does?
add_action ('bp_after_members_loop', 'bps_remove_filter');Might be a clue.
February 18, 2015 at 5:31 pm #234693In reply to: Adding new 'Order By' on members loop
shanebp
ModeratorYou don’t need to touch any core files to add an Order By.
Example for adding a Contributor option, put in bp-custom.php or theme/functions.php
// add order options to members loop function ch_member_order_options() { ?> <option value="contributing"><?php _e( 'Contributing Members', 'buddypress' ); ?></option> <?php } add_action( 'bp_members_directory_order_options', 'ch_member_order_options' ); // filter ajax members by contributing function ch_filter_ajax_querystring( $querystring = '', $object = '' ) { if( $object != 'members' ) return $querystring; $defaults = array( 'type' => 'active', 'action' => 'active', 'scope' => 'all', 'page' => 1, 'user_id' => 0, 'search_terms' => '', 'exclude' => false, ); $ch_querystring = wp_parse_args( $querystring, $defaults ); if( $ch_querystring['type'] == 'contributing' ) { // to get members by xprofile field, you need some custom sql here // here's an example: //https://codex.buddypress.org/developer/loops-reference/the-members-loop/#code-examples $users = get_users( array( 'fields' => array( 'ID' ), 'role' => 'contributor' ) ); $users_str = ''; foreach ( $users as $user ) { $users_str .= $user->ID . ','; } $users_str = rtrim($users_str, ","); $ch_querystring['include'] = $users_str; $ch_querystring['type'] = 'alphabetical'; return $ch_querystring; } else return $querystring; } add_filter( 'bp_ajax_querystring', 'ch_filter_ajax_querystring', 20, 2 );February 18, 2015 at 4:20 pm #234687Pete Hudson
ParticipantWe’ve confirmed with fresh installs of WP, Wishlist Member and Buddypress that Wishlist Member is not protecting the Buddypress feed since the update of 2.2. 2.1.1 protects the feed just fine.
WLM support will not help because they say that it’s the code changes in BP’s 2.2 update that is the problem.
I got a copy of BP 2.1.1, but just don’t know the best way to downgrade from 2.2. Are their any recommended procedures for downgrading? The website is enormous and we’d rather not do a full restore of the entire website unless absolutely necessary.
Anything else I can do to get this fixed?
Any help would be appreciated.
Thanks.
February 18, 2015 at 3:14 pm #234679Rob
ParticipantMy theme did not have those folders so I moved the code to the location you described and it worked perfectly. I did this in the buddypress folder.
Without confusing things, should I have those folders and file within my theme folder instead? I don’t want to have other issues down the road if this is really needed.
Thank you for the prompt assistance!
February 18, 2015 at 2:00 pm #234675In reply to: Get recipients id while composing message
shanebp
ModeratorUse this hook:
do_action_ref_array( 'messages_message_before_save', array( &$this ) );
Infunction send()in this file:
buddypress\bp-messages\bp-messages-classes.phpFebruary 18, 2015 at 1:21 pm #234671In reply to: User can't edit profile in frontend
Matthias
Participanthi @danbp,
I’m using the plugin version of bbpress. And it’s running fine.
I can edit all fields from the backend in the frontend, too under
http://exampample.com/forums/users/USER/editIn buddypress I can access the users profile and I can set the password and the email notifications
BUT
there is no way to change the “public name” and the “website field” oder the “biographical info”
For editing this, the user has to go to the backend!!!Thanks
MatthiasFebruary 18, 2015 at 1:02 pm #234670In reply to: Remove public group updates from SWA
danbp
ParticipantFebruary 18, 2015 at 1:01 pm #234669In reply to: cant create topics for standart users
wolfied
ParticipantAll right, here we go:
http://inviteshare.net/groups/world-wide-news/forum/Noone can create any any topics under this Entire forum. It’s not just one topic, but instead, none works. So, for the public groups, anyone should be able to post without joining this. Even the members are complaining about it. If needed, I can give you moderator/admin access to the forum for your helping me out.
WordPress 4.1 running OneCommunity theme.
bbPress 2.5.4
BuddyPress 2.218 active plugins.
Achievements
Akismet
bbPress
BP-WP Profile Reviews
BuddyPress
Contact Form
Mass Messaging in Buddypress
myCRED
Quick Cache
Register IPs
SI CAPTCHA Anti-Spam
Simplr User Registration Form Plus
Stop Spammer Registrations Plugin
TinyMCE Advanced
WP-Polls
WP Slimstat
WP SMTP
WP User ControlFebruary 18, 2015 at 12:59 pm #234668In reply to: User can't edit profile in frontend
danbp
Participanthi @matthias70,
once BuddyPress is installed, you have to set pretty permalinks.
Syncing profiles with WP users is also recommended (in BP settings).If you use a standalone bbpress forum, check also his settings.
Also, question related to bbpress have to be asked on the bbpress support forum
February 18, 2015 at 9:50 am #234659In reply to: please review my new website onlijn.com
peter-hamilton
ParticipantFew alterations made, thanks to feedback from you guys.
Profile pages now a bit more organized, header image only shows on main profile page, other profile pages only shows links bar.
Made background image larger to remove awkward empty space on left side, and made navigation easier by placing the links bar directly (back) under header image.

I also experienced issues with the search options, with all three (wordpress/bbpress/buddypress) having their own search criteria, but I found help from you guys again, and fixed all these issues so people can search for articles, posts, topics, members and groups on the right place.
Thanks again for the input
Peter Hamilton
February 18, 2015 at 12:55 am #234635In reply to: Buddypress Search Page is not saved
r-a-y
KeymasterHope is referring to the “Settings > BuddyPress > Pages” admin page.
The “Search” directory page is not a default BuddyPress component. What plugin are you using for BP search, Hope?
It is likely that the plugin will need to make some updates.
February 18, 2015 at 12:48 am #234634In reply to: Links plugin not working properly on install?
Henry Wright
ModeratorThere have been some problems with the BuddyPress Links plugin post BP 2.2 release. Check of this thread for some more info on the problem. I’m not sure if the developer has managed to resolve yet, perhaps it’s worth opening a ticket on his support forum.
February 17, 2015 at 11:32 pm #234632In reply to: Page Templates Disassociate
r-a-y
KeymasterThanks for the reports everyone.
I think this is related to a change we made for BuddyPress 2.2.0.
I’ve opened a ticket here:
https://buddypress.trac.wordpress.org/ticket/6226I’ve also attached a potential fix for this bug here:
https://buddypress.trac.wordpress.org/attachment/ticket/6226/6226.01.patchThis bug is only applicable to multisite installs.
February 17, 2015 at 10:45 pm #234630In reply to: 500 Internal Server Error on FastCGI Install
jaymzyates
ParticipantTo eliminate issues with a particular handler, I have also tried the install under CGI and SuPHP
CGI Error:
End of script output before headers: php-cgi-starter, referer: http:/****/wp-admin/update.php?action=install-plugin&plugin=buddypress&_wpnonce=a0a7c20cb8SuPHP error: [Tue Feb 17 16:44:30.457315 2015] [core:error] [pid 6148] [client 208.2.67.221:36522] End of script output before headers: plugins.php, referer: http://**/wp-admin/update.php?action=install-plugin&plugin=buddypress&_wpnonce=a0a7c20cb8
[Tue Feb 17 16:44:31.698051 2015] [core:error] [pid 6148] [client 208.2.67.221:36522] End of script output before headers: index.php, referer: http://**/wp-admin/update.php?action=install-plugin&plugin=buddypress&_wpnonce=a0a7c20cb8[Tue Feb 17 16:46:25.503643 2015] [:error] [pid 6175] [client 188.165.15.201:42343] PHP Fatal error: Can’t inherit abstract function BP_XProfile_Field_Type::edit_field_html() (previously declared abstract in BP_XProfile_Field_Type_Datebox) in /var/www/clients/client1/web2/web/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php on line 1709
February 17, 2015 at 10:34 pm #234629In reply to: Make a page that is unique to a group?
danbp
ParticipantSee also this discussion related to same question as yours
https://buddypress.org/support/topic/group-extension-api-display-under-admin/February 17, 2015 at 9:11 pm #234626In reply to: Make a page that is unique to a group?
shanebp
ModeratorUse the Group Extension API.
February 17, 2015 at 8:51 pm #234625In reply to: Setup for a public area and a members area
sankari
ParticipantMy questions might have been too complicated. To put it simple, that’s the kind of website I am looking for:
– Homepage: public
– Pages 2 to 8: public
– Page 9 including subpages: members onlyHow do you set this up with BuddyPress? Is WP Network (Multisite) necessary?
February 17, 2015 at 7:03 pm #234623In reply to: Ideas : Take a look at ello.co
mcpeanut
ParticipantI was looking at this website some time ago and agree about some of the features that are listed on the website and a few of them would be “Handy” to have in buddypress, but i also believe most of the features listed can be added onto buddypress via plugins or by other means, i agree that the privacy between users and choosing if you would like to block other users etc from any contact whatsoever with you would be neat (users being able to block certain activity’s from showing in their stream altogether would be great too).
As for the media support…well, what can i say, after trying numerous solutions to get everything working right for what my site needs to do (paid and free), i have come to the conclusion that this area of buddypress is one of its biggest downfalls, you basically have limited choices from a media standpoint, meaning you can either choose from forks of outdated plugins for free that do let you have a few basic media options or you can go for plugins like rtmedia which to be honest is a really heavy plugin but works great at a performance cost! or you could opt for other paid media solutions which i have done and still found problems with etc, there is one promising plugin by buddydev which is mediapress that is still in beta and in my opinion has to much wrong with it to use in a live website yet even though it is alot less demanding than rtmedias plugin, so it becomes a waiting game or a case of settling for one of the other options.
February 17, 2015 at 5:50 pm #234620In reply to: Adding Icon next to username based on profile field.
danbp
Participanthi @kimovic,
for sure you can do this ! ๐
See the new member-type API: https://codex.buddypress.org/developer/member-types/
Types can be XBOX, PS3, PC for example. It’s a very robust and flexible solution.An other option to do that is related here:
https://buddypress.org/support/topic/change-their-to-his-or-her-in-activity-stream/February 17, 2015 at 5:09 pm #234617In reply to: How to upload an avatar in backend?
danbp
Participantguess it’s not implemented yet, at least for MS. See #5197
Read also here:
https://buddypress.org/support/topic/possible-to-upload-avatars-for-other-user-as-admin/ -
AuthorSearch Results

