Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 57,376 through 57,400 (of 69,016 total)
  • Author
    Search Results
  • #65748
    r-a-y
    Keymaster

    The secondary blog instructions should apply, just change the subdirectory references to subdomain ones if you installed WPMU as a subdomain install.

    I guess the instructions could be clearer, I’ll make some modifications to it when I have some time.

    But @sabuntu, did you know you – yes you! – can edit any page on codex.buddypress.org? Just make sure you are logged in.

    #65747
    r-a-y
    Keymaster

    This is what you’re looking for:

    Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog:

    define ( 'BP_ENABLE_MULTIBLOG', true );

    I haven’t tried this out though, but should work!

    #65746
    bpisimone
    Participant

    This thing works well on my test install, very well done @Dwenaus! Right now I’m also using another plugin called comment rating. Any chance you might extend yours to comments also?

    #65745
    rich! @ etiviti
    Participant

    @dwenaus

    Ok, just updated to 1.0.3 and hit another snag. Seems you have the bb_meta table hardcoded as I’m using an external forum install

    nevermind – looks like i have weird issue with an external bbpress install and various prefix values being defined (might be a buddypress bug)

    code012
    Member

    BuddyPress works like a central community, so it’s either you have one BuddyPress website or not.

    What you can do is to install it on a single subdomain.

    like community.abc.com

    then you would have to edit your wp-config.php file, add the following line

    define ( ‘BP_ROOT_BLOG’, 3 );

    the number 3 is your blog id.

    I’ve found the solution from

    http://premium.wpmudev.org/forums/topic/how-to-install-buddypress-as-a-sub-domain

    Thanks to Sabuntu!

    I’m requesting the subdomain installation as a feature though.

    #65743
    code012
    Member

    Hi Sabuntu.

    Thank you so much for your contribution on wpmudev.

    http://premium.wpmudev.org/forums/topic/how-to-install-buddypress-as-a-sub-domain

    You saved me so much time on this.

    I’m adding this post so that maybe it can help out people here as well.

    #65742

    In reply to: BuddyPress Like

    Michael Berra
    Participant

    Yep, me too! :-) Localization or better, all the messages are costumizable from backend. Cool stuff, though! (I think I will add through css a little graphic instead of the text…

    #65741

    In reply to: BuddyPress Maps

    schwooba
    Participant

    The upgrade worked for me…Thanks! I’ll post further questions/issues on your site.

    #65740
    andrew_s1
    Participant

    What do you think about displaying the karma on the profile page too?

    Something like this:

    function rfp_show_poster_karma() {
    global $bp;
    $poster_id = $bp->displayed_user->id;
    $karma = get_usermeta( $poster_id, 'rfp_post_karma' );
    echo rfp_poster_karma($karma);
    return;
    }
    add_filter( 'bp_before_member_header_meta', 'rfp_show_poster_karma' );

    #65736
    snark
    Participant

    Here is the complete code this is working successfully for me to block anybody with a user role below “Editor” from having the option to create new Groups:

    <h3>
    <?php _e( 'Groups Directory', 'buddypress' ) ?>
    <?php if ( current_user_can( 'delete_others_posts' ) ) : //only admins and editors can see this ?> &nbsp;
    <a class="button" href="<?php echo bp_get_root_domain() . '/' . BP_GROUPS_SLUG . '/create/' ?>">
    <?php _e( 'Create a Group', 'buddypress' ) ?></a><?php endif; ?>
    </h3>

    #65734
    snark
    Participant

    Man I’m dense — too many sleepless nights doing this are taking their toll on me. I already asked for help on this in another thread, received help, and even successfully implemented it. I thought it seemed like deja vu all over again. Doh! See this thread, especially the last few posts:

    https://buddypress.org/forums/topic/forum-user-roles-and-moderator-ability-bp-12-rc2-wp-291#post-36543

    The solution by intimez near the end of the thread is basically the one above, but with the button code included.

    Ahh, now it’s all coming back to me…

    #65732

    In reply to: Change the BP logo

    r-a-y
    Keymaster

    Read up on this:

    https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/

    There’s also a plugin that makes it easier to modify the admin bar:

    https://wordpress.org/extend/plugins/buddypress-admin-bar-mods/

    I haven’t tried it, but give it a shot and let us know what you think of it!

    #65731

    In reply to: 1.2 plug-ins list

    r-a-y
    Keymaster

    Forgot to list oEmbed for BuddyPress ;)

    https://wordpress.org/extend/plugins/oembed-for-buddypress/

    v0.6 coming on the weekend or a day or two after that.

    #65728

    In reply to: Avatar Upload Issues

    lyricalbiz
    Participant

    My avatars are showing up, but the alignment is all vertical on the sidebar with no spacing . What I would love is an avatar block to show up. I’m also having the spacing issues (or lack of spacing) in my Members page.

    I’m using the BuddyPress Template plugin on BuddyPress 1.2.1 for WordPress single user 2.9.2. This site is a test site for a client project and it’s pretty much the last hurdle. The website is http://workingonthisnow.com/MHA

    I appreciate all the help! This forum is amazing.

    #65727

    In reply to: Missing slugs?

    Thomas Opp
    Participant

    I also miss these slugs. I hope they will be part of the next buddypress version. The modification of the members slug worked fine for me.

    #65724
    podictionary
    Participant

    I have now tried this in 3 different ways, all with the same result:

    (a) a clean WPMU 2.9.1.1 and clean PB 1.2.1 install with backward compatibility plugin. No other plugins or data were entered. I see “hello world” in the new 1.2 default theme, I see “The page you were looking for was not found.” in the 1.2 classic theme.

    (b) ditto results in an install that had gone in as clean 1.2 then updated to 1.2.1 and also had experimented with a range of plugins and data.

    (c) ditto results in a longstanding BP install that had progressively upgraded from 1.1 and had various plugins

    Could a BuddyPress-developer-type-person please tell me if your similar clean install is successfully showing the blog in classic theme?

    #65723
    kim-culhan
    Member

    BP depends on .htaccess being enabled.

    In apache in httpd.conf AllowOverride controls

    what directives will be allowed in .htaccess files.

    I’m using:

    AllowOverride FileInfo Options

    The default value was:

    AllowOverride None

    Which caused problems when installing BuddyPress

    -kim

    #65722

    In reply to: BuddyPress Like

    disbas
    Participant

    @hempsworth Great work so far!

    Any thoughts on translations or custom messages? So members can ‘love’ or ‘dig’ something instead of ‘like’ it. May be best done through the back-end.

    As soon as custom messages are possible, I’ll definitly start using this.

    #65720
    Michael Berra
    Participant

    @blackphantom – I think your plugin is just awesome and gets better and better! WOW! The settings are already great!

    Some little suggestions:

    – @mentions from BP to twitter are still @ in twitter. Why not make a similar setting: “Export tweets containing @names

    – Set a personal filter in the frontend like “only import/export tweets with … in it” and “never import/export tweets with … in it (say I twitter alot about buddypress in twitter, but my BP Users are not interested in that at all…)

    Would be even more great (if that is possible :-)

    And did i get that right – is it already translatable? How has the file to be names? (I will make a german translation)

    PS: I like, that we can name the twitter-app as we like too!!!

    #65718
    ajohnson
    Member

    This will make it where only wp-admins can do it. make sure you’re doing this in your child theme, not the core bp-default files:

    In the groups folder > index.php…right after the form tag replace the next few lines with:

    <br />
    <h3>
    <?php _e( 'Groups Directory', 'buddypress' ) ?>
    <?php if ( current_user_can('manage_options') ) : ?>
    button goes here
    <?php endif; ?>
    </h3>

    the dumb editor keeps jacking up the code. the button for creating the group shouldn’t change and should go where indicated above

    #65713

    FYI: This bug was fixed in BuddyPress version 1.2.1. Upgrading solved the problem for me.

    #65706

    In reply to: 1.2 plug-ins list

    Lsm_267
    Participant

    hi there,

    on my

    – WP single user 2.9.2

    – old wordpress self-customized magazine theme

    – BP 1.2.1

    – and more than 20 other wp plugins

    the following BP plugins are running fine :

    – BuddyPress Template Pack 1.0.2;

    – BP Group Documents 0.2.5

    – BP-TinyMCE 0.2.1

    – External Group Blogs 1.2.1

    (Just a small php error by delating a group, for the moment)

    Guys, that’s a good job !

    #65705
    rich! @ etiviti
    Participant

    check out:

    https://buddypress.org/forums/topic/removing-blog-posts-form-the-swa-widget#post-36775

    but instead of component == ‘blogs’ change it to type == ‘new_member’

    then change your theme activity/index.php to remove the select option ‘show new members’

    I would also like to see this filter turned off if logged in as admin, so we could administer the the spammers better –

    using the above example – add before the loop

    if ( is_site_admin() )
    return $activities;

    #65704
    Dwenaus
    Participant

    good to know the plugin is working well.

    @andrew_s1 thanks for the headsup

    #65703

    In reply to: BuddyPress Like

    Alex
    Participant

    Although I’d love to support previous versions of BuddyPress, I simply don’t have the time to test against them. I’ll make sure it works great with 1.2 and above though.

    @dwpers If you’re using the old default theme, maybe consider upgrading to 1.2 and using the Backwards Compatibility Plugin? There’s plenty of people on the forums who can help if you find the upgrade tricky…

Viewing 25 results - 57,376 through 57,400 (of 69,016 total)
Skip to toolbar