Search Results for 'buddypress'
-
AuthorSearch Results
-
June 17, 2017 at 6:29 pm #266556
In reply to: Is it possible to verify members?
TAC28
ParticipantThanks for the response, where do I find custom work for BuddyPress? π
June 17, 2017 at 12:58 pm #266554Renato Alves
ModeratorBuddyPress has a API that you can use: https://codex.buddypress.org/component/private-messages/
You can hook at the WooCommerce actions when sending the emails and send your private messages.
Hope that helps! π
June 17, 2017 at 12:53 pm #266552In reply to: WP Rest APi + Oauth + Bp Rest
Renato Alves
ModeratorThe BP REST API does not have support for users yet. My guess is that the version you are using if imcomplete, missing support for several components.
Check the work here for more updates: https://github.com/buddypress/BP-REST
June 16, 2017 at 7:22 am #266539In reply to: User Database
Henry Wright
ModeratorAnd here’s the BP database diagram
June 15, 2017 at 9:23 pm #266532In reply to: link broken?
rnelson333
ParticipantNever received any “support”. So deleted Buddypress, will try another option.
June 15, 2017 at 9:43 am #266525rageshr007
Participantproblem solved. After some more research I found out that the problem was with my php memory limit. I initially tried to simply change the memory limit by adding define (βWP_MEMORY_LIMITβ,β128Mβ); to wp-config.
This thread helped me ..thanks
https://buddypress.org/support/topic/resolved-admin-white-screen-upon-buddypress-activation/June 15, 2017 at 7:15 am #266521kodacollider
ParticipantI had to disable activity update comments from displaying as their own items entirely to fix this, but it looks like doing so did. I used the code from this thread.
function my_bp_activities_include_activity_types( $retval ) { // only allow the following activity types to be shown $retval['action'] = array( // 'activity_update', 'activity_comment', 'new_blog_post', 'new_blog_comment', 'friendship_created', 'created_group', ); return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_include_activity_types' );Weird issue all around.
June 14, 2017 at 10:08 pm #266477In reply to: Slow for logged-out users
n0madpl
ParticipantHey,
The fix for that is coming in the next release of buddy press. Or at least for the part of the problem.
You most likely get 50% of your problem from these two in my case with 6k users these amounted to the respective query execution times (from new relic), I also run buddypress + rtmedia (which is the source of this problem) as described in this ticket:
bp_friends_prime_mentions_results – 10,000+ ms
bp_core_fetch_avatar – 6,000+ msHere’s a fix:
https://buddypress.trac.wordpress.org/changeset/11561You’ll still likely stay with this massive query even for logged out users:
WP_User_Query::query on average right now it’s at around 7,500ms.Good news is that with HHVM site runs much faster due to object caching straight after enabling it.
I’ve also played around with various hosts, flywheel & wpengine sucked. What works well is Kinsta with HHVM enabled, they can also check your database and help you move to InnoDB if you’re using another one.
Anyway man hope this helps.
Best,
M.
June 14, 2017 at 10:38 am #266474In reply to: PROFILE HELP
Henry Wright
ModeratorHow many profiles am I able to make with buddypress on my website, enough for a school community ?
This should be fine. BuddyPress can handle a huge number of profiles quite easily. Note though, your server hardware will need to be good if there’s lots of site activity.
Is it possible to create PREMADE accounts for all these people (students) ?
Yes but you will need to custom code this.
When people post on the main stream, is it possible for them to post anonymously BUT still logged into their accounts ? Just like ask.fm if anyone remembers that.
Not by default. Each activity item is associated with a member. That said, what is displayed on the front end is entirely up to you (or more specifically, entirely up to your theme author).
June 13, 2017 at 5:41 pm #266464In reply to: Ordered list tag creates weird results
r-a-y
KeymasterThe problem is the Activity component only allows certain elements to be shown in the activity stream.
By default,
<ol>and<li>are not among those whitelisted elements.You can override this behavior with the following code snippet in your theme’s
functions.phpfile or via wp-content/plugins/bp-custom.php:// Allow list-item element through add_filter( 'bp_activity_allowed_tags', function( $retval ) { $retval['ul'] = $retval['ol'] = $retval['li'] = array(); return $retval; } );I’ve also opened a ticket about this here:
https://buddypress.trac.wordpress.org/ticket/7538June 13, 2017 at 2:08 pm #266457zabre00
ParticipantI started absolutely New Site. Everything updated. Only plugins activated is BP amd Mega Main Menu ( commercial Plugin) , Mega Main men. I am getting this error”
Notice: bp_nav was called incorrectly. These globals should not be used directly and are deprecated. Please use the BuddyPress nav functions instead. Please see
Debugging in WordPress
for more information. (This message was added in version 2.6.0.) in /var/www/vhosts/mysite.com/httpdocs/testsite/wp-includes/functions.php on line 4139 ”Im using Twenty Twelve. Current BP amd MMM. My Question is. Is this Mega Main menu error or a Buddypress error? So, I know where to get some help! Thanks in advance.
June 13, 2017 at 5:44 am #266456wci
ParticipantDear support team,
I stated my helping request to bbpress support with this thread “bbpress search is not working when buddypress is activated“, BUT they state “looks like a buddypress issue β suggest you post on their forum”.
So please advice and help to solve my issue a.s.a.p.
BR, Alex
June 12, 2017 at 6:12 pm #266452n0madpl
ParticipantHey,
I’m experiencing a similar issue with 6k members, I can’t imagine the size of requests at 30k+…
It seems like mine was triggered by use of RTmedia, cause is described in this ticket, together with a patch:
https://buddypress.trac.wordpress.org/ticket/7530If you’re using their plugin/s this could have been a cause.
Btw cool site π and congrats on the user count.
June 12, 2017 at 2:40 pm #266445In reply to: Remove RSS feed
shanebp
ModeratorJune 12, 2017 at 1:24 am #266433In reply to: Cannot find functions defined somewhere in BP core
Henry Wright
ModeratorI wouldn’t recommend changing core files because when you update BuddyPress, you’ll lose all of your modifications.
June 10, 2017 at 7:30 pm #266417In reply to: WordPress 4.8
shanebp
ModeratorTry switching to a WP theme like 2015 to see if the issue really is BP and not your theme.
You can file a bug report here:
https://buddypress.trac.wordpress.org/June 10, 2017 at 5:36 pm #266415EMar
ParticipantI created a test user account on my site,
If I go to Users > manage signups, I see the new user account,
So I click the email link to resend the activation email,
It sends the new account activation emailWhy doesn’t it send it when the user created the account?
And I need to know is Buddypress forcing new members into that pending list?
Meaning it’s not automatically registering new accounts or sending them their activation email when they sign up.I’m confused.
June 10, 2017 at 4:02 pm #266414EMar
ParticipantI also noticed if I sign up as a new member I get to the page that says success and an email
has been sent to verify your account, but the email never comes.If I activate the member accounts manually an email is sent saying there is a new member,
So I know my email is working on the server side right?I don’t know where the mail settings are in wordpress or if it’s some setting in Buddypress?
I need to allow new registrations to be approved automatically, I thought there was an option for this.
Any suggestions appreciated.
June 10, 2017 at 3:18 pm #266412In reply to: WordPress 4.8
Effycom
ParticipantHiya,
There seems to be a compatibility issue with the current version of Buddypress and the latest WordPress 4.8 update. I noticed that all the elements available for users on Buddypress suddenly disappeared as soon as I made the WordPress update. I checked it against one of my other websites which I have not updated yet to WordPress 4.8 and installed Buddypress there and all the elements are visible.
Is there anything I could do in the meantime to fix the problem whilst I wait for the latest BuddyPress update as the website in question is due for launch today, but unfortunately i made the WordPress update late last night which affected the elements I need for the site to function as intended with the use of BuddyPress as an aid.
Thank you in advanceE.
June 9, 2017 at 2:01 am #266396In reply to: WordPress 4.8
John James Jacoby
KeymasterBuddyPress 2.8.x works OK with WordPress 4.8.
BuddyPress 2.9 is due out in the next few weeks.
June 8, 2017 at 10:39 pm #266376coolhunt
Participant<table class="profile-fields"> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <?php if ( bp_field_has_data() ) : ?> <tr<?php bp_field_css_class(); ?>> <td class="label"><?php bp_the_profile_field_name(); ?></td> <td class="data"><?php bp_the_profile_field_value(); ?></td> </tr>I found this at bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
I have no idea about HTML.. any tips?
June 8, 2017 at 3:51 pm #266362In reply to: SuperAdmin and I can’t modify xprofile info
r-a-y
KeymasterThis is fixed in the development branch of 2.8.
In the meantime, you can manually apply the following fix until 2.8.3 is released:
https://buddypress.trac.wordpress.org/changeset/11520June 8, 2017 at 3:48 pm #266361In reply to: Nested shortcode for ID
r-a-y
KeymasterYou should post this on the bbPress forums:
https://bbpress.org/forumsThis is the BuddyPress forums.
June 8, 2017 at 2:22 pm #266356In reply to: Cannot find functions defined somewhere in BP core
danbp
ParticipantEnter what you search for into the searchbox, and read the result !
http://hookr.io/plugins/buddypress/#index=aJune 8, 2017 at 11:43 am #266353In reply to: Bug with cover images works every but members page
thejameshardy
ParticipantBump. It looks like buddypress is fetching the user profile cover image for all memebers? Any help pelase!
-
AuthorSearch Results