Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 15,776 through 15,800 (of 69,016 total)
  • Author
    Search Results
  • #189607
    Julia_B
    Participant

    Thanks Shanebp. Seems like a pretty basic function – most people using forums expect to be able to insert images into their posts nowadays. Any plans to include this in Buddypress? Sounds like it’s going to be tricky to get it work with those plugins.

    shanebp
    Moderator

    >To import the messages we are using the bbpress function messages_new_message( $args )

    That is a BP function.
    In it, near the bottom, you will see:
    do_action_ref_array( 'messages_message_sent', array( &$message ) );
    That is the hook to send email if the member has that Setting set to Yes.

    The function messages_message_sent is in:
    \buddypress\bp-messages\bp-messages-notifications.php

    So you could use do_action_ref_array hook with a priority < 10 and strip out the recipients.

    Or you could try a remove_action on
    add_action( 'messages_message_sent', 'messages_notification_new_message', 10 );

    #189598
    Henry Wright
    Moderator

    Hi @godavid33,

    Unless things have changed, users should be able to message anybody. Are you sure you’re not using a plugin such as BuddyPress Private Messages for Friends Only?

    #189597
    Cartographer
    Participant

    Yes @danbp

    You have absolutely right.

    Wordpress: 3.9.2
    BuddyPress: 2.0.2
    Theme: Twenty Fourteen

    The issue I am talking about can be replicated (in my installation) using every theme.

    I wish I could be more specific.

    #189596
    danbp
    Participant

    @cartographer,

    no worry about your english, mine is not perfect either.

    We are here on a buddypress support forum and it is probably clear to everybody that we essentialy talk about BuddyPress and that the most of us know (more or less) how to use and manipulate it.

    The problem is that if you want something to be replicated, you have to do it in the same condition as the user telling about an issue. In your issue description, the important thing is not the how, but the why.

    No ?

    Please try to understand that it is important to give at least your WP and BP version and the used theme

    #189592
    Cartographer
    Participant

    Hi again,

    I use the latest versions of both WordPress and Buddypress and I can replicate the issue using “Twenty Fourteen” theme.

    Wordpress: 3.9.2
    BuddyPress: 2.0.2
    Theme: Twenty Fourteen

    #189589
    Cartographer
    Participant

    Hi @danbp

    I guess that if someone who uses buddypress search for a member as the url indicates: http://examplesite.com/members/?s=username

    the he will go to the “searching members results screen” and he could replicate the issue.

    The theme is the Twenty Fourteen.

    Sorry if my english don’t help.

    #189586
    danbp
    Participant

    hi @rynoesco,

    I’ve had a little work done to my profile pages

    We have probably the culprit, but you say nothing about that work. What have you done exactly ?

    Only CSS to get rouded avatars ? Please give details

    Also read here please, and give your theme name

    #189585
    danbp
    Participant

    hi @cartographer,

    Can you replicate the issue ?
    How could somebody replicate an ignored context ?

    Please read here:
    https://buddypress.org/support/topic/when-asking-for-support-2/
    and also add the theme name

    #189584
    danbp
    Participant

    hi @cartographer

    Please read here and give also some infos about your theme
    https://buddypress.org/support/topic/when-asking-for-support-2/

    #189578
    bitpath
    Participant

    Hi,
    Got this resolved. Was able to assign buddypress to the right site after network activating. Intuitively, at first, it seemed like I either needed to activate it on a specific site, or if I network activated it, it would be on root. I was able to define the site I wanted it on, network activate it then network activate the privacy plugin that needed to be network activated. I do hope buddypress integrates more privacy options into core, especially in this day in age people will want this kind of control, but this works and thank you! 🙂

    Changing Internal Configuration Settings


    Cheers!

    #189576
    sallymander
    Participant

    Okay – so I have this
    <?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ).’&type=alphabetical’ ) ) : ?>

    in the members-loop.php file and it sorts the users alphabetically by user name.

    BUT if I put this:

    function alphabetize_by_last_name( $bp_user_query ) {
        if ( 'alphabetical' == $bp_user_query->query_vars['type'] )
            $bp_user_query->uid_clauses['orderby'] = "ORDER BY substring_index(u.display_name, ' ', -1)";
    }
    add_action ( 'bp_pre_user_query', 'alphabetize_by_last_name' );

    into the functions.php file I get this error message after it returns one user:

    Fatal error: Call to undefined function bp_member_alphabetical() in /home/homepatr/public_html/wp-content/themes/twentyfourteen-child/buddypress/members/members-loop.php on line 57

    And here is a copy of line 57:
    <div class="item-meta"><span class="activity"><?php bp_member_alphabetical(); ?></span></div>

    I’m just a homeschool mom/volunteer trying to get our support group web site up the way we need it. This is definitely a learning experience for me, and I appreciate all the help!

    #189572

    In reply to: Why the rudeness?

    danbp
    Participant

    No worry: unwarranted and rude Yesssss, i’m a rough boy! 😀

    When asking for support.
    Old topics

    #189567
    durkk
    Participant

    @danp: Yes, that’s the plugin indeed. I have the latest version.

    Thanks for the ideas! I have gone through those options and the whole website is pretty much one big WP manual in layout (knowledge base search type of thing) so that’s covered.

    The one 2 one tutoring is practically a video call, but I also share files and links and make a summary and assign homework that I want them to be able to review in their profile.

    So I guess the best way would be to somehow link a personal page to a profile. Any ideas on that?

    While googeling and writing this I have come up with the following:

    Use dynamic links to user profiles via and then give my students a restriction level via s2members or simalair and restrict acces that way. Just thinking out loud and still pondering how to link unique user ID’s to a page.

    http://edu.durkkooistra.com/ I have an open website, so the knowledge base is open to anyone, I just want to restrict one page per student to add the videos etc too.

    #189566
    danbp
    Participant

    hi @tiepolo71,

    you can add such information in each group description.

    If you’re comfortable with coding, build your own group queries or plugin:
    https://codex.buddypress.org/plugindev/group-meta-queries-usage-example/https://codex.buddypress.org/developer/group-extension-api/

    if not, see which plugin solution could be best for your needs

    https://wordpress.org/plugins/buddypress-groups-extras/

    New Plugin Adds Taxonomies to BuddyPress Groups

    #189563
    danbp
    Participant

    Seems you and me don’t use the same file !
    The code to change is line 16 at the begin of that file. This place didn’t change since my first answer… 😉

    The members-loop.php file in your child theme must be a copy of the one in
    buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

    The modified line included in php tags looks like this once you finished correct copy/pasting
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&type=alphabetical' ) ) : ?>

    #189562
    danbp
    Participant

    I don’t understand why you obstinatly want to write bios on wordpress (inactive when BP is activated) when you can do that with xprofile !

    On the register page you have a single line text area field. Why don’t you use a multiline area for doing this ?
    field type = Multi-line Text Area.
    Entered text will then appear on user’s profile !

    The function you want to use cannot work, as it contain errors.

    Sorry to tell, but I think you have to learn some php and buddypress handling before going to reinvent the wheel or making things you don’t really understand.

    Some good reads here, and many others on the forum.

    functions.php


    https://codex.buddypress.org/getting-started/guides/displaying-extended-profile-fields-on-member-profiles/

    Using bp_parse_args() to filter BuddyPress template loops

    #189557
    sallymander
    Participant

    I used the code editor in my cpanel. It shows the first user but under that is this error message: Fatal error: Call to undefined function bp_member_alphabetical() in …..wp-content/themes/twentyfourteen-child/buddypress/members/members-loop.php on line 57

    Here’s line 57-

    bp_member_alphabetical(); ?><

    Did I list that correctly this time? Thanks for your patience. This is a steep learning curve for me.

    #189556
    sam01389
    Participant

    No I am not using any extra profile plugin. I am using ignite theme and I think it is compatible with BP. check this.

    http://bmania.in/wp/register/

    Q 2. I have added extra field for short BIO and saw your codes add_action to retrieve and display that BIO of user but not getting where exactly I need to add that code in function.php. I am also not getting member.php in buddypress plugin editor. I think code would be like this but dont know where I need to put that codes exactly.

    add_action( ‘bp_profile_header_meta’, ‘display_user_short BIO’ );
    function display_user_short BIO() {
    //This is where the code to display the user data will go.
    }

    $args = array(
    ‘field’ => ‘short BIO’, // Field name or ID.
    ‘user_id’ => bp_displayed_user_id() // Default
    );

    your cooperation would be highly appreciable.

    intristin
    Participant

    Ok, I just deactivated all plugs again, this time I cleared the server cache, and I restarted them one at a time. When I turned on Facebook Thumb Fixer the txt appeared. So you are correct, it was Facebook Thumb Fixer. I will contact the makers of that and see if I can find a fix. I really like that plug in so I will figure it out.

    bd-wall is this plugin : https://wordpress.org/plugins/buddypress-wall/ but it seems to not be related to the problem I was having. Thank you so much for all your help.

    intristin
    Participant

    strange, I disabled every single plug-in but buddypress and the txt is still there. Perhaps my install of buddypress has been corrupted in some way? If I delete the plugin and re-download and install it will I loose all the profile data?

    #189221
    BookClubReader
    Participant

    I spoke too soon. I found the answer here – Contact Form 7 – From Name Incorrect

    Here’s what solved it for me:

    remove_filter('wp_mail_from', 'bp_core_email_from_address_filter' );
    remove_filter('wp_mail_from_name', 'bp_core_email_from_name_filter');

    I added this to my function file. If you have Genesis Extender, it’s easy to do.

    #189039
    Henry Wright
    Moderator

    Hi @jjnw

    I haven’t tested your solution but wanted to point out any modifications you make to core files such as buddypress/bp-templates/bp-legacy/buddypresss/members/single/profile.php will be lost on upgrade of the plugin.

    There is a way around this! Take a look at the Template Hierarchy article. There isn’t much to it actually. All you need to do is create a folder inside your theme called /buddypress/. All BuddyPress templates you create go inside here.

    So for example: Create /wp-content/themes/your-theme/buddypress/members/single/profile.php

    Then simply add your code changes to profile.php

    #189030
    danbp
    Participant

    @sam01389
    Q. 4:
    BuddyPress wordings can easily be changed by using a language file, even if your site is in english.

    Customizing Labels, Messages, and URLs

    Q.2:
    When buddypress is activated with the xprofile component, the wordpress register form is not used, except for username, password and email part.
    xprofile let you extend this wp form. And if you need a bio field, you create multiline text field and call it Biography. So simple as that.

    Q.3
    https://wordpress.org/plugins/buddypress-followers/

    Q.1
    no comprendo ! What do you mean exactly ?

    Latest WP and BP maybe enough for a daily forum usage. But imagine people reading your topic in 6 mounth or in 2 years… Give the version number please. And give also the used theme type/name.

    #189025
    rzelnik
    Participant

    I can confirm that I have the same issue. Admin users can see all groups, including the hidden groups, but the hidden groups are invisible for regular members in the BP Groups Widget.

    Here is one relevant issue: https://buddypress.org/support/topic/showing-buddypress-hidden-group-forums-to-group-members-on-bbpress-forum-index/

Viewing 25 results - 15,776 through 15,800 (of 69,016 total)
Skip to toolbar