Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 64,501 through 64,525 (of 69,040 total)
  • Author
    Search Results
  • thebloghouse
    Participant

    Thanks Burt

    I understand what you are saying :)

    It is soooo infuriating though as I am not a jQuery coder so can’t pinpoint the exact issue but I will battle on.

    Looking forward to getting fully involved with the BuddyPress community once I have this current project sorted too!

    #47276
    Paul Wong-Gibbs
    Keymaster

    What about using the default unexited theme, and no plugins other than BuddyPress (move the folders out just to be certain). Is this something you are able to test on the server where you are having problems?

    #47274
    wildchild
    Participant

    @John: Did you have any details yet about qTranslate & Buddypress? Since this dreadfull bug is still haunting my installation as we speak ;)

    Thanks in advance, Freaking Wildchild.

    #47265
    Jeff Sayre
    Participant

    Ronia-

    You are very welcome! Thank you for the kind words and the thoughtful post. As I often say, we aim to please and sometimes we actually succeed. :)

    Our community is only as good as its members. Based on that, I’d say that the BuddyPress community is a vibrant, healthy, and quickly-growing community.

    they all appear to be very nice (that’s ok) and very handsome guys (how’s that possible? everyone looks like a hero from Hollywood)

    That just makes me smile and laugh! We’re actually not developers, but we play them on TV.

    Thanks again for taking the time to share your thoughts.

    #47262
    Erwin Gerrits
    Participant

    Thanks Burt,

    That fixed the bp not loading issue, however… now my plugin never runs because bp is never loaded before my plugin. The function somehow never succeeds in loading bp…

    If I simply add:

    require_once( WP_PLUGIN_DIR . ‘/buddypress/bp-loader.php’ );

    to my requires at the top of my plug-in everything works peachy.

    Does this add too much overhead, though?

    #47261
    Anointed
    Participant

    Digging even further:

    When I go into the avatars folder on my server I can see the avatar after I upload it via ftp.

    Even though no avatar shows up to crop if I click the crop button twice, it creates 2 images in my avatars folder. Those files are mostly black but I could see a corner of the picture it was going to crop.

    Very strange.

    the only thing that changed was moving bp to a subdomain as far as i can tell.

    all plugins other than buddypress are deactivated, so no conflict there.

    Here is a very strange issue:

    when the image is uploaded, prior to cropping I can see the missing picture. It is pointing to

    http://community.anointed.net/wp-content/blogs.dir/1/files/avatars/1/fallensoldier-450×327.jpg

    If I remove the community. so it’s

    http://anointed.net/wp-content/blogs.dir/1/files/avatars/1/fallensoldier-450×327.jpg

    then the image shows up, of course not in the cropping page.

    so it seems that the cropping tool does not like the community. subdomain

    makes me guess there is some setting somewhere to change and tell bp that it’s in community.

    any ideas?

    Burt Adsit
    Participant

    js apps just don’t play nice with each other.

    I ran into this issue before and had to hack the plugin that was relying on an older version of jquery. It worked but it was only going to work on my site. I couldn’t expect anyone else to do the same thing. I just abandoned the use of the plugin that relied on a prev version of jquery.

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

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