Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 61,951 through 61,975 (of 69,043 total)
  • Author
    Search Results
  • #53897

    In reply to: BuddyPress 1.1.1

    abcde666
    Participant

    great, thanks a lot also to the patch-submitters from the Community !

    Will there be an announcement about BP 1.1.1 at the Blog of this page ?

    Andy Peatling
    Keymaster
    #53891
    Paul Wong-Gibbs
    Keymaster

    travellection, this topic has been marked as resolved. People won’t read it. If you haven’t already, make a new post.

    #53890
    Paul Wong-Gibbs
    Keymaster
    #53889

    It probably needs to be in the functions.php of the parent theme, and the template file itself should also probably be in the parent theme as well. I haven’t tested it any other way as I haven’t needed that particular kind of setup.

    #53888

    In reply to: BuddyPress 1.1.1

    outolumo
    Participant

    Announces the immediate availability of…

    *first to thank you*

    #53886
    bpisimone
    Participant

    Putting it in plugins/bp-custom.php has not helped either. All I ever get is page not found.

    define('BP_ABOUT_SLUG', 'about');
    function bp_show_about_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_ABOUT_SLUG && $bp->current_action == '' ) {
    // The first variable here must match the name of your template file below
    bp_core_load_template( '/_inc/pages/about', true );
    }
    }
    add_action( 'wp', 'bp_show_about_page', 2 );

    the file is located in _inc/pages/about.php

    Can anyone see anything else?

    #53884
    4779461
    Inactive

    Follow the instructions on upgrading, pay close attention to the part about using a non-buddypress theme, because there were some changes made to the integration. I had the same problem and this page helped me out, I just need to tweek some stuff because it looks funny, but the essential function is all back. https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/

    #53879
    Paul Wong-Gibbs
    Keymaster

    Try putting that into a file /plugins/bp-custom.php.

    #53878

    In reply to: Blogs List

    Paul Wong-Gibbs
    Keymaster

    Also, before trying that, deactivate *All* of your plugins other than BuddyPress. It may be a conflict somewhere.

    #53876
    abcde666
    Participant

    wow – cool stuff to see somebody working on Multi-Language-plugin….this is what I would definitely need for my website.

    is there a chance to switch into another language on the fly ?

    Lets say being at the english-members-page, then clicking on “german”, would forward to the german-members-page (I would not need this feature though).

    Thanks a lot for working on this !

    #53875

    In reply to: Blogs List

    Kailas
    Participant

    @DJPaul: Thanks. Here is the info you want:

    1. Which version of WPMU are you running?

    2.8.4

    2. Did you install WPMU as a directory or subdomain install?

    As a directory (mywebsite.com/blogs)

    3. If a directory install, is it in root or in a subdirectory?

    Sub directory (mywebsite.com/blogs)

    4. Did you upgraded from a previous version of WPMU? If so, from which version?

    2.6 -> 2.7 -> 2.8.4

    5. Was WPMU functioning properly before installing/upgrading BuddyPress?

    Yes

    6. Which version of BuddyPress (BP) are you running?

    BP 1.1

    7. Did you upgraded from a previous version of BP? If so, from which version?

    I removed previous version 1.0.x and did fresh install of 1.1. Steps I followed:

    – (Forgot to disable BP plugin and Profile field setup)

    – Removed wp-content/bp-themes

    – Removed wp-content/plugins/buddypress

    – Uploaded BP 1.1 to wp-content/plugins

    – Copied BP themes to wp-content/themes

    – Activated BP plugin

    – Set bp-default theme for root blog

    8. Do you have any plugins other than BuddyPress installed and activated?

    Yes many of them including Akismet, SI-Captcha, Profile Field Setup, etc

    9. Are you using the standard BuddyPress themes or customized themes?

    Standard: bp-default

    10. Have you modified the core files in any way?

    No

    11. Do you have any custom functions in bp-custom.php?

    No

    12. If running bbPress, which version?

    No

    13. Please provide a list of any errors in your server’s log files.

    None

    Thanks

    #53873
    travellection
    Participant

    I would like to ask if I can use simple press instead of bbpress? if so how would I be able to configure it?

    Thanks?

    #53870
    chewbaker
    Participant

    Hey Guys, I still can’t get this to work? I am on bp ver 1.1

    Maybe things got changed in the update that would effect the way this works? I really need to have custom pages for this to work for my site. Again, to recap, here is what I have done:

    put the below code into : (wordpress mu and buddy press are installed into subfolder)

    mysite/subfolder/wp-content/themes/bp-sn-parent/functions.php and created a page in the same directory called dashboard.php

    CODE:

    // creates custom page
    
    define('BP_DASHBOARD_SLUG', 'dashboard');

    function bp_show_dashboard_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_DASHBOARD_SLUG && $bp->current_action == '' ){

    // The first variable here must match the name of your template file below
    bp_core_load_template( 'dashboard', true );
    } }
    add_action( 'wp', 'bp_show_dashboard_page', 2 );
    //
    end custom page

    URGENT: Need to figure this out!!!!

    #53867

    In reply to: Trouble Upgrading?

    Damon Cook
    Participant

    Man my head is swirling from browsing the Forums for the right thread. I was trying to be good about not re-posting a similar topic/issue, but I give up. Hopefully this is the right spot?

    I’ve upgraded my site. All was well, but the bp default theme admin bar keeps re-directing to the homepage. I try to see my profile and it sends me to the homepage. I’ve noticed that Buddypress.org is doing the same. I try to click on my name and it takes me to the Buddypress.org front page. Quite discouraging. suggestions?

    I’ve tried the following, which I thought might help:

    – cleared my browser cache

    – turned off all site plugins, activate only BP

    – it is not related to bp-themes location. I’ve read all of the threads on the proper placement and the bp-default theme is displaying fine

    Please advise.

    #53859
    stwc
    Participant

    Resolved by changing permalink structure. Very strange, must be a bug, but I’ll take any win at this stage!

    More here: https://buddypress.org/forums/topic/single-blog-post-display-issue-new-11-install?replies=8#post-25392

    #53854
    4772092
    Inactive

    The solution reported by Graeme is correct, but did not solve my problem.

    After changing the code in “login.php” I get this error:

    Catchable fatal error: Object of class WP_Error could not be converted to string in / public_html / BuddyPress / wp-includes / WPMU-functions.php on line 107

    #53848
    Paul Wong-Gibbs
    Keymaster

    As much as I can tell, being one of those English-speaking imperialists to which you refer, WordPress has a good range of i18n stuff if developers use the right functions. If you think WordPress and BuddyPress seriously lack in these areas, then please by all means start a specific discussion thread on each product’s forums or file trac tickets/bug reports/patches.

    Back on topic, I think socialpreneur’s on the money with this.

    #53847
    Paul Wong-Gibbs
    Keymaster

    Sounds like your MySQL database connection details aren’t proper. However, if the rest of your WPMU site works…

    Was your previous bbpress install in a seperate database? (i.e. not in the same one as wpmu/buddypress)

    #53846

    In reply to: Blogs List

    Paul Wong-Gibbs
    Keymaster

    Works for me, but we need more details to help you: https://buddypress.org/forums/topic/when-asking-for-support

    #53845
    Paul Wong-Gibbs
    Keymaster
    #53843
    Paul Wong-Gibbs
    Keymaster

    Had a quick look and it looks as though it should be there (“Forums Setup” under the BuddyPress menu).

    #53835

    In reply to: BuddyPress v 1.1

    alexduvot
    Participant

    Okay that seem to work

    i uploaded the new themes, activated then in the site admin in MU

    then i changeed to default BP 1.1 template in Appearance

    then i activated the buddpress plugin

    something is causing the error even with the default wpmu theme

    so if someone simply installs wpmu then goto plugins and try to install budpress that way, they in trouble.

    #53834

    In reply to: BuddyPress v 1.1

    alexduvot
    Participant

    I got

    Plugin could not be activated because it triggered a fatal error.

    after fresh install

    following steps in the installation

    doing install from plugin addnew buddpress1.1

    i’m going to try to upload the themes 1st then activate.

    #53833

    In reply to: BuddyPress v 1.1

    alexduvot
    Participant

    I am going to try a fresh install

    of wordpress mu , the buddypress

    starting over fresh

Viewing 25 results - 61,951 through 61,975 (of 69,043 total)
Skip to toolbar