Search Results for 'buddypress'
-
AuthorSearch Results
-
May 5, 2014 at 11:57 pm #182522
In reply to: WP profile fields not editable in BP profile
r-a-y
Keymaster#4357 – I agree that something needs to be done. bbPress already adds a “Forums” section on a BP profile, so perhaps bbPress can simply redirect
/forums/users/USERNAME/to BP’s/members/USERNAME/forums. I would say this is more a bbPress issue than a BuddyPress one. Please add a ticket to bbPress Trac about this. (Use the same credentials you use on buddypress.org to create a new ticket.)#3335 already has comments on it regarding why WP’s profile is not included with BuddyPress. I do find it odd that bbPress allows users to edit WordPress’ user profile though… I’ve created a new ticket with some further thoughts – #5619
May 5, 2014 at 9:02 pm #182513In reply to: [Resolved] Need activation key???
Diego de Oliveira
ParticipantHi, folks,
I’ve seen that this thing of activation e-mail is quite a headache for some people using BP. I’m currently having some trouble too. Most of the time, when a user creates an account on the site I’m working on, the e-mail with the activation link is sent ok. But for some users, the link on the e-mail comes without the key (something like
http://www.site.com/activate/?key=), what results in the page asking a activation key. The problem is that I can’t reproduce the issue, but I received even a print screen from an user showing that the problem indeed exist.I’ve installed Unconfirmed plugin to check if there is users that are not confirmed, and there are a couple of users. I can see the activation key for every unconfirmed user. What can be causing this issue?
I’m currently using Buddypress 1.8.1, bbPress 2.4.1, and for the themed login, I’m using Theme My Login 6.3.9. I’m using too WordPress Social Login 2.1.3 for give users a social login option. To style the e-mails, I’m using WP Better Emails 0.2.6.5.
Thanks for any help!
May 5, 2014 at 8:36 pm #182512Giacomo
ParticipantIf you are using WordpPress multisite by default anyone signing up to example1.com will be able to log-in to example3.com –
But by default he will only be able to see his own profile. You will then have to manually change his role to at least subscriber for him to participate/see BuddyPress on example3.comIf you don’t have a developer you can try this plugin to automatically assign a subscriber role on example3.com to each new user registered elsewhere
https://wordpress.org/plugins/multisite-user-managementGood luck!
May 5, 2014 at 8:17 pm #182511In reply to: search members
Prince Abiola Ogundipe
Participant@katieswinehart,
I dont know why you have double search button, there must be something wrong with the theme you are using or a custom script.I just change ‘#buddypress div.dir-search ‘
from -39px 0 0 0; to -3px 0 0 0;
and everything looks fine and I can see the form.
Naijaping
May 5, 2014 at 8:04 pm #182510In reply to: [Resolved] Onprofessional look
Prince Abiola Ogundipe
Participant@projectfms, you can make buddypress look whatever you want. the latest BP is compatible with any WP theme and you can customise it to look what you want or just create a custom WP theme to suit your needs.
Naijaping
May 5, 2014 at 4:15 pm #182502In reply to: Using Buddypress messaging in a unique way
sparkingproducts
Participantthanks renalto, this encourages me a lot in effect that it is doable! If you or anyone else could assist the process. For 1 and 2 for example, I don’t know how I would go about configuring these for buddypress and the documentation looks unfinished.
Could you explain how to deactivate the friends component? Really what I want to do is hide it, prepopulate their friends for them, and then limit them to only be able to message their friends.
I’ll work on #4 with the data you gave me, thank you!
May 5, 2014 at 2:42 pm #182497In reply to: Using Buddypress messaging in a unique way
Renato Alves
ModeratorHere are some suggestions and ideas:
1. and 2. Here you would configure a bit to make the roles do whatever you want when you want it.
3. It is possible to remove it and activate only the messaging component.
4. Today this is easy with the Theme Compatibility and Template Files (https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/)
May 5, 2014 at 2:06 pm #182495In reply to: Overrding BuddyPress files
Renato Alves
ModeratorTry not to repeat all the file path. Just putting:
themes/your-theme/buddypress/members/single/member-header.php
May 5, 2014 at 12:31 am #182487In reply to: Blank page after saving edited profile
rccoder
ParticipantI had the same problem. It was caused by an unhandled PHP error.
PHP Fatal error: Call to undefined function bp_activity_get() in …/wp/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-activity.php on line 266
Here’s the fix.
Fix: Modified BP plugin bp-xprofile function to prevent the error.
File: wp/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-activity.php
Function: bp_xprofile_updated_profile_activity
Line: 266Added the following to prevent the error.
// FIX: Blank page after edit profile save.
if ( function_exists ( ‘bp_activity_get’ ) ) {
…May 5, 2014 at 12:00 am #182486In reply to: Can't locate registration page file
Joe LeBeau
ParticipantBuddypress really should have a character limit option for the profile fields and comments…
May 4, 2014 at 8:38 pm #182480In reply to: Feature request: New user moderation
okamiokami
Participant@sharmavishal
thank you for your suggestion. I installed the plugin, however it has not been updated in the last 8 months, and that’s the reason I am asking for a BuddyPress feature. Personally, I’d rather use the fewest possible plugins and rely on integrated functions.I’m having problems with slow-updating plugins on a different blog, and WP’s auto-update feature is not helping.
Back to the topic, I’ll give the plugin a chance, but I’m afraid that sooner or later it might be deprecated, and I’d be back at square one
May 4, 2014 at 8:25 pm #182478In reply to: Change "Sitewide Activty" header the right way?
bp-help
Participant@protechig
Have you tried using the language file approach?May 4, 2014 at 5:31 pm #182473In reply to: Rename "Groups" label on profile menu
shanebp
ModeratorTry this in bp-custom.php or your theme functions.php:
function jeff_change_buddypress_profile_tabs( $translated, $original_text, $domain ) { if ( 'buddypress' !== $domain ) { return $translated; } switch ( $original_text ) { case 'Groups <span>%d</span>': return 'Bongos <span>%d</span>'; case 'Groups': return 'Bongos'; default: return $translated; } } add_filter( 'gettext', 'jeff_change_buddypress_profile_tabs', 10, 3 );May 4, 2014 at 4:24 pm #182469In reply to: Text in fields linked – by design?
SK
ParticipantI would prefer a field-by-field switch a la https://buddypress.trac.wordpress.org/ticket/787 as opposed to a blanked on/off.
May 4, 2014 at 4:04 pm #182468In reply to: Rename "Groups" label on profile menu
JeffE
Participant@jaynm26 I still haven’t been able to change the Groups label on the profile page. I’ve used the .po file to change it just about everywhere else on the site, but this one place seems to be hard coded. I don’t know why the BuddyPress developers haven’t piped in on this.
May 4, 2014 at 2:26 pm #182466In reply to: Text in fields linked – by design?
SK
Participant@djpaul Thanks! That would be nice https://buddypress.trac.wordpress.org/ticket/787
May 4, 2014 at 12:51 pm #182460In reply to: How to alter register/activate pages?
Giacomo
ParticipantI tested this on BuddyPress 2.0 and twentytwelve theme and it’s adding the custom content
May 4, 2014 at 12:12 pm #182454In reply to: Theme development woes
Renato Alves
ModeratorI personally doesn’t create like that. I bring the files to my themes folder and edit them. This is better for upgrades and I won’t need to create pages.
Example: If I want to have a custom Profile page, I would do the following steps:
1 – Create a folder in my theme called, BuddyPress (wp-content/themes/my-theme/buddypress).
2 – I would copy the profile file from the bp-legacy template in the BP plugin folder and would put in this BuddyPress folder in my template.
3 – Edit the way I liked.It depends much of what you are trying to do, but this approach solved my problems in a more secure and future-friendly way.
May 4, 2014 at 11:54 am #182451In reply to: Theme development woes
Sythenz
ParticipantMy example is arbitrary, and has no particular action – rather my method in developing a theme is the question: i.e: is there a particular method in which I should be creating themes or is calling buddypress functions on a theme the correct method of use?
May 4, 2014 at 11:46 am #182450xjamesb
ParticipantThank you for the feedback Henry and Modemlooper.
I have now got acceptable performance. Newrelic showed that admin-ajax.php was triggering a bug in BuddyPress Docs that was adding 3.5 s to each response. The plugin author is addressing the issue.
Inspection of Firebug log shows that an AJAX request is made on each keyUp. As Henry’s link suggests and my Newrelic logs show admin-ajax is consuming most of my sites resources. Developers need to reduce its use.
For small sites like mine with a perhaps 100 members in total the entire directory could be pre-loaded when the Compose tab is loaded. This would reduce server load and give 100ms response to the user.
How can I flag this as a feature request to core developers?
May 4, 2014 at 2:43 am #182439adamt19
Participantaccording to the codex they’re (bp_is_home and bp_is_my_profile) the same thing
May 4, 2014 at 2:02 am #182436In reply to: [Resolved] Very slow queries
J J
ParticipantSo, how do I make my website work? 60k people wanting to connect – BuddyPress can’t handle??
May 3, 2014 at 11:20 pm #182422In reply to: [Resolved] Very slow queries
Henry Wright
Moderator@j-j 60,000 members is an awful lot compared to most BuddyPress installations! Whilst low-performance is less noticeable on websites that have low-traffic, it explains why your queries are taking the extra time.
Going into 2.0, I think the core team realised more could be done to help sites such as your own, so they earmarked lots of areas of 1.9.2 that could be improved performance-wise. I think it might be more profitable in the long run for you to resolve the 502 error, rather than addressing a handful of queries that are running slowly. It’s likely that these queries have already been addressed in 2.0 – along with so much more.
Actually, 2.0.1 came out yesterday. It includes a number of fixes, some of which are related to the 1.9.x to 2.0.x upgrade routine. See: https://buddypress.org/2014/05/buddypress-2-0-1/
May 3, 2014 at 11:18 pm #182421In reply to: [Resolved] Very slow queries
J J
ParticipantThank you, but of of course 😉
Anyone – can you help with these consistent LONG QUERIES specifically? My hosting provider is stumped and thinks its a BuddyPress issue. Thank you!
May 3, 2014 at 7:25 pm #182413In reply to: Blank page after saving edited profile
adamt19
ParticipantSame issue I posted a few days ago
https://buddypress.org/support/topic/404-upon-save-changes-to-user-profile/ -
AuthorSearch Results