Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,651 through 14,675 (of 69,016 total)
  • Author
    Search Results
  • #231009
    Security
    Participant

    Hi @sandyfischler i think this feature is already a part of buddypress just goto dashboard>>settings>>buddypress;>settings tab>>
    1)enable buddypress to wordpress profile syncing
    2)Allow activity stream commenting on blog and forum posts
    3)clear cache of your site and the next time someone will post a blog post it should become visible in activity stream
    Thanks

    #231001
    Kookidooki
    Participant

    Hello Shanebp,

    This is what I mean:

    In Buddypress dashboard > Users > Profile Fields > Add New Field Group… it’s not creating a new group.

    Is there incompatibilty between WP 4.1 and Buddypress cause it’s duplicating my profile fields. For example: it’s now showing my name field twice.. and the order of the groups are changing every time…Weird

    #230996
    Mathieu Viet
    Moderator

    Oopsy. I just realized you’ll need to wait till BuddyPress 2.2 to use this snippet.

    See my post here https://bpdevel.wordpress.com/2014/11/08/the-way-the-groups-manage-subnav-is-generated-has-been-improved/

    #230942

    got, thanks for the heads up. the link on overloads explained much. i’m still a newbie re: WordPress and BuddyPress and find that it’s not always easy to get crucial info out of the documentation unless you already know it exists (or are familiar enough with these systems to know what you might be looking for).

    Thanks again

    #230941
    shanebp
    Moderator

    would changes to the files in the bp-templates directory get overwritten if I update the BP plugin?

    Of course, which is why I suggested you create template overloads instead.

    #230938
    shanebp
    Moderator

    i want to remove some default BP tabs

    Re removing the Manage > Delete tab…

    You’re referring to the anon function in bp-groups-classes.php ?
    add_action( 'groups_admin_tabs', create_function( '$current, $group_slug', etc...

    I agree that it’s unclear.
    I think that if that function added a css id to the li tag, then we should be able to use the filter in bp_get_options_nav in bp-core-template.
    If this makes sense, and you haven’t found a workaround, please open a ticket on trac.

    #230935
    danbp
    Participant

    hi @trkr,

    the function you’re looking for is bp_group_admin_tabs in bp-groups-template.php

    More details about group admin tabs (new in 2.1) here

    Use the Group Extension API to build your menu.

    Group Extension API

    #230928
    danbp
    Participant

    hi @ugd,

    Codex is your friend !

    https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/

    The easiest solution is to use a custom language file…and to rename the group page to Team.

    #230927
    danbp
    Participant

    Why don’t you use xProfile built-in component to add your custom field group and field ?

    User Extended Profiles

    #230914
    danbp
    Participant

    bbPress is a plugin outside of BuddyPress. You better ask for this on their support forum.

    You could also read the bbPress Codex.

    #230906
    danbp
    Participant

    Hi all,

    BP Album is no more avaible and outdated.
    BuddyPress Album hasn’t been updated in over 2 years.

    A new project called MediaPress is out since october on BuddyDev.

    rtMedia is a third party plugin; any question regarding that plugin is to ask on their support forum.

    #230905
    ouegy
    Participant

    Thanks henry,

    I looked at that before but must have been half asleep!

    Simply added index-directory.php to themes/mytheme/buddypress/activity/

    #230904
    Henry Wright
    Moderator
    #230896
    webplayer
    Participant

    I am not a coder, but I’m looking for a snippet that can do this:

    Add Function: Change Admin Bar Login and Register Links
    
    if user is logged out
    
    Remove WordPress/buddypress admin bar Login and Register links
    
    Add New Login and Register Links
    
    New Login Link: <a data-reveal-id="tmpl_reg_login_container" href="javascript:void(0);" onclick="tmpl_login_frm();">New Login Link</a>
    
    New Register Link: <a data-reveal-id="tmpl_reg_login_container" href="javascript:void(0);" onclick="tmpl_registretion_frm();">New Register Link</a>
    
    if user is logged in don't do any of the above (i.e.) show their buddypress username and hide register links, etc...
    

    Does anyone know how to make this happen in code that I can drop into functions.php or bp-custom.php

    #230893
    webplayer
    Participant

    I stumbled upon this post suggesting a snippet to put into bp-custom.php (a tweaks and snippets file for buddy press located in the plugins directory), but I can’t get it to work. I think there is an issue with my coding.

    I am using BuddyPress 2.1.1

    Here is my bp-custom.php file:

    <?php
    // hacks and mods will go here
    
    //Change Admin Bar Login Links
    function custom_bp_adminbar_login_menu() {
        global $bp;
        global $wp;
        remove_action('bp_adminbar_menus', 'bp_adminbar_login_menu', 2);
        if (is_user_logged_in())
            return false;
        echo '<li class="bp-login no-arrow"><a data-reveal-id="tmpl_reg_login_container" href="javascript:void(0);" onClick="tmpl_login_frm();">' . __('Log In', 'buddypress') . '</a></li>';
        // Show "Sign Up" link if user registrations are allowed
        if (bp_get_signup_allowed()) {
            echo '<li class="bp-signup no-arrow"><a data-reveal-id="tmpl_reg_login_container" href="javascript:void(0);" onClick="tmpl_registretion_frm();">' . __('Sign Up', 'buddypress') . '</a></li>';
        }
    }
    
    add_action('bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 1);
    
    ?>
    #230889
    djsteveb
    Participant

    @emidio007 – are you really using the old never updated bp-album still? I had to switch to rtmedia album since it seemed that no one was working on any other album plugin or making this (what I consider extremely important) functionality a part of BP core.

    on the block user thing I had brought up similar issues here:
    https://buddypress.org/support/topic/report-user-report-abuse-flag-something/

    but no one could tell me if anything was actually working properly with current versions of stuff. Glad to see @shanebp posting above, sounds like there is hope that something with this function is current and working.

    #230879
    shanebp
    Moderator

    BuddyPress doesn’t provide forums.

    You need a separate plugin: bbPress

    #230875
    shanebp
    Moderator
    #230874
    timrourke
    Participant

    By the way, I just saw this on line 40 of /buddypress/bp-templates/bp-legacy/buddypress/groups/create.php:

    do_action( 'groups_custom_group_fields_editable' ); // @Deprecated

    Does this mean that the function groups_custom_group_fields_editable is a deprecated function? The ‘@Deprecated’ note is in a template file.

    Also, if it is deprecated, what should I be doing instead to add custom group fields?

    Thanks!

    #230872
    wadsworth4
    Participant

    Thanks for the feedback, bp-help. We didn’t use your plugin. There were others we used (especially BuddyPress Private Community) and some BP hacks.

    The BP team and the plug developers all seem like great folks, and the community is friendly and active. Have spent a lot of time with vids of their presentations. Like the product, like the people, but the privacy of closed communities is critical. The question is still out there:

    Is it actually possible to create a members-only community with BuddyPress 2.1.1. and multi-site WP without hacking BP?

    #230869
    shanebp
    Moderator

    Have you tried this plugin?

    #230864
    ARCangelGIRL
    Participant

    @brgweb In plugins/buddypress-activity-plus/js/bpfb_interface.js in line ~49-50 I’m passing categories drop down form

    $('.bpfb_preview_container').empty().html(data);
    $('.bpfb_action_container').html('  <div id="category"> <select name="video_category"><option value="category1">Category1</option>........ 

    In line ~435

    $(document).on('click', '#bpfb_submit', function () {
    		var params = _bpfbActiveHandler.get();
    		var group_id = $('#whats-new-post-in').length ? $('#whats-new-post-in').val() : 0;
    		var category = $('#category').val();
    		var subcategory = $('#subcategory').val();
    		$.post(ajaxurl, {
    			"action": "bpfb_update_activity_contents",
    			"data": params,
    			"content": $text.val(),
    			"group_id": group_id,
    			"category": category,
    			"subcategory": subcategory
    

    And then in plugins/buddypress-activity-plus/lib/class_bpfb_binder.php in line ~328

    $query='UPDATE wp_bp_activity SET video_category="'. $_POST['category'].'", video_subcategory="'. $_POST['subcategory'].'" WHERE id=' . $aid; 
    		$dummy=mysql_query($query);

    I’ll try with the code you provide to see if it’s working.

    #230860
    danbp
    Participant

    hi @ahd904,

    FYI, read here:

    Group Extension API

    #230856
    danbp
    Participant

    hi @nzshock,

    as soon as BP 2.2 will be out (end january) this can be done easily.

    If you’re comfortable with coding and won’t wait, you might read this topic.
    Or you can try s2Member plugin.

    I suggest to wait… 😉

    #230849
    shanebp
    Moderator

    Yeah, it can be frustrating to change some strings.
    I’m not sure why you’re having trouble with the .mo approach.

    For one or two changes, you can use a function in your theme/functions.php or in bp-custom.php
    Try this:

    function example_gettext_with_context( $translated, $text, $context, $domain ) {
    
         if ( 'buddypress' !== $domain )
            return $translated;
    
         switch ( $text ) {
    
            case 'Site-Wide Activity':
                return 'text you want to appear instead';
    
            default:
                return $translated;
        }
    
        return $translated;
    }
    add_filter( 'gettext_with_context', 'example_gettext_with_context', 11, 4 );
Viewing 25 results - 14,651 through 14,675 (of 69,016 total)
Skip to toolbar