Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,351 through 35,375 (of 68,918 total)
  • Author
    Search Results
  • #123337
    Paul Wong-Gibbs
    Keymaster

    I’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).

    #122883
    Boone Gorges
    Keymaster

    It 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’ );`

    #123018
    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.

    #123012

    In reply to: Sign in redirect

    Good in Today
    Participant

    I’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.

    #123334

    In reply to: fatal error upgrading

    tommyhoang
    Member

    I’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

    #123333

    In reply to: fatal error upgrading

    Paul Wong-Gibbs
    Keymaster

    You 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.

    recycler14
    Member

    Hi! 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

    #123013
    drhoussem
    Member

    upp

    #123005
    aces
    Participant

    I 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’ );
    `

    #122998
    Anonymous User
    Inactive

    I’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.

    #122997
    Anonymous User
    Inactive

    I’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.

    modemlooper
    Moderator
    rich
    Member
    rich
    Member

    already done core via the function `bp_activity_make_nofollow_filter`

    wiking
    Member

    I 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!

    #122984
    rich
    Member

    You 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_check

    this filter will pass a long additional data to check for – but you’ll need to dig into the code to figure that portion out.

    #122981
    Lee
    Participant

    Thanks 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.

    #122980
    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?

    #122977
    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.

    prionkor
    Member

    Need the same thing. Please someone help!!

    #122970
    pcwriter
    Participant

    @petergunn

    This 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.

    #122966
    pengume
    Participant

    Yea 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.

    #122965
    Paul Wong-Gibbs
    Keymaster

    I haven’t seen this problem before. What version of BuddyPress are you using, and what other widgets?

    #122964
    Paul Wong-Gibbs
    Keymaster

    Yes to both. Are you able to deactivate template pack, switch to BuddyPress default theme, and see if they reappear?

    #122963
    Paul Wong-Gibbs
    Keymaster

    If 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.

Viewing 25 results - 35,351 through 35,375 (of 68,918 total)
Skip to toolbar