Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 28,526 through 28,550 (of 69,108 total)
  • Author
    Search Results
  • Sven Lehnert
    Participant

    Hi @all, we testet the issues and could not reproduce them. The theme works just fine with a child theme as well. We can’t guarantee it works with modified child themes, as we don’t know what are the changes.

    Do you use a child theme? If so, please check if the issue still exists if you switch to the parent theme.

    Also, please make sure you have all other plugins disabled (except BuddyPress), to make sure this error does not arise from a plugin conflict.

    per @r-a-y: “Is there any reason why you need multisite?”

    It is my understanding that as of WordPress 3.0 MU was automatically built into core. I am not using multisite, per se, that I know if. At least I did not intent to use it. I do know that I have 2 dashboards in my WordPress under My Sites:
    (1) Network Admin
    (2) my Buddy Press site

    It does get a little hairy lopping through both dashboards to make settings tweaks and activate and deactivate plug-ins, etc.

    I will certainly give ‘wpmu_signup_user_notification‘ a try…

    #139275

    In reply to: Facebook pages

    juanmaguerrero
    Participant

    Hi, @sakarya I’ve managed to get that kind of functionality in my site by using groups with added custom extra fields. That way I can sub-categorize them and list them in any special ways I want. Maybe that could help you… let me know if you want me to tell you more, regards

    #139273

    So @mercime, if I already have bbPress installed and running, I should download it and install it again? It’s bbPress that drives this warning message?

    #139271

    In reply to: Maintenance Mode

    meg@info
    Participant

    When you upgrade to the latest version of BuddyPress (1.6), you will be presented with a new little wizard to help get you on the right track.

    Are you doing that ?

    look here

    http://wpmu.org/whats-new-in-buddypress-1-6-activity-managment-akismet-integration-profile-privacy-and-more/

    #139270
    sarah_lena
    Member

    @mercime The images that are not resizing properly are the user’s avatars. The various sizes of the uploaded avatars are in the folders, but the correct file is not being brought up by the function.
    I’ve also noticed that in my pre-upgrade installation (before I switched to Buddypress 1.6 and the latest Salutation theme version) that the user avatars were all working properly in the front end, but in the backend adminbar the avatar being called was wrong as well. I had already switched to the wp adminbar using `define(‘BP_USE_WP_ADMIN_BAR’, true);` .

    @philippmuenchen Sorry to hear that you’re having the problem, but actually relieved to know that I’m not the only one… hopefully we can get this figured out!

    #139269

    In reply to: How to downgrade?

    Paul Wong-Gibbs
    Keymaster

    I recommend against downgrading unless you have a database backup from the old version of BuddyPress. In 1.6, we changed how the BP DB version number is stored in the database, and adjusted the schema of the Activity table.

    I suspect running a 1.6-versioned database against a 1.5-site will cause BuddyPress to think it’s not installed, and force you to run through the install wizard again (as it’s already installed, of course, I’m not sure what would happen). It’s then possible you would have problems updating to a 1.6+ version of BP in the future because we’ve changed where/how the BP DB version number is stored in the database.

    We’ve got a 1.6.1 coming out very soon, which fixes compatibility with plugins and themes that were doing things wrong before, in ways that we didn’t anticipate when we touched parts of the code in 1.6. The most common themes with problems — Salutation and Custom Community — have already or will soon release updated versions of those themes to work with 1.6, too.

    @davidkooo, you can easily achieve that with css by replacing “notification text” witth image icon like facebook and only the number of notification will show on the image.

    somthing like: {background:url(_inc/images/alerts-icon.png)center no-repeat transparent !important;text-indent: -9999px;width:147px;height:25px;}

    Note: you have to adjust accordingly.

    juanmaguerrero
    Participant

    Hi, @shawn38 Glad to see someone found this useful :D

    I have actually optimized the code to work flawless and best performing. I could make a plugin with it just have to learn how to replace some code that is already given with BuddyPress, I will investigate that today and hopefully upload the plugin really soon. Will let you know with another message here. Thanks a lot for your encouraging words! :)

    davidkooo
    Participant

    @naijaping yeah it works, but how to get rid of “Notifications” text… I would like to display only number. Thanks.

    #139258
    djduckworth
    Member

    Hmm, the one I’ve set up seems to use buddypress.

    http://processpedia.designquotes.com.au/buddypress/members/admin/

    The homepage links a username to /buddypress/members/admin/

    #139257
    @mercime
    Participant

    @zkwc are you using the bp-default theme or a child theme of bp-default theme?

    oblax
    Participant

    I happened to encounter the error “Fatal error: Cannot access empty property in…..wp-contentpluginsbuddypressbp-corebp-core-template.php on line 787” Any news on the update?

    @davidkooo, the code i gave you above work like a charm, i dont use admin bar i code a custom one in my header.

    You can see it in action here : http://goo.gl/4OqMP

    Am still working on the site.

    userame : demo
    password :demo

    @mercime
    Participant

    @indieconnect curious why it’s borking in Chrome in your installation. What theme are you using? What plugins are activated?

    #139247
    Paul Wong-Gibbs
    Keymaster

    BBP_Theme_Compat is provided by bbPress.

    davidkooo
    Participant

    @Roger Coathup: how to edit this to work without admin bar? I know I need to replace $wp_admin_bar, but with what? I want to append it to my header, which is `

    `
    `/**
    * Build the “Notifications” dropdown
    *
    * @package Buddypress
    * @since BuddyPress (1.5)
    */
    function bp_members_admin_bar_notifications_menu2() {
    global $wp_admin_bar;

    if ( !is_user_logged_in() )
    return false;

    $notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id(), ‘object’ );
    $count = !empty( $notifications ) ? count( $notifications ) : 0;
    $alert_class = (int) $count > 0 ? ‘pending-count alert’ : ‘count no-alert’;
    $menu_title = ‘‘ . $count . ‘‘;

    // Add the top-level Notifications button
    $wp_admin_bar->add_menu( array(
    ‘parent’ => ‘top-secondary’,
    ‘id’ => ‘bp-notifications’,
    ‘title’ => $menu_title,
    ‘href’ => bp_loggedin_user_domain(),
    ) );

    if ( !empty( $notifications ) ) {
    foreach ( (array) $notifications as $notification ) {
    $wp_admin_bar->add_menu( array(
    ‘parent’ => ‘bp-notifications’,
    ‘id’ => ‘notification-‘ . $notification->id,
    ‘title’ => $notification->content,
    ‘href’ => $notification->href
    ) );
    }
    } else {
    $wp_admin_bar->add_menu( array(
    ‘parent’ => ‘bp-notifications’,
    ‘id’ => ‘no-notifications’,
    ‘title’ => __( ‘No new notifications’, ‘buddypress’ ),
    ‘href’ => bp_loggedin_user_domain()
    ) );
    }

    return;
    }
    add_action( ‘admin_bar_menu’, ‘bp_members_admin_bar_notifications_menu2’, 90 );`

    #139238
    Paul Wong-Gibbs
    Keymaster
    #139235
    9087877
    Inactive

    @presence-films Try using my approach to registration, see it here: http://www.snaplist.net23.net/register/ I have 0 spammers and the sites been live for a year. @modemlooper Sounds like a great idea. Could you make the conditional so that the admin can decide which condition is applied and if the user does not meet the criteria the plugin prevents them from posting?

    c0rp53
    Member

    haven’t actually tried it myself but it would be something like:

    `

    Country:

    `

    and I’d put that just after the latest updates endif in the members-loop.php

    I’m not a great coder, just learning with buddypress. Let me know if it works

    PS: by doing it that way, you can add some style in style.css

    #139228

    Bumping this, since it still sounds like a neat opportunity and I’m curious what progress was made.

    #139226

    In reply to: Themes?

    9087877
    Inactive

    Honestly if you want BuddyPress to function correctly, In my opinion you should create a child theme based on the BuddyPress default theme and make any changes within its css. If you don’t know how to make a child theme then I can send you a really simple one that allows you to change the CSS of the buddypress default theme. As of this post the newest theme is Fanwood and I am not certain it will function correctly with WordPress 3.4.1 and BuddyPress 1.6

    #139225
    modemlooper
    Moderator

    if you are on a custom theme it might not work. I have it installed on bp-default and it works fine.

    #139221
    smallmoves
    Member

    uh oh! Now I don’t see the profile link on any navigation menu

    #139220

    BUMP
    IF THIS HELPS!
    I’m currently running
    WordPress 3.4.1
    buddypress 1.6
    installed as a directory on root
    using default theme
    no modifications of corefiles
    no custom feature of bpcustom
    hosted with argeweb.
    running on linux

Viewing 25 results - 28,526 through 28,550 (of 69,108 total)
Skip to toolbar