Search Results for 'buddypress'
-
AuthorSearch Results
-
October 29, 2011 at 12:44 pm #123337
In reply to: bp_groups_default_extension
Paul Wong-Gibbs
KeymasterI’d like to point out this in currently only in BuddyPress trunk; it won’t get into a release until BP 1.6 (or maybe 1.5.2, or something like that).
October 29, 2011 at 11:39 am #122883In reply to: bp_groups_default_extension
Boone Gorges
KeymasterIt works like any other definable constant in BuddyPress, or any other filterable value. Do one of the following:
1) In wp-config.php or bp-custom.php,
`define( ‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );`2) In a plugin file or bp-custom.php,
`function bbg_set_group_default_extension( $ext ) {
return ‘forum’;
}
add_filter( ‘bp_groups_default_extension’, ‘bbg_set_group_default_extension’ );`October 29, 2011 at 9:37 am #123018In reply to: Buddypress Profile privacy for non-friends
noizeburger
Participant@jsigned
The same for me. Found solutions that worked until bp 1.2.10 but not on 1.5.
Made the changes from cnorris23 – it’s working. Sadly, these changes will be blown away with the next update and have to be done again – hope, this solution work then at least.October 28, 2011 at 11:57 pm #123012In reply to: Sign in redirect
Good in Today
ParticipantI’ve come up with this line of code…
/ *<?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'Want to join the conversation? Join or ‘.__(‘Login’, ‘suffusion’).’‘ ); ?> */
And it works… When you’re on the login screen UP UNTIL YOU PRESS SUBMIT the redirect shows correctly in the URL. WHEN YOU PRESS SUBMIT to actually login the system then redirects your redirect to PROFILE.PHP and I’m so far unable to locate which file this secondary redirect is bothering me from. I’ve butchered wp-login.php and the system doesn’t even seem to care. I think I could erase the file entirely and the system wouldn’t care.
What file is BuddyPress using to control User Login’s, if it’s not using WP-LOGIN.PHP? I’ve been unable to locate that too. I figure my secondary redirect headache MUST be in that file somewhere.
October 28, 2011 at 11:30 pm #123334In reply to: fatal error upgrading
tommyhoang
MemberI’m assuming it’s the buddypress plugin that caused it because it happened right after i upgraded to 1.5.1 in dashboard.
ok i just renamed the buddypress folder in wp-content/plugins via cpanel file manager. still cant access my wp-admin
October 28, 2011 at 11:07 pm #123333In reply to: fatal error upgrading
Paul Wong-Gibbs
KeymasterYou didn’t say which plugin is causing the error message, or show the error message itself. I’m assuming you think it’s BuddyPress.
Go into FTP, and go into your wp-content/plugins/ directory. Rename the BuddyPress folder to something else, then visit the admin pages of your site.
October 28, 2011 at 10:06 pm #123014recycler14
MemberHi! can somebody help me with buddypress. I installed the wordpress stufe theme and I think there is a conflict with the buddypress javascript. The order by feature which is powered by ajax is not working in my member page and activity page.
Response is highly appreciated. Thanks
October 28, 2011 at 9:30 pm #123013drhoussem
Memberupp
October 28, 2011 at 8:04 pm #123005In reply to: avatars changed to mysteryman after update
aces
ParticipantI discovered this issue myself earlier today and ( based on https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/1-5-group-avatars-using-mystery-man-default#post-109448 ) found that the following in bp-custom.php will change the default group and user avatar settings:
`
function my_avatar_defaults() {
global $bp;
// change ‘identicon’ to anything listed here:
// http://en.gravatar.com/site/implement/images/#default-image
$bp->grav_default->group = ‘identicon’;
$bp->grav_default->user = ‘monsterid’;
}
add_action( ‘bp_init’, ‘my_avatar_defaults’ );
`October 28, 2011 at 5:53 pm #122998In reply to: How to use Group Extension API
Anonymous User
InactiveI’m looking for someone to develop an API for my buddypress site that would allow users to sign up on my site, then connect to other sites of mine using a “Login with” button.
October 28, 2011 at 5:50 pm #122997In reply to: New buddypress plugins?
Anonymous User
InactiveI’m looking for someone to develop an API for my buddypress site that would allow users to sign up on my site, then connect to other sites of mine using a “Login with” button.
October 28, 2011 at 5:33 pm #122996modemlooper
ModeratorOctober 28, 2011 at 4:55 pm #122995rich
Memberblock prior to db save: https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/
October 28, 2011 at 1:45 pm #122986rich
Memberalready done core via the function `bp_activity_make_nofollow_filter`
October 28, 2011 at 1:41 pm #122985wiking
MemberI still struggle to get this view running corectly.
I managed to find out how to pull all group ID’s for a given userid:
SELECT group_id FROM `xyz_bp_groups_members` where `user_id` = 1
And how to get all forum_id’s for a given group:
SELECT meta_value FROM `xyz_bp_groups_groupmeta` where group_id = 1 and meta_key = ‘forum_id’
My idea was to do a join as i didn’t know how to follow your directions correctly @boonebgorges.
Therefore i tried to modify the original $sql (line 83 in bp-group-filters.php):$sql .= ‘JOIN ‘ . $bp->groups->table_name . ‘ AS g LEFT JOIN ‘ . $bp->groups->table_name_groupmeta . ‘ AS gm ON g.id = gm.group_id ‘;
with this extended version:
$sql .= ‘JOIN ‘ . $bp->groups->table_name . ‘ AS g LEFT JOIN ‘ . $bp->groups->table_name_groupmeta . ‘ AS gm, oba_bp_groups_members AS gu ON g.id = gm.group_id AND gu.group_id = gm.group_id’;
unfortunately i have not enough know-how how the buddypress-core is working correctly. Any hints on how to do this properly?
Many Thanks!
October 28, 2011 at 1:35 pm #122984In reply to: Remove Blog Posts from Activity Feed?
rich
MemberYou can block them from being saved to the activity table (db)
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/(otherwise, posts on the forums about removing them from the activity loop array)
then if you need to block a certain blog_id (if on multisite)
etivite_bp_activity_block_denied_activity_type_checkthis filter will pass a long additional data to check for – but you’ll need to dig into the code to figure that portion out.
October 28, 2011 at 1:21 pm #122981In reply to: Unable to Create New Sites
Lee
ParticipantThanks Paul, I do understand that. The WordPress issue was caused by BuddyPress so I thought it might be something you guys here might have come across before. I will post at wordpress.org too.
October 28, 2011 at 12:38 pm #122980In reply to: Site and/or Group Creation
Quint
Participant@djpaul, Thanks. I did what you suggested and more. No go. Since I have more control on my local installation, I re-installed WordPress, then BP 1.5.1 (using the bp-default). No luck. I uninstalled 1.5.1 and tried with 1.5. No luck. I uninstalled 1.5 and tried with BP 1.5 RC. No luck.
Other than you saying that it exists, I’m beginning to think that sub-menu item was always a figment of my imagination. I don’t know what else to try. Any suggestions?
October 28, 2011 at 11:47 am #122977In reply to: 1.5 Language, Child Theme and Multisite
Nahum
Participant@djpaul yea I’m pretty sure, since at first I did realize it was still the old language file from pre-1.5, so I downloaded the new .pot and worked with it.
Since I was workign with a custom theme, I’ve even tried it with a child theme of Bp-default and still the same problem.
October 28, 2011 at 10:22 am #122971prionkor
MemberNeed the same thing. Please someone help!!
October 28, 2011 at 10:04 am #122970In reply to: Need help with style.css
pcwriter
ParticipantThis should help solve your problem:
Open your style.css file and find `#header h1 a`
Remove `text-indent: -9999px;` (that’s whats causing long text to bleed off the left side)
Then adjust the width to fit the length of your title.October 28, 2011 at 7:09 am #122966In reply to: disable some users from having access to buddypress?
pengume
ParticipantYea I would like two types of membership roles. One where they get access to buddypress pages and maybe some other pages. As well as another membership role were they don’t get access to much if anything at all.
Right now I have it so logged out members do not have access to buddypress but I want to create a user who does not get access to any posts and buddypress pages. Would be nice if someone could lead us in the right direction. I saw some plugins that will help create roles and such but it does not allow for specification of buddypress pages too.
October 28, 2011 at 6:54 am #122965In reply to: [Resolved] Groups Widget Issue
Paul Wong-Gibbs
KeymasterI haven’t seen this problem before. What version of BuddyPress are you using, and what other widgets?
October 28, 2011 at 6:48 am #122964In reply to: Site and/or Group Creation
Paul Wong-Gibbs
KeymasterYes to both. Are you able to deactivate template pack, switch to BuddyPress default theme, and see if they reappear?
October 28, 2011 at 6:45 am #122963In reply to: Unable to Create New Sites
Paul Wong-Gibbs
KeymasterIf BuddyPress is disabled, and you still cannot register new sites in multisite, you have a WordPress problem. There are people with more expertise in this area, than us, over on the WordPress.org support forums.
-
AuthorSearch Results