Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,351 through 7,375 (of 69,044 total)
  • Author
    Search Results
  • #270243
    avaiya
    Participant

    I didn’t see anything on this page about the unsubscribe link. https://codex.buddypress.org/emails/ Do you have any thoughts on that?

    Here’s the issue I’m having:

    Something is not working in the “unsubscribe” link in these notification emails. When I click to unsubscribe, it takes me to my Profile page and this error message shows up:

    “Something has gone wrong. Please go to your notifications settings to unsubscribe from emails.”

    And clicking on “Notifications” on the BuddyPress profile page doesn’t take me to the place where I can edit my email notifications. It just takes me to the overall Notifications menu.

    Thanks,

    Ande

    #270232
    Varun Dubey
    Participant

    @avaiya, For details, you can also check https://codex.buddypress.org/emails/

    #270231
    Varun Dubey
    Participant

    You can use 3rd party plugins like rtMedia. https://wordpress.org/plugins/buddypress-media/

    #270228
    Varun Dubey
    Participant

    @saviour-photos You can find template for each email trigger inside the dashboard
    https://codex.buddypress.org/emails/ You can also add additional email to available actions.

    #270227
    stoi2m1
    Participant

    Ok, not a bug

    The function that returns the HTML exists in the bp-legacy theme. In buddypress/bp-templates/bp-legacy/buddypress-functions.php

    So I copied the file into my child theme and modified it to act like I wanted.

    Problem Solved!

    #270218
    Gunu
    Participant

    @avaiya,

    see – dashboard – Emails – BuddyPress Emails

    #270214
    Varun Dubey
    Participant

    You can override default template files inside the child theme and adjust UI as you need. You can check corresponding template files name at following path

    Template Hierarchy


    Files inside /buddypress/members/single/ will be responsible for single profile layout.

    #270212
    Varun Dubey
    Participant

    @ottiya

    You could add a template file named buddypress.php to your theme’s directory, and BP would use that template instead since that file is ahead of page.php in the hierarchy above.

    If your theme has full-width template file for page, you can use the same to create buddypress.php

    For further details, you can check https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    #270207
    Henry Wright
    Moderator

    If your question relates to your bbPress forum then try asking at bbPress. Alternatively see here for information on the bp_activity_add() function:

    bp_activity_add()

    #270206
    Henry Wright
    Moderator

    Try creating the pages manually by going to the WordPress admin area. You should then be able to associate each of the pages you have created with your BuddyPress components.

    #270205
    Henry Wright
    Moderator

    members/username/ is generated by BuddyPress and author/username/ is generated by WordPress. You don’t have to merge them, they can live peacefully together without problems.

    #270194
    otty-dev
    Participant

    I’m still trying to find what’s going on. I tried link-style none but that doesn’t work.

    How exactly can I choose the full-width page template for all of the BuddyPress pages?

    #270190
    avaiya
    Participant

    Hey Peter, thanks for your help. Another question.

    I notice in using BuddyPress, a page gets created that shows all the Members of our site.

    Members

    Not just our membership members, but our wordpress members as well.

    Is there any problem if I just delete this page so no one can see it?

    Thanks,

    Ande

    #270189

    In reply to: usernames only

    Henry Wright
    Moderator

    The plugin hasn’t been abandoned. It’s still maintained by @r-a-y. See https://github.com/r-a-y/buddypress-usernames-only

    #270188

    This may depend on your theme, and I don’t have rtmedia installed so you’ll have to work it out for yourself, but you should be able to just hide that tab using CSS.

    On my install of BuddyPress a class of logged-in is added to the body element when the user is logged in. Check your page to make sure that this is the same for you too.

    If it is, you can add CSS to target the rtmedia tab for people who aren’t logged in. Like I said, I don’t have rtmedia installed, so you’ll have to find out the class or ID of the media tab you want to get rid of for yourself (sorry!). But, for the sake of this example, let’s pretend it has an ID of “rtmediatab”.

    So, you could add a line something like this to your CSS and the tab would be hidden:

    body:not(.logged-in) #rtmediatab { display: none; }

    Obviously it doesn’t remove it completely as the underlying HTML will still be in the page, but it won’t be visible on the page and that’s better than nothing.

    Hope that helps

    #270181

    In reply to: usernames only

    Venutius
    Moderator

    I’ve looked at BuddyPress Usernames Only and have come up with a fix for it. I’m trying to get in touch with the plugin author to see if we can push out a fix. If you are able to edit the plugin I can let you know what the fix is.

    #270163
    stoi2m1
    Participant

    I found the default theme was also showing issues which I missed.

    I had both Groups and Members as a Child Page to My Activity Page, named Community. This was causing both single members profiles and single groups to not work. Until I find a solution I have made them Main Pages (no parent assigned). Is there a way to set the slug? I found these deprecated constants, is there some new way?

    Deprecated Method in bp-custom.php use:

    define ( 'BP_MEMBERS_SLUG', 'community/groups' );
    define ( 'BP_GROUPS_SLUG', 'community/members' );

    From the following link:

    Changing Internal Configuration Settings

    I also found my other issue in bp-custom.php. Forgot all about that one.

    I created an aggregate feed called “My Feed” to display a more personal feed (which is working just fine). I used it on both the Activity in Profiles and the Main Activity Stream (site wide). I am using the following function to change the default sub nav for activities in profiles (Profile >> Activity >> Default Sub Nav) to “My Feed”. This works for profiles but causes the Site Activity to stop working.

    function gzp_set_default_activity_sub_nav() {
     
        bp_core_new_nav_default (
            array(
                'parent_slug'       => buddypress()->activity->id,
                'subnav_slug'       => 'my-feed',
                'screen_function'   => 'gzp_bp_my_feed_screen_activity'
            )
        );
    }
    add_action( 'bp_setup_nav', 'gzp_set_default_activity_sub_nav', 20 );
    #270159
    Varun Dubey
    Participant

    @krzysztofsw BuddyPress use the same user tables, all WordPress users will already be listed in BuddyPress member directory, and they cannot register again with same email id.

    #270158
    Varun Dubey
    Participant

    @keshabee You can change the statement via changing language strings. Try Loco translate plugin to change strings within the dashboard.
    You can check https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/ for further details.

    #270156
    Varun Dubey
    Participant

    Hi @freddurst1805
    You can use this approach to load template files from your plugin
    https://gist.github.com/modemlooper/fb70735dd78de7cd2032

    
    function screen_test(){
            add_action('bp_template_title', 'screen_test_title');
            add_action('bp_template_content','screen_test_content');
            bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/plugins'));
        }
    // buddypress-template folder and file name which you have created inside your plugin.
        function screen_test_content() {
            	include 'buddypress-template/some-template.php';
        }
    HDcms
    Participant

    HI,

    I’m trying to filter the buddypress members in the list of members and display them in descending order of precedence on a numeric xprofile field (0 to 10).
    Example of filter xprofile field “I search” = xprofile field “I am”

    I found the function that should work, but I can not do the query:

    function my_bp_loop_querystring( $query_string, $object ) {
    if ( ! empty( $query_string ) ) {
    $query_string .= ‘&’;
    }
    // $query_string .= ‘per_page=2’; //works
    $jerecherche = xprofile_get_field_data(‘Je recherche’, $user_id, $multi_format = ‘comma’ );
    $query_string .= ‘search_terms=true&per_page=2’; // <del datetime="2018-01-17T10:23:06+00:00">works</del>
    
    return $query_string;
    }
    add_action( ‘bp_legacy_theme_ajax_querystring’, ‘my_bp_loop_querystring’, 20, 2 );
    #270147
    stoi2m1
    Participant

    Super weird. I disabled all of my plugins except Buddypress, Activated the Parent Theme and still had issues. Copied over the BP Default theme and things work.

    I have not changed anything in the parent theme, very odd that it seems to be the issue. Maybe some of this happened when I upgraded to the most recent WP and BP.

    #270130
    vinkgg
    Participant

    I’ve managed to export the contacts list from the old intranet (made in .net) in an excel workbook, with that, i created each column matching the fields from wordpress and also my custom fields for buddypress as well.

    So far i can import the users with no problem, the issue is, is that in the old intranet they had a “birthday widget” showing the co-workers who are celebrating in the current month. I also added a “Birthday Date” column, but when i type the date, the Import Plugin does not take the data in.

    One thing i tried is to create the user in wordpress dashboard, type in all the fields from the user, including the birthday date and export it to a csv file, it did show the date in the column, so i copied the same format as it came from the file, and import it, but it does not import. I’ve tried different date formats but none of those worked out

    YYYY-D-M
    YYYY-D-M HH:MM:SS
    M-D-YYYY HH:MM:SS

    Any ideas?
    Thanks for the reply leog371

    #270119
    leog371
    Participant

    What are you exporting this csv out of? Is it from another WordPress or BuddyPress Site? If so, do you have all fields in your new intrasite setup like you did in the last one? If this is from some other social networking script, do all your data columns and things match up?

    #270115
    cding
    Participant

    @leog371 It seems you use the wp delete comment function. I want the comment author can delete their own comment and this is why I want to use buddypress delete activity function. Does your function allow the comment author to delete their own function?

    And it is difficult for me find where to put the second codes.
    I try to put it after

      <?php
      wp_list_comments( array(
      'avatar_size' => 100,
      'style' => 'ol',
      'short_ping' => true,
      'reply_text' => twentyseventeen_get_svg( array( 'icon' => 'mail-reply' ) ) . __( 'Reply', 'twentyseventeen' ),
      ) );
      ?>

    but it is not the right place. I want show the button after each comment.

Viewing 25 results - 7,351 through 7,375 (of 69,044 total)
Skip to toolbar