Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 64,576 through 64,600 (of 69,108 total)
  • Author
    Search Results
  • #47259
    Burt Adsit
    Participant

    Sounds like your plugin is loading before bp is loaded. If the core fns aren’t there then bp is probably loading after yours. When you do the upgrade it now has a different sequence in the list of sitewide plugins.

    I think jeffsayre put some checking code into the bp skel component. I don’t know if it’s been released yet. In case it hasn’t this is what it looks like:

    /**
    * oci_load_buddypress()
    *
    * Checks to see of bp is active. Attempts to load it if it isn't.
    *
    * @return true if bp is installed and activated
    */
    function oci_load_buddypress() {
    if ( function_exists( 'bp_core_setup_globals' ) )
    return true;

    /* Get the list of active sitewide plugins */
    $active_sitewide_plugins = maybe_unserialize( get_site_option( 'active_sitewide_plugins' ) );

    if ( !isset( $active_sidewide_plugins['buddypress/bp-loader.php'] ) )
    return false;

    if ( isset( $active_sidewide_plugins['buddypress/bp-loader.php'] ) &&
    !function_exists( 'bp_core_setup_globals' ) ) {
    require_once( WP_PLUGIN_DIR . '/buddypress/bp-loader.php' );
    return true;
    }

    return false;
    }

    If this fn returns true then either bp is loaded, bp wasn’t loaded and it loaded it or false bp couldn’t be loaded.

    True is your plugin can continue, false is do some kind of graceful exit.

    #47258
    Anointed
    Participant

    well i copied the bp home theme to the themes directory and then chose that as my theme.

    That seemed to fix all of the problems except one.

    Now when I try to upload an avatar for my member acct, it says it uploads but there is no avatar to crop, just the crop tool.

    (this was working perfectly prior to my moving buddypress to the subdomain)

    is this a known problem?

    thebloghouse
    Participant

    Thanks for the replies guys.

    I have managed to isolate this down to the wp_head(); call in my header and THINK the jQuery version that WordPress loads, wp-includes/js/jquery/jquery.js?ver=1.2.6 is not compatible with the scripts I am using which used to load jquery-1.2.3.pack.js

    The script I am currently fighting with is the following jCarousel one here</> if anyone is interested although a slider one also doesn’t work but one thing at a time :)

    #47251

    Hmm…

    I’ll have to revisit the user delete code, but I’m fairly certain that BuddyPress hooks into that WPMU function and clears out all the additional member info.

    Are you using BP1.0.1?

    #47250
    lifemore
    Participant

    Thanks so much John for responding.

    From the dashboard in the admin area of WordPress MU. I go to “users”, then when I get the list of the users, I delete one. Back into Buddypress, I still get the member among the member list.

    Still confused :(

    #47249

    If you want your bpmember and bphome theme header.php and footer.php files to always be in sync, this is what I do. It’s a little tricky, but it works really well at keeping multiple theme files totally in sync.

    Copy the code below into a file called hf-sync.php and put it in your wp-content/plugins directory. Then in your WordPress Site Admin, goto your plugins area and activate the plugin called “BuddyPress Synchronized Header/Footer”

    <?php
    /*
    Plugin Name: BuddyPress Synchronized Header/Footer
    Plugin URI: http://buddypress.org
    Description: Header/Footer Synchonization Functions
    Version: 1.0
    Author: John James Jacoby
    Author URI: http://johnjamesjacoby.com
    Tags: BuddyPress, Header, Footer
    Site Wide Only: true
    */

    // Call this in your header.php file.
    // Rename the function to match your theme name.
    function theme_name_header() {
    ?>
    <!-- PUT YOUR HEADER HTML CODE IN HERE -->
    <?php
    }
    ?>

    // Call this in your footer.php file.
    // Rename the function to match your theme name.
    function theme_name_footer() {
    ?>
    <!-- PUT YOUR FOOTER HTML CODE IN HERE -->
    <?php
    }
    ?>

    Then, in whatever header.php and footer.php files that you want to use your universal header/footer code, all you’ll need to do is call the functions above.

    This lets you make edits to both of your header/footer files for both/any/all themes that use this code, in one central location.

    My guess, is that this would/should work very well in keeping bbPress themes in sync also, provided that you insert HTML code to include what bbPress needs also, and make sure not to include that code if bbPress isn’t loaded.

    #47248

    When you delete a user completely from WordPress/BuddyPress, *they should* be totally deleted. WPMU has a process for this, and BuddyPress simply just hooks into it and calls the same action.

    If you deleted that user only from the blog area (and not the site admin area) that could cause the situation you’re describing?

    Where did you delete the user from?

    I know that WordPress 2.8 uses the updated jQuery version, which will tend to break some older jQuery based scripts (it did on my portfolio site) but I’m not so sure about BP or WPMU.

    Burt Adsit
    Participant

    Got a link to your site we can see? What plugins exactly?

    #47243
    Burt Adsit
    Participant

    Howdy, yes there is. It’s just not documented in the codex. Works the same though.

    See: /buddypress/bp-forums/bp-forums-templatetags.php

    #47242
    chouxpastry2002
    Participant

    hello,

    I am not finding any solution for it guys please suggest some hack atleast so that i can give it a try.

    Please man otherwise i have to think of some other system.

    I really loved the way buddypress works and looks.

    Please guys do something.

    Sam.

    #47239
    3113669
    Inactive

    Pity: (

    I hope that in the future will be able to moderate the level of BP:)

    Thanks for your reply:)

    Yours,

    Marcin

    #47235

    In reply to: Alignment in profile

    Jeff Sayre
    Participant

    Carpconnect-

    You have another thread here that is dealing with related issues. You never did respond to my last set of questions in that thread.

    Finally, to answer your question above:

    the plugins i am running are

    BuddyPress

    BPContents

    Support

    Signup TOS

    Additional Privacy

    All in one SEO

    Simple Site maps

    Upgrades

    Invite

    I would not have thought these would have affected user profile layout?

    Yes, plugin conflicts can affect the way data is output to your browser. To debug this issue, you need to distill your environment down to the lowest common denominator. That means disabling all plugins except BuddyPress AND you need to be using the default themes that come with BP.

    Do that, and report back here.

    #47232
    Jeff Sayre
    Participant

    I’ve moved this thread to the Miscellaneous forum. Also, I’m closing this thread as it is not a support issue but a request for services. If you wish to offer your services to the OP, contact info. can be found above.

    For future reference, requests for services or offers to provide services should be made on the BuddyPress Jobs Board.

    #47225
    Eddiegj
    Participant

    spoke to soon, doesn’t work. can anyone find the eror here?

    path: wp-content/plugins/buddypress/bp-languages

    files:

    buddypress-nl_NL.mo

    buddypress-nl_NL.po

    buddypress.pot

    or does the old language not work for this version?

    #47219
    carpconnect
    Participant

    Ok i have update to new buddypress which i see changes the method used to set size.

    Ok i have worked out why they are different, the ‘Me’ and ‘My Tags’ menu text are just text whereas the additional menu text that appears when selecting edit profile are links.

    The menu text and links font are not the same, some people may be happy with this but personally i would prefer all text whether it heading or heading/link to be the same if it is in the same location, ie menu bar.

    It looks like this something i will have try and change by creating a new style, though would have preferred this to be part of BP.

    cheers

    #47218

    In reply to: Alignment in profile

    carpconnect
    Participant

    Ok i have done the update and still have the issue in user profile ‘activity’ with profile image alignment?

    In edit profile the fonts are better but not perfect but still have the poor alignment with overlaps?

    Also extra profile fields align to left once then pass the left menu which is not pleasant to look at.

    Am i the only one getting these issues?

    Apart from the changing the Buddypress nav bar image and setting new size my css files are standard with default buddypress themes.

    This is on firefox on linux.

    cheers

    Strange thing… this happened to me as well. I deactivated all the plugins (including those in the mu-plugins folder), tried reactivating and it started with no problems. From that point I could reactivate all my plugins and it worked.

    However, I think I fixed it because I got a similar problem when trying to add media to a post from the media library.

    The issue lies in the require statements, in the case of the media library it was within the bp-themes. If you change the require statements to require_once in the bp-themes folder it starts working.

    Mods, I am working quite heavily with BuddyPress atm, if there’s any way I can contribute to the core code please let me know.

    #47216
    gpo1
    Participant

    Am abit confused what you mean?

    #47211

    In reply to: Alignment in profile

    carpconnect
    Participant

    The themes are the default BBpress ones, the plugins i am running are

    BuddyPress

    BPContents

    Support

    Signup TOS

    Additional Privacy

    All in one SEO

    Simple Site maps

    Upgrades

    Invite

    I would not have thought these would have affected user profile layout?

    Will upgrade to new version and see how that goes.

    #47208
    lynton
    Participant

    Sorry i didnt make it too clear the title of my home page currently reads ” firevine social media marketing network” in the title bar i have decided to change the nature of my site so that title no longer fits, is there any way to change this or would i need to re-install buddypress ?

    i have not yet found a way to change it from my admin menu

    #47204
    talk2manoj
    Participant

    Your menu bar seems fine to me without login.

    For displaying a shortcut to the logged in members profile in this bar

    Create your own function like bp_adminbar_authors_menu for logged in members profile and add an action to bp_adminbar_menus

    e.g.

    function bp_adminbar_logged_members(){
    ....
    ....
    }

    add_action( 'bp_adminbar_menus', 'bp_adminbar_logged_members', 100 );

    #47202
    Paul Wong-Gibbs
    Keymaster

    Only from BBPress at the moment.

    #47199
    stefk
    Participant

    Hi Brajesh

    Thank you for you reply. Yes, i am talking about the top navigation bar. Mine isnt showing the propper shortcuts-please could you or someone advise me.

    My domain is http://gvine.co.za

    #47198
    Andy Peatling
    Keymaster

    http://codex.buddypress.org – see that “Edit Page” button at the bottom? :)

    This is a community of users after all, you don’t need to be a coder to contribute.

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