Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,501 through 35,525 (of 69,109 total)
  • Author
    Search Results
  • #123484
    neononcon
    Member

    Thanks. Wasn’t BP basically an offshoot from P2? Would there be a way to just incorporate the P2 method of displaying the tag activity? Sure, tags sort of take away from the “status update” concept that we know of from other large social networking sites, but it would really take Buddypress to another level by having that feature available.

    #123482
    drmikelbrown
    Member

    @David thanks this worked perfectly. I was trying a bunch of different redirects but I keep getting caught in a redirect loop. Thanks this helped a whole lot.

    @mercime
    Participant

    == I did a complete uninstall per the directions, ==
    Directions from what source?

    == How do you trigger buddypress to recreate the tables and pages within wordpress? ==
    https://codex.buddypress.org/buddypress-site-administration/deleting-buddypress/
    Then install BuddyPress 1.5.1 and go through Installation Wizard

    #123475
    modemlooper
    Moderator

    Search on here and google “buddypress activity stream meta”

    It’d possible but you’d need to create your own method to display activity from a certain tag

    #123473
    henrybcn
    Member

    I also love some advice on cache plugins for buddypress, in particular how to configure W3TC. Strange that the W3TC plugin creator does not help out here. (Or have I missed that?)

    #123470
    David Carson
    Participant

    There are different ways to do this.

    Do you have a bp-custom.php file in your plugins directory?
    https://codex.buddypress.org/extending-buddypress/bp-custom-php/

    If so, try adding this to it:

    `// Redirect logged out users viewing homepage to register page.
    function custom_redirect_home_to_register() {
    global $bp;

    // If user is not logged in and viewing front page
    if (!is_user_logged_in() && bp_is_front_page() ) {
    // Redirect to registration page. Change /register to your register page slug
    bp_core_redirect( get_option(‘home’) . ‘/register’ );
    }
    }

    add_action( ‘wp’, ‘custom_redirect_home_to_register’, 3 );`

    If not, create the file and include an opening php tag before adding that code. This uses basic conditionals and can be customized however you’d like.

    https://codex.buddypress.org/developer-docs/conditional-template-tags/

    wiking
    Member

    for sure – but the bug is open for 15 months ( https://buddypress.trac.wordpress.org/ticket/2576 ) and wasn’t fixed – and therefore i thought if you tidy the code up you could add it to core as a patch.

    #123450
    Anonymous User
    Inactive

    Do any of you know how to replace buddypress’s registration form with Gravity Forms?

    #123397
    flutence
    Member

    I can’t believe it… it WAS a conflict, with the “Buddypress Jquery Activity Stream Widget”; I just deactivated it and all of a sudden I could comment on another user’s wall update

    #123406
    TimCarey
    Participant

    Before buddy press 1.5 I was using the following function with success.
    `

    function tac_redirect_to_frontpage() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
    }
    add_action( ‘wp’, ‘tac_redirect_to_frontpage’ );
    `
    I really don’t know exactly what it was doing, but With buddy press 1.5 it stopped working.

    `
    function tac_redirect_to_frontpage() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav[$bp->groups->current_group->slug] ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav[$bp->groups->current_group->slug] . ‘/’ );
    }
    add_action( ‘wp’, ‘tac_redirect_to_frontpage’,1 );
    `
    All this does is cause the browser to keep loading until it decides there is no page. I’d tried echoing the path variable up above in to the group header and it showed correctly I’d tried echoing the following and it showed nothing.

    `
    $bp->bp_options_nav[$bp->groups->current_group->slug] )
    `

    I could really use any help. @djpaul, or any one

    #123405
    unfettered
    Member

    @darren I’ve done what you said here and got my site wide forums up. (http://unfettereddesigns.net/forums/), but when i click on an individual forum ( ie http://unfettereddesigns.net/forums/forum/dark-age/) I’m getting a blank page in which i can’t post any new info to. Any idea whats going on here?

    MajinSaha
    Member

    @David Aah, great. That’s a relief! Thanks a lot!

    David Carson
    Participant
    #123401
    RiccardoNL
    Member

    Hi all,

    I have had this trouble with the activity/reply function on BuddyPress 1.5.1 too (and this is how I found this forum).
    I’m using the Arras Theme, but I guess it should work on any theme, since no theme files are being edited.

    Today, I have found out how to fix the 404-error on the reply-function, while commenting on an activity.
    In the file /wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php, there is an “!” missing on line 258.

    This is the original code:
    if ( !is_user_logged_in() || ( bp_is_activity_component() ) || !bp_is_current_action( ‘reply’ ) )

    Change it to:
    if ( !is_user_logged_in() || ( !bp_is_activity_component() ) || !bp_is_current_action( ‘reply’ ) )

    Et voila, it works. It did the trick for me :-)

    CJ Kruger
    Participant

    As modemlooper said, buddypress.org is not a reflection of buddyress itself. If you want to test out the current/stable release – there is testbp.org specifically for that purpose.

    #123213

    In reply to: Forum Link Problem

    ananda01
    Member

    I have the same problem. I’m using site wide forum and installed bbpres as mentioned in the the forum settings. Than I added one forum “general”…just to test

    It seems to install fine and I can adress the forum from the admin with the view forum-link
    http://www.arambol.in/forum/general/

    BUT forum doesn’t appear in the menu. I’m a buddypress newbie and tried now for several days…but no success. I have to mention that I disabled all other plugins and that I tried also with the default bp theme with the same result.

    thx for assistance

    Daniel

    enderpal444
    Participant

    When web development stops being polite…and starts getting real.

    Good read guys.

    modemlooper
    Moderator

    No, BuddyPress works fine and will into the future and bug fixes are never ending. This site is developed live, hence it being broken. Don’t use this site as a reflection of the state of the software.

    #121661
    enderpal444
    Participant

    @DJPaul Ha ok I got it working. Just have one more question and that’s how do I display it larger than 50px without it distorting the image? It displays larger on the members profile without distorting but when I set the code below to “96” the image came out fuzzy.

    if (strpos($template, '%POST_TITLE%') !== false) {
    $userid = $post->post_author;
    $post_title = get_avatar( $userid, 96);
    if ($max_post_title_chars > 0) {
    $post_title = snippet_text($post_title, $max_post_title_chars);
    }
    $value = str_replace("%POST_TITLE%", $post_title, $value);
    }
    #121761
    enderpal444
    Participant

    @DJPaul Ha ok I got it working. Just have one more question and that’s how do I display it larger than 50px without it distorting the image? It displays larger on the members profile without distorting but when I set the code below to “96” the image came out fuzzy.

    if (strpos($template, '%POST_TITLE%') !== false) {
    $userid = $post->post_author;
    $post_title = get_avatar( $userid, 96);
    if ($max_post_title_chars > 0) {
    $post_title = snippet_text($post_title, $max_post_title_chars);
    }
    $value = str_replace("%POST_TITLE%", $post_title, $value);
    }
    @mercime
    Participant

    @ossendryver https://codex.wordpress.org/Installing_WordPress#WAMP for your PC only
    EDIT – if your WP is on webhost, contact webhost tech support to see why your WP is not working.

    @mercime
    Participant

    @ossendryver https://codex.wordpress.org/Installing_WordPress#WAMP for your PC only
    EDIT – if your WP is on webhost, contact webhost tech support to see why your WP is not working.

    #121651
    @mercime
    Participant

    @wpmuguru UMW site is cool and awesome. Thanks for sharing the link to the university and to Curtis’ blog on the site.

    #121751
    @mercime
    Participant

    @wpmuguru UMW site is cool and awesome. Thanks for sharing the link to the university and to Curtis’ blog on the site.

    djoep
    Member

    Sorry, but I believe you have missed the point of the original post. Please read this entire post before responding. It’s a little long, but not that long.
    Neither the original poster, nor I, had any complaints about the operation of installations we had made ourselves. What was being asked, was whether there should be concern due to the obvious problems on the buddypress website itself, not our own installations.
    We, the user community, have no way of knowing, other than by asking, if the problems on this site are due to use of an old version of BuddyPress, use of an unreleased version of BuddyPress, use of a broken theme for BuddyPress, or perhaps even maybe they have nothing to do with BuddyPress at all. However, problems that show up on this site beg the question as to whether or not as yet unseen problems might show up on our installations. So, when we ask… “why do I get a white screen when I click on page 2 of the buddypress support forum” this should not be considered a criticism of BuddyPress or it’s developers… it’s merely a question.
    We, the user community, would like to have some idea of what we’re getting into. I personally feel fairly comfortable with getting into the guts of most php applications, but I do not have the ability to get into the guts of the implementation of this site so there is no way for me to answer my own question.
    For those that are responsible for implementation of the site, I still don’t see any reason whatsoever for offense just because someone points out a defect and asks regarding its cause. If the people responsible for the implementation of this site are too busy to look into it, fine. I can completely relate to that. If the site is built on an obsolete platform that is not worth troubleshooting, fine. I can completely relate to that as well. If the site is built on a platform that is in development and as yet incomplete or unstable, fine. I have no problem accepting that. What I do have difficulty with is being told that merely pointing out the defective behavior on this site, and being told that it is offensive to ask about it.
    So have I made myself understood that I am not complaining about BuddyPress software, I am just asking what it is that is causing the buddypress.org website to behave in obviously undesirable and perhaps unexpected ways.
    joe

Viewing 25 results - 35,501 through 35,525 (of 69,109 total)
Skip to toolbar