Search Results for 'buddypress'
-
AuthorSearch Results
-
June 4, 2012 at 11:08 pm #135472
In reply to: [Resolved] BuddyPress Groupblog
Aaron-Nall
ParticipantIf it’s a bug, or it takes effort, you won’t get an answer for a very long time if ever.
June 4, 2012 at 6:31 pm #135468danbpfr
ParticipantThe raw solution:
Go to bp-friends/bp-friends-template.php and comment the whole case “is_friend” between line 329 and 344.The better solution:
rewrite the function bp_get_add_friend_button who contains the switch given in the above solution and put it in your child theme’s function file.June 4, 2012 at 4:34 pm #135465In reply to: check if field has new value in buddypress xprofile
shanebp
ModeratorUntested, but try this:
`
add_action (‘xprofile_updated_profile’, ‘profile_change_notify’);
function profile_change_notify ($id, $posted_field_ids, $errors) {
$global $wpdb;if( $errors )
return;$names = ”;
foreach( (array)$posted_field_ids as $field_id ) {
$sql = ” SELECT name FROM wp_bp_xprofile_fields WHERE id = ‘$field_id’ “;
$name = $wpdb->get_var( $sql );
if( $name == ‘Country’ || $name == ‘City’ )
$names .= ‘ ‘ . $name;}
if( $names != ” ) {
$user = new WP_User ($id);
wp_mail (‘myname@mydomain.com’, ‘Subject ( ‘ . $user->user_login . ‘ just updated the Profile )’, $names);
}
}
`June 4, 2012 at 10:52 am #135452In reply to: SPAM ON ACTIVITY PAGE!
Paul Wong-Gibbs
KeymasterBlimey. I’d like to reassure that there’s no conspiracy theory (but I would say that, right?), nor is the BuddyPress.org team ignoring posts on these forums. We are all volunteers, and we only have so much time that we can contribute. This thread is not heading in a constructive direction so I am going to close it.
Mercime’s answer above was good as any. It takes a lot of effort from lots of people to try to prevent spam. This thread talks about user registration spam and activity spam. In our next version of BuddyPress, 1.6, Akismet is integrated into Activity Stream. We have this running on testbp.org and it seems to be doing a decent job at helping.
June 4, 2012 at 8:16 am #135450In reply to: Interesting Child Setup
michaeljdornan
MemberHi Paul, sorry missed this and really looking for an answer… no they should be connected, so if someone registers on any of the sites they share the same user database and can move between them all… possible? either that or does buddypress have news themes?
June 4, 2012 at 6:59 am #135448In reply to: Email confirmation link for new users?
@mercime
ParticipantSee Registration -> BuddyPress isn’t sending out emails (eg. activation emails, email notifications) https://codex.buddypress.org/troubleshooting/frequently-asked-questions/
June 4, 2012 at 6:56 am #135447In reply to: upgraded Buddy Press plug in from 1.5.4. to 1.5.5
@mercime
ParticipantBuddyPress Links plugin has not been updated for BP 1.5. To gain access to your wp-admin, you have to disable BuddyPress Links in wp-content/plugins/buddypress-links by renaming the folder to e.g. wp-content/plugins/buddpress-links-xxx
June 4, 2012 at 6:45 am #135445In reply to: [Resolved] Using theme musiclife will not align.
@mercime
Participant99% of the time, each theme has a unique resolution for Step 3 of the BP Compatibility process. So no, the different codes we posted in https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/ for different WP themes.
Initial scan shows that for your theme, you only need to create two files to make the layout compatible.
June 4, 2012 at 3:56 am #135442In reply to: How do you edit the width of the profiles?
@mercime
Participantsp12, you should be using the Sufusion BuddyPress Pack plugin with the Suffusion theme rather than the BP Template Pack https://wordpress.org/extend/plugins/suffusion-buddypress-pack/
June 3, 2012 at 10:25 pm #135437Paul Wong-Gibbs
KeymasterWe should. Please make an enhancement ticket on https://buddypress.trac.WordPress.org/. You can use your username and password from this site.
June 3, 2012 at 10:22 pm #135436In reply to: SPAM ON ACTIVITY PAGE!
neononcon
Member@Tina but isn’t it interesting that they supposedly have so many people keeping an eye open for spammers but so many important posts go unanswered. LOL I’m calling BS on that one. A completely unused Buddypress site is having new registrations and posts on average of every 5 minutes and sometimes less. But yet this site is virtually spam free. What’s the secret? Why can’t Akismet block the Buddypress spam?
June 3, 2012 at 10:20 pm #135434In reply to: Server requirements for 100K active users
Paul Wong-Gibbs
KeymasterSuggest you hire someone with server expertise if you’re talking about that scale. It’s cheaper than trying to scrape together advice from forums.
100k users, one at a time, is different from 100k users visiting your site at the same time. It’s a question of concurrency, really, and what your requirements are about server redundancy and failover.
Whatever runs WordPress at this level, will run BuddyPress.
June 3, 2012 at 9:32 pm #135430Eric Langley
ParticipantI had enable BP multi blog enabled in wp-config, thus BuddyPress is automatically activated and configured at the site level.
I went ahead and dis-enabled BP multi blog and this put the BuddyPress control panel in the Network Admin site. There I was able to configure bbPress so that it worked.
Then I enabled BP multi blog and added sites. I now have separate bbPress forums on each site with the addition of BP Multi Network filtering.
~eric
June 3, 2012 at 9:27 pm #135429In reply to: Users can’t upload their avatar when on Mac
tjbrewers
ParticipantMe either, Paul @djpaul. But it’s happening to all of our iPad and iPhone users. I’ve disabled all plugins (except BP) and same thing. They say say clicking on the upload button does nothing at all.
June 3, 2012 at 7:08 pm #135427tibbles
MemberI’ve done the following:
1. If you do not have access of PHP.ini file then add this to an .htaccess file of your domain:
php_value memory_limit 256M
2. Try to add this line to your wp-config.php file to increase allocated memory to PHP:
define(’WP_MEMORY_LIMIT’, ‘256M’);
3. Deleted the plugin folderWP admin works! Was sweating blood. I’m too afraid to install this plugin now.
June 3, 2012 at 6:08 pm #135425In reply to: Remove (not hide) Page Titles
tibbles
MemberTheme is: BuddyPress Default
When clicking on a tab of the menu – (not blog posts) currently all pages display the page name – which makes it look unprofessional. The contents of the page clearly indicate what the page should be – no need for a display of the page name. How does one ‘hide’ this? If deleting it is too complex for me then I’ll settle for just hiding the name.
Thank you for the response.
June 3, 2012 at 4:42 pm #135424In reply to: Issues with Private Group Updates
Paul Wong-Gibbs
KeymasterThis was cross-posted on BP trac, and the answer was provided at https://buddypress.trac.wordpress.org/ticket/4232
June 3, 2012 at 4:15 pm #135423In reply to: buddypress Members Link on site not shown
@mercime
ParticipantYou need to make your WordPress theme compatible with BuddyPress by installing the “BP Template Pack” plugin then go through Appearance > BP Compatibility.
– https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
– https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/June 3, 2012 at 4:06 pm #135421In reply to: Issues with Private Group Updates
@mercime
ParticipantTo put your issues in context
WP/BP versions? Theme used? Plugins used? basically … https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/June 3, 2012 at 2:38 pm #135419notpoppy
ParticipantI was also surprised to discover that when a user is marked as a spammer, no action is taken to delete or hide the messages they have sent from users.
When a user is marked as a spammer, surely Buddypress should prevent all other users from seeing messages they have sent? Can this be added to a future version?
June 3, 2012 at 12:07 pm #135417Arthur
ParticipantI’m testing buddypress on IIS and getting the same error – does anyone know how to resolve this in IIS instead of Apache?
June 3, 2012 at 11:59 am #135415In reply to: Disable viewing info on friends of friends
Paul Wong-Gibbs
KeymasterDo not post duplicate threads: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/disable-viewing-info-on-friends-of-friends/
June 3, 2012 at 8:54 am #135412In reply to: Buddypress Multi-Group Remove
pawriter
ParticipantThanks I will try
At the moment I seem unable to adequately search the site, create new topics, find topics started, find replies and generally navigate well, except for searching plugins which does seem to be ok.June 3, 2012 at 8:12 am #135410Antonio
MemberI’ll take them a look.
June 2, 2012 at 8:58 pm #135405In reply to: “Redefining already defined constructor”
Paul Wong-Gibbs
KeymasterBuddyPress won’t be trying to load itself twice (the redefine errors), so something must be triggering part of that. It’s either BP Docs, or another BuddyPress plugin or customisation that you have.
If you disable BPDocs, what goes away?
Please also note Boone’s comment on https://buddypress.trac.wordpress.org/ticket/4191
-
AuthorSearch Results