Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,576 through 36,600 (of 69,106 total)
  • Author
    Search Results
  • #120677

    In reply to: Previous version?

    Boone Gorges
    Keymaster

    You can download previous versions of BuddyPress from https://wordpress.org/extend/plugins/buddypress/download/

    #120676
    Boone Gorges
    Keymaster

    Very strange. Can you check your file permissions, to make sure that the web server can read the contents of bp-core?

    #120675

    In reply to: Frisco Child Theme

    angslycke
    Participant

    @davidtcarson Sounds great! Will wait for the version in the repository then. I think your theme will become really popular since there’s a huge lack of good looking themes and since it’s a child theme to the original theme and thus easier to update. Thanks again for all your work and count on me to help spread the word!

    #120674
    r-a-y
    Keymaster

    Thanks for the report.

    I’ve filed a ticket about this:
    https://buddypress.trac.wordpress.org/ticket/3604#comment:2

    #120673
    alanchrishughes
    Participant

    Is unhooking a difficult task?

    @DJPaul did you know of a better way to do this? You had replied to me a while back on the blog post for beta 1 that it shouldn’t be too hard.

    BuddyPress 1.5 – Beta 1

    #120671
    r-a-y
    Keymaster

    Users are the same even when you upgrade from 1.2.x to 1.5.

    If you’re talking about an import users option for BuddyPress (not WordPress), that’s different. A plugin like that could be developed, but as far as I know, nothing freely exists at the moment. I could be wrong though.

    #120670
    islandcastaway
    Participant

    Hello,
    This really isn’t a BuddyPress thing.

    Check out https://wordpress.org/extend/plugins/polldaddy/

    Polldaddy is an Automattic ruckus http://polldaddy.com/

    :P

    #120668
    r-a-y
    Keymaster
    #120667
    islandcastaway
    Participant

    No, that is where i started.

    I added:
    define( ‘BP_DEFAULT_COMPONENT’, ‘sites’ );

    to bp-custom and now it does.

    so the page https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/ is incorrect.

    I currently have:

    define( ‘BP_MEMBERS_SLUG’, ‘clients’ );
    define ( ‘BP_BLOGS_SLUG’, ‘sites’ );
    define( ‘BP_DEFAULT_COMPONENT’, ‘sites’ );

    //define ( ‘BP_IGNORE_DEPRECATED’, true );
    //define ( ‘BP_ENABLE_MULTIBLOG’, true );

    //define( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’, true );
    define( ‘BP_SILENCE_THEME_NOTICE’, true );
    //define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true );
    define ( ‘BP_DISABLE_ADMIN_BAR’, true );

    in wp-config. all seem to work accept the default profile page.

    #120666
    Andrew Tegenkamp
    Participant

    ok, let’s give this code a shot. I just tried it on a local dev and it worked well.

    Code:
    function redirect_group_home() {
    global $bp;
    $path = clean_url( $_SERVER[‘REQUEST_URI’] );
    $path = apply_filters( ‘bp_uri’, $path );
    if (bp_is_group_home() && strpos( $path, $bp->bp_options_nav[‘groups’][‘home’][‘slug’] ) === false ) {
    /*
    echo "HERE WE GO…";
    echo "<PRE>"; print_r($bp->groups->current_group); echo "</PRE>";
    echo $bp->groups->current_group->status;
    echo $bp->groups->current_group->is_user_member;
    */
    if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
    //echo "<PRE>"; print_r($bp->bp_options_nav); echo "</pre>";
    //exit();
    if ($bp->bp_options_nav[‘groups’][‘announcements’][‘slug’]) {
    bp_core_redirect( $path . $bp->bp_options_nav[‘groups’][‘announcements’][‘slug’] . ‘/’ );
    } else {
    bp_core_redirect( $path . $bp->bp_options_nav[‘groups’][‘forum’][‘slug’] . ‘/’ );
    }
    //bp_core_redirect( $path . ‘welcome/’ ); //quick hack for some other tab
    }
    }
    }
    function move_group_activity_tab() {
    global $bp;
    if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
    $bp->bp_options_nav[‘groups’][‘home’][‘position’] = ’98’;
    $bp->bp_options_nav[‘groups’][‘admin’][‘position’] = ’99’;
    $bp->bp_options_nav[‘groups’][‘home’][‘name’] = ‘Activity Log’;
    }
    }
    add_action(‘wp’, ‘redirect_group_home’ );
    add_action(‘bp_init’, ‘move_group_activity_tab’);

    If that does not work for you can you kinda enable debug and comment out the /* and the //echo lines and see if you get anything different?

    On a side note, I noticed you called them forums. Did you know that bbPress is now a plugin at https://wordpress.org/extend/plugins/bbpress/ if you don’t want all the BuddyPress features and just the forum itself? Just an FYI in case that serves ya better. Check out https://bbpress.org/blog/ for more as it’s new as of yesterday as an official release.

    #120665

    In reply to: Blogs & Sites

    r-a-y
    Keymaster

    You need to create a WordPress network first before you can use BuddyPress’ blog tracking functionality.

    Have you read this article?
    https://codex.wordpress.org/Create_A_Network

    #120661
    r-a-y
    Keymaster

    BuddyPress 1.5 created pages for your directory pages.

    In the WP dashboard, navigate to “Pages”, and try and find a page that says “Sites” or “Blogs” or whatever your blog directory is called. Rename the page slug to ‘sites’.

    Then in your bp-custom.php file, use:
    `define( “BP_BLOGS_SLUG”, “sites” );
    define( “BP_DEFAULT_COMPONENT”, “sites” );`

    #120660
    r-a-y
    Keymaster

    After you’ve installed BuddyPress, what happens when you switch to the bp-default theme?
    In the WP dashboard, navigate to “Appearance > Themes” after you have installed BuddyPress and select “BuddyPress Default 1.5”

    Do not activate BP Template Pack yet. What happens?

    Does BuddyPress function on the site?

    #120658
    r-a-y
    Keymaster
    #120657
    r-a-y
    Keymaster

    You can throw in the following code in your /wp-content/plugins/bp-custom.php file:
    `function my_group_avatar_default() {
    global $bp;
    // change ‘identicon’ to anything listed here:
    // http://en.gravatar.com/site/implement/images/#default-image
    $bp->grav_default->group = ‘identicon’;
    }
    add_action( ‘bp_init’, ‘my_group_avatar_default’ );`

    #120656

    In reply to: buddypress 1.5 issues.

    Boone Gorges
    Keymaster

    Very strange. Is *any* of the javascript on your BP 1.5 installation working? Places to check: requesting friendships/group memberships from directories; replying to private messages; the “read more” link that appears when you have a very long forum post.

    #120647

    In reply to: buddypress 1.5 issues.

    sheffieldlad
    Member

    Hi Boone,

    Global.js is being loaded.
    When I open Firebug I get no errors when I try clicking on things.
    Javascript is enabled in my browser.

    BP 1.2.10 works fine, as does this site. (I’m speculating that this is a 1.5 install of bp?) So I’m unsure as to whether the problem lies in my browsers but having said that, no-one else seems to be reporting the issue so who knows?

    Is there a way to reinstall the interpreter in my browser/on my PC?

    (I’m guessing that Javascript is interpreted).

    I can give you access to my site but there doesn’t seem much point seeing as I’ve gone back to 1.2.10.

    Thanks,

    Paul.

    #120646

    In reply to: buddypress 1.5 issues.

    Boone Gorges
    Keymaster

    It’s difficult to troubleshoot any issues without access to your site. Things to check:
    – is global.js being loaded in your document’s head?
    – when you open a javascript console (like in Firebug), do you get any errors when you try clicking on things?
    – is Javascript enabled in your browser?

    #120645
    DarrenMooney
    Participant

    @boonebgorges Thanks for the info.

    @derekbolden I know that the integration of bbp and bp isn’t 100%, but I’m sure stuff like that will be sorted in new updates.

    #120644
    Derek
    Participant

    @DarrenMooney
    Thanks for your post! I was really getting frustrated with the forums setup, but your post helped. Now my only concern is the forum posts etc. showing up in my activity stream. Right now they aren’t. Is anyone else experiencing this and is there a work around?

    #120643
    sheffieldlad
    Member

    In my version 1.2.10 it’s under general settings for buddypress.
    my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.

    I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5 :/

    #120642
    sheffieldlad
    Member

    In my version 1.2.10 it’s under general settings for buddypress.
    my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.

    I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5 :/

    #120639

    In reply to: buddypress 1.5 issues.

    sheffieldlad
    Member

    Hi Boone, thanks for the reply.

    I’ve tried with 2 different FF profiles (latest version) and google chrome, all running on the same computer.
    I don’t have another computer to try it on.

    I rolled back to bp 1.2.10 (fresh install).

    Everything worked fine in 1.2.5 but the automated install to 1.5 failed so I started again from scratch.
    How would I go about fixing my javasscript issues if it turns out to be that?

    I’m willing to reinstall bp 1.5 and try it again if I can get it to work.

    Many thanks,

    Paul.

    #120635
    manureloaded
    Member

    Thanky you Boone Gorges

    #120634

    In reply to: buddypress 1.5 issues.

    Boone Gorges
    Keymaster

    It sounds like BuddyPress’s javascript is not loading properly in your browser. Do you have javascript enabled? Can you give more details on the browser you are using? Can you try with another browser or from another computer?

Viewing 25 results - 36,576 through 36,600 (of 69,106 total)
Skip to toolbar