Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,376 through 36,400 (of 68,918 total)
  • Author
    Search Results
  • #120711
    @mercime
    Participant

    Did you also upgrade your BuddyPress Template Pack plugin to version 1.2?

    #120710
    @mercime
    Participant
    #120698
    Adam
    Member

    Any ideas? Testing a theory that the plugin installer in the WP dashboard did not set up or download, or extract all the bp files properly, deleting the plugin from ftp took 1 second where as it usually takes a minute.

    fixed it: It looks like the WP Plugin installer did not do its job properly

    #120696
    Chido
    Member

    I have exactly the same problem!

    #120695
    Myne Whitman
    Member

    The widgets in one of my widget area are not showing either unless I move them some place else. And they lose their boxes.

    #120691

    Im still having trouble. now the message form is showing up, but when I click on send message, it comes up with a blank form, the name doesnt transfer. when i do send a message, i got a blank page with this error now:
    Fatal error: Call to undefined function bp_get_settings_slug() in /home2/showandr/public_html/wordpress/wp-content/plugins/buddypress/bp-messages/bp-messages-notifications.php on line 20

    Also, all replies to any activity not showing up/not working. any ideas?

    #120689
    Adam
    Member

    Heres what I did:

    (this is on a multisite – yes my host allows for e to execute php files and -press type programs, including wordpress and bbpress)

    I deleted my old BPress for other issues that worked upon its deletion. I then searched and installed this version through the dashboard for network admin and then tried to network activate. the first tie I got that error, I then checked the permissions and tried an experiment by setting things from 750 – 777 for all files and directories (including sub directories) of my “upload to” folder. so this made all associated files with bp 777. I tried activating it again….same issue.

    #120682
    Nahum
    Participant

    @r-a-y that works. tx

    #120681
    raquel_p
    Member

    Thanks Boone Gorges!

    A comment the line about enable multiblog and the wizard runs well. I really need the Multiblog feature in my website and I will uncomment the line after. I have problems to make BP-compatibility runs, but now they are solved.

    #120680
    Boone Gorges
    Keymaster

    This is a good idea for a feature enhancement. I encourage you to open a ticket, requesting that these slugs be customizable. http://trac.buddypress.org

    #120679
    MajinSaha
    Member

    @r-a-y What happens is what I described above. I NEVER activated BP Template Pack. It’s only installed for future use, that’s all.

    Boone Gorges
    Keymaster

    Have you gone through the BuddyPress setup wizard? When you go to Dashboard > BuddyPress > Pages, is there a page associated with Members?

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

Viewing 25 results - 36,376 through 36,400 (of 68,918 total)
Skip to toolbar