Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 73,701 through 73,725 (of 73,983 total)
  • Author
    Search Results
  • #33907

    In reply to: Translating BuddyPress

    Slava Abakumov
    Moderator

    Agree with Dudboi – POT file is needed.

    I’m in a process of translating into Russian.

    #33903

    In reply to: The News section

    Alessandro Fazzi
    Participant

    I can confirm the same as gogoplata… with one diff: I have buddypress home theme not on my main blog. I’ve changed in the code the ID of the blog in some php files and voilà.

    Are all of you running the theme on blog with ID=1?

    #33898
    gpo1
    Participant

    What about igchosting.in, does it work well with BP?

    #33892
    Deadpan110
    Member

    OK, I have submitted a better patch to allow complete customisation of the admin bar using add_action() WordPress hooks.

    It also has log in and register and is available from https://trac.buddypress.org/ticket/174

    Please Note, this patch will possibly not work if used on top of the previous patch, so make sure you have the original core files installed first.

    #33885
    gogoplata
    Participant

    Are you using the latest files from the trunk?:

    https://trac.buddypress.org/browser/trunk

    Any modifications?

    #33884

    In reply to: I´m curious!

    ricwes
    Participant

    Nothing special, just curious if someone is sitting on a intresting idea :)

    Hate that I can´t be more of help because I don´t know how php! Wish I could help in some way…

    All you who are developing Buddypress are my new idols!

    #33881
    gogoplata
    Participant

    It’s basically as simple as copying the code and CSS from the buddypress-home file into your theme and tweaking it to match your site.

    gogoplata
    Participant

    The trunk version is available here:

    https://trac.buddypress.org/browser/trunk

    At the bottom of that page is a link to download all the files in .zip format. Give that a try on your site and you should have better luck with getting it to work.

    #33878

    In reply to: I´m curious!

    gogoplata
    Participant

    Is there something specific you’re looking for. Most WordPress plugins and WPMU plugins will work alongside BuddyPress. Right now the focus is on getting all the basic features stable for a formal release in the next month or so, but additional plugins will definitely be developed for this system.

    Andy Peatling
    Keymaster

    Please use the trunk version of BuddyPress.

    #33867

    In reply to: Translating BuddyPress

    dudboi
    Participant

    Great! Thanks for the help. In the end I just uploaded a nontranslated english MO file to the languages folder. Though it doesn’t really make sense for me to update both the WP MU and BuddyPress languages together.

    I mean I suppose it’s useful for people who actually want to do translations, but shouldn’t there be a separate function for buddypress altogether (that perhaps is linked to WP MU?)


    #33863
    trcwest
    Participant

    just simple couple of questions… i have a shared host really cheap one with lunar pages…

    I installed wpmu and realised that the subdomain function would work as i didn’t have access the Apache server and this means i cant ad the wildcard dns thingy.. so subdomains we out…

    so i reinstaled using the sub directory… this worked fine..

    i then tried to instal budypress with teh zip files.. as said in the readme…

    with the blogs one it just gave a a parse syntax php ( or one of those php eror lines on a white page just saying something was wring on a line around 300 i forget exactely..) error that would not let me do

    anything… so i deleted the blogs one and then it worked and i could ad a profile on the admin contol pannel but not on the splash page from register.. it first asked to creat a new blog then the profile so that didnt seem right..

    questions.. does budy press work on sub directories and why was the blogs plugin not working..

    i am trying to create a social site for spots or locations in kenya…

    cheers..

    #33862
    Deadpan110
    Member

    I have submitted a patch:

    https://trac.buddypress.org/ticket/174

    adds Log In and Sign Up (only if enabled registrations)

    *adds* …there is also some info there for creating your own custom admin bar.

    #33861
    gpo1
    Participant

    I want the login/sign-up taskbar like in the bp demo site, in my custome theme.

    How is it done?

    #33860

    In reply to: Translating BuddyPress

    Dreamcolor
    Participant

    Step 1: Upload a MU language file to active the language select menu in “Site Admin” – “Options” page. This will make you can select sitewide default language.

    Step 2: Upload a BP language file. And its language will been changed with MU at same time.

    For example: I uploaded a file named “zh_CN.mo” for MU in “wp-content/languages/”. And now, In “Site Admin” – “Options” it will display a languages select menu. And in “Setting” – “General” will too. Now,I can change sitewide language or my own site language.

    At this time, if I want to change BP’s language, I just need to upload a file “buddypress-zh_CN.mo” file in “wp-content/mu-plugins/bp-languages”.

    You can test on my site, And I already translated BP and MU to chinese.

    http://dcote.net/

    PS: This is just a test site. So DO NOT post any importent things.

    #33859
    kunefr
    Member

    Hi thezohan10,

    Thanks for your reply.

    You solution is interresting. Did you modify the plugin or did you create your own ?

    In any case, can you share your code ?

    Thanks!

    #33855
    thezohan10
    Member

    Sorry to sleepy, the post above was for this topic:

    https://buddypress.org/forums/topic.php?id=76

    Cheers,

    Z

    #33854
    thezohan10
    Member

    Hi to all, i will tell you my little experience with the subject.

    First of all: How does the global tags blog work? Simple, when someone makes a post, WPMU triggers an event. Basically there is a plugin that is hooked to that event, and when the post is made, it copies the post to a TAG blog (typically “invisible” and with a modified template, i will try not to extend here). But it dupplicates the post in the tag blog, and when you wanna show a cool plugin with al the site tags, you add the standard WP tag function instantiating that blog.

    THE PROBLEM WITH BUDDYPRESS:

    Inspite that in the PHP code of buddypress tries to evaluate, reading the options of WPMU if the POST comes from the TAG BLOG, it fails, cause there is an environment problem there. $BP and $WP* does not bring the correct actual blog id from the Blog where the post was made (Tag blog) so it thinks it´s a new entry, so boom, it keeps on publishing, POST – HOOK – POST – HOOK etc… until the buffer makes a little BOOM!. And it stops.

    What i did (i figured this problem the first time i installed buddypress) and maybe it´s not the best answer to your problem, is to use my own post indexer (i was using that plugin before for other reasons) so i took the HOOK of SAVED or PUBLISH i don´t remember and i am triggering the BP post record function directly from my plugin.

    But the important thing is that, the BP code is perfect at that point, it tries to evaluate if the blog is the TAGS BLOG, but there´s a problem with the environment $BP or $WP**** at that point, so the BLOG_ID is messed.

    Hope it helps Andy.

    Z.

    #33853
    thezohan10
    Member

    Hi to all, i will tell you my little experience with the subject.

    First of all: How does the global tags blog work? Simple, when someone makes a post, WPMU triggers an event. Basically there is a plugin that is hooked to that event, and when the post is made, it copies the post to a TAG blog (typically “invisible” and with a modified template, i will try not to extend here). But it dupplicates the post in the tag blog, and when you wanna show a cool plugin with al the site tags, you add the standard WP tag function instantiating that blog.

    THE PROBLEM WITH BUDDYPRESS:

    Inspite that in the PHP code of buddypress tries to evaluate, reading the options of WPMU if the POST comes from the TAG BLOG, it fails, cause there is an environment problem there. $BP and $WP* does not bring the correct actual blog id from the Blog where the post was made (Tag blog) so it thinks it´s a new entry, so boom, it keeps on publishing, POST – HOOK – POST – HOOK etc… until the buffer makes a little BOOM!. And it stops.

    What i did (i figured this problem the first time i installed buddypress) and maybe it´s not the best answer to your problem, is to use my own post indexer (i was using that plugin before for other reasons) so i took the HOOK of SAVED or PUBLISH i don´t remember and i am triggering the BP post record function directly from my plugin.

    But the important thing is that, the BP code is perfect at that point, it tries to evaluate if the blog is the TAGS BLOG, but there´s a problem with the environment $BP or $WP**** at that point, so the BLOG_ID is messed.

    Hope it helps Andy.

    Z.

    #33850

    In reply to: Translating BuddyPress

    dudboi
    Participant

    Oops, that’s what I meant. Mistyped sorry.

    Still nada: http://donicethings.org/beta/wp-content/mu-plugins/bp-languages/buddypress-en_US.mo

    At http://donicethings.org/beta, groups is supposed to translated to “projects”.

    #33849
    shawn77
    Member

    I figured it out:) I did not take the buddypress-member them out of the sub folder. Also just so everyone knows I have buddpress running from a sub directory and not the root with no problems so far after figuring this out. I am also using a modified theme from Woo themes with it.

    gogoplata
    Participant

    The basics of what I did was edit bp-xprofile.php and removed these lines:

    $sql[] = “INSERT INTO “. $bp . ” (

    id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete

    ) VALUES (

    1, 1, 0, ‘textbox’, ‘” . __( ‘Public Display Name’, ‘buddypress’) . “‘, ”, 1, 1, 0, ”, 1, 0

    );”;

    $sql[] = “INSERT INTO “. $bp . ” (

    id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete

    ) VALUES (

    2, 1, 0, ‘textbox’, ‘” . __( ‘Last Name’, ‘buddypress’) . “‘, ”, 1, 2, 0, ”, 1, 0

    );”;

    Then I went into my database and deleted those fields. Once those are gone BP defaults to using the username.

    #33846
    CriticalNed
    Participant

    I think this may have been fixed today??

    https://trac.buddypress.org/changeset/557

    Changeset 557

    View differences

    Show lines around each change

    Ignore:

    Blank lines

    Case changes

    White space changes

    Timestamp:

    11/19/08 16:03:44 (5 hours ago)

    Author:

    apeatling

    Message:

    Added missing switch_to_blog() call which was causing issues with using the recent blog posts widget.

    #33844
    gogoplata
    Participant

    Glad to hear you resolved everything. I too had no problem adding the BuddyPress features to another theme.

    #33843
    gogoplata
    Participant

    You may need to install WPMU and BuddyPress in the root, not in a directory.

Viewing 25 results - 73,701 through 73,725 (of 73,983 total)
Skip to toolbar