Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 28,251 through 28,275 (of 31,072 total)
  • Author
    Search Results
  • #49424
    kriskl
    Participant

    Hello!

    I have tried with the update, and I still get the same error

    You do not have any BuddyPress themes installed.

    Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes/” and refresh this page. You can download more themes here.

    Am I the only one?

    r-a-y
    Keymaster

    Read this again.

    If you look at /bp-core/bp-core-adminbar.php, all the functions are defined.

    eg. if you want to call the “My Account” menu, use bp_adminbar_account_menu()

    For the register page, study how this page is built: wp-content/plugins/buddypress/bpthemes/bphome/register.php.

    #49416

    In reply to: BuddyBar for bbPress

    Mohit Kumar
    Participant

    here is my wp-config with db details and auth key removed

    <?php

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    include_once( ‘/public_html/wp-blog-header.php’ );

    header( “HTTP/1.1 200 OK” );

    header( “Status: 200 All rosy” );

    }

    define( ‘BBDB_NAME’, ‘database here’ );

    define( ‘BBDB_USER’, ‘user here’ );

    define( ‘BBDB_PASSWORD’, ‘pass here’ );

    define( ‘BBDB_HOST’, ‘localhost’ );

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    define( ‘BBDB_COLLATE’, ” );

    define(‘BB_AUTH_KEY’, ‘


    ‘);

    define(‘BB_SECURE_AUTH_KEY’, ‘


    ‘);

    define(‘BB_LOGGED_IN_KEY’, ‘


    ‘);

    define(‘BB_NONCE_KEY’, ‘


    ‘);

    define(‘BB_AUTH_SALT’, ‘


    ‘);

    define(‘BB_LOGGED_IN_SALT’, ‘


    ‘);

    define(‘BB_SECURE_AUTH_SALT’, ‘


    ‘);

    auth keys here ^ same as that in wp-config

    $bb_table_prefix = ‘bn_’;

    define( ‘BB_LANG’, ” );

    $bb->bb_xmlrpc_allow_user_switching = true;

    ?>

    #49399
    grosbouff
    Participant

    I finally found out.

    Maybe this should be added to the doc ?

    I forget to add those functions :

    function component_force_buddypress_theme( $template ) {
    global $bp;

    if ( $bp->current_component == $bp->component->slug && empty( $bp->current_action ) ) {
    $member_theme = get_site_option( 'active-member-theme' );

    if ( empty( $member_theme ) )
    $member_theme = 'bpmember';

    add_filter( 'theme_root', 'bp_core_filter_buddypress_theme_root' );
    add_filter( 'theme_root_uri', 'bp_core_filter_buddypress_theme_root_uri' );

    return $member_theme;
    } else {
    return $template;
    }
    }
    add_filter( 'template', 'component_force_buddypress_theme', 1, 1 );

    function component_force_buddypress_stylesheet( $stylesheet ) {
    global $bp;

    if ( $bp->current_component == $bp->component->slug && empty( $bp->current_action ) ) {
    $member_theme = get_site_option( 'active-member-theme' );

    if ( empty( $member_theme ) )
    $member_theme = 'bpmember';

    add_filter( 'theme_root', 'bp_core_filter_buddypress_theme_root' );
    add_filter( 'theme_root_uri', 'bp_core_filter_buddypress_theme_root_uri' );

    return $member_theme;
    } else {
    return $stylesheet;
    }
    }
    add_filter( 'stylesheet', 'component_force_buddypress_stylesheet', 1, 1 );

    #49384

    In reply to: BuddyBar for bbPress

    matthijsv
    Participant

    Some more debuggin for the admin bar in combination with Transposh(and maybe some other WP-plugins that manipulate output in a special way)

    if(!strpos($_SERVER['SCRIPT_NAME'],'forums/rss.php') and !strpos($_SERVER['SCRIPT_NAME'],'admin')) {
    if ( !defined( 'ABSPATH' ) & !defined( 'XMLRPC_REQUEST' )) {
    define( 'WP_USE_THEMES', false );
    //
    // You will need to get the ABSOLUTE path to this file |
    // \|/
    include_once( 'public_html/wp-blog-header.php' );
    header( "HTTP/1.1 200 OK" );
    header( "Status: 200 All rosy" );
    }
    }

    #49382

    Because BuddyPress runs as a site-wide plugin, as it sits today you’re stuck with one site-wide member theme. This could be manually side-stepped pretty easily though, by creating a function in your functions.php file to hook into the function used to gather the active member theme, you could theoretically sneak your own directory path in there on a per theme basis.

    Haven’t tried this idea myself, and it might not be that simple in reality.

    #49380

    Or.

    COPY (not move) your bp theme into the normal themes folder. Now it’ll show up in the dropdown. Once there, select it, save, and voila.

    Afterwards you can delete the copy.

    (or you can do it with symlinks if you know how)

    #49379
    Paul Wong-Gibbs
    Keymaster

    Well, yes, that’s the best way for the majority of BuddyPress users, I suspect.

    However, you can work around by duplicating the BP Member Theme folder (/bptheme) into /wpcontent/themes. You don’t need to do anything else, but this should populate the list for you allowing you to save the member theme.

    Or, if you know what you’re doing, apply the patch to fix this problem to your current release manually – https://trac.buddypress.org/changeset/1601/. If you do not understand PHP I would not recommend you do this, just in case you accidently introduce any errors.

    #49378
    Laura J
    Participant

    I’m having the same problem.

    I’ve got MU 2.8 and BP 1.0.2. I put the themes in the correct folder. I can activate the BP home theme inside the MU Admin, but when I go to choose a theme for BuddyPress, the only themes that show are activated WP themes.

    I’ve deleted BP, dropped all bp tables from the database and reinstalled. Then deleted and reinstalled two additional times and tried basically everything suggested here to no avail.

    It seems that the current “solution” is to wait for the BP 1.0.3 — is that the current suggestion?

    #49376

    In reply to: Change Member Theme

    tsalagi_red
    Participant

    I think the problem is the same as I was having. It is a known incompatibility bug between WPMU 2.8.1 and BP 1.0.2. Instead of member themes, the settings box is displaying the list of home themes.

    The only workaround I found was to go directly into the database and change the member theme.

    #49373
    Rohan Kapoor
    Participant

    He probably forgot to change the theme away from buddypress after deleting it. Leaving the tables does cause a problem, because then when you reinstall all the settings are still saved.

    #49368
    3138633
    Inactive

    Thank you DJ Paul for your reply, I didn’t open an other thread because the discussion was the same.

    Ok waiting for 1.0.3 :-)

    y2khjh
    Participant

    Ok.. thanks for replying~

    #49365
    Paul Wong-Gibbs
    Keymaster

    mklcst, this thread has been marked as resolved. This means most people will not read any new replies to it.

    Your problem is a known issue and is because you are using BuddyPress 1.0.2 on WPMU 2.8.1. I am under the impression that an interim release of BuddyPress (1.0.3) will be released soon which will improve compatibility with WPMU 2.8.1.

    Paul Wong-Gibbs
    Keymaster

    The template files for custom pages as per WordPress only work on the blog(s) on your WPMU site. If you want a custom page or area under the members page – i.e. http://myblog_url/members/y2khjh/something_here – then yes, you do need to create a custom component as the members page is part of BuddyPress.

    y2khjh
    Participant

    So there is not simple way to just add a template into the theme?

    #49361
    3138633
    Inactive

    Hi guys, i have the same probleme

    You do not have any BuddyPress themes installed.
    Please move "/wp-content/plugins/buddypress/bp-themes/" to "/wp-content/bp-themes/" and refresh this page. You can download more themes here.

    What could be?

    AccUser
    Participant

    You could probably get away with a single install of bbPress, but you would need a plugin or some theme work.

    After installing and integrating bbPress with WordPress MU, I installed BuddyPress and got the group forums working. I created a group and saw that the forum created for that group was a child of the forum that had been created during the install of bbPress. I changed that forum to be a category, so that no topics could be posted in it.

    It is entirely possible that you could filter out content that belongs to that category for the main forums. So when using BuddyPress groups, you can see group forums, but when viewing the bbPress forums, the BuddyPress forums are filtered out.

    I am also using the hidden and read-only plugins with the BuddyPress Groups for bbPress plugin, and that is working well. However, you could suppress the content rather than marking it up.

    Burt Adsit
    Participant

    You should take a look at how the skeleton component does this kind of thing.

    https://codex.buddypress.org/how-to-guides/creating-a-custom-buddypress-component/

    #49342

    In reply to: Change Member Theme

    r-a-y
    Keymaster

    Did you move the bpmember and bpskeletonmember directories from “wp-content/plugins/buddypress/bp-themes” to “wp-content/bp-themes“?

    Also if you are using WPMU 2.8.1, there are bugs that are currently being ironed out by the BP dev team. So if you are using WPMU 2.8.1, you’ll have to find one of the workarounds on the forums.

    #49338

    In reply to: New Groupblog Plugin

    peterverkooijen
    Participant

    Have you copied the “groupblog” templates folder to your bp active member theme?

    #49337

    In reply to: Change Member Theme

    tsalagi_red
    Participant

    I too am confused about this. “BuddyPress > General Settings > Select theme to use for BuddyPress generated pages” just gives me a list of my regular installed themes (minus bphome), but there are no “member” themes in the list. Is this a bug?

    #49336

    In reply to: New Groupblog Plugin

    allenweiss
    Participant

    Hi

    I just tried installing it (which went fine), but now get this error on my group page:

    Warning: require_once(/home/alumnide/public_html/wp-content/bp-themes/bpmember/groupblog/blog-activity.php) [function.require-once]: failed to open stream: No such file or directory in /home/alumnide/public_html/wp-includes/theme.php on line 822

    Fatal error: require_once() [function.require]: Failed opening required ‘/home/alumnide/public_html/wp-content/bp-themes/bpmember/groupblog/blog-activity.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/alumnide/public_html/wp-includes/theme.php on line 822

    Any ideas?

    #49291
    Jeff Sayre
    Participant

    That makes sense. I believe BP 1.0.3 will be out soon.

    #49289
    kipperman
    Participant

    Thanks,

    sorry about the posting on old post.

    Since I already have WPMU 2.8.1 installed I may as well stick it out and wait for the BP upgrade, I’m quite new to WP and don’t want the hassle to winding back versions.

    cheers

Viewing 25 results - 28,251 through 28,275 (of 31,072 total)
Skip to toolbar