Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'can find the members page'

Viewing 25 results - 51 through 75 (of 399 total)
  • Author
    Search Results
  • #304944
    dqueens
    Participant

    I really appreciate your explanations.

    It’s not necessary for me to use roles as long as I can manage all the users being displayed. (add & delete)

    I can do it with the plugin (using user meta) but still can’t find out where exactly to place the shortcode in order to get my list displayed at the top of the Members page.

    #304443
    joshreid
    Participant

    Oh sorry I thought I added the backticks.
    Yes sorry for the changes Im just trying to work out the problem.
    I will explain better what I am trying to do.
    On my website when a member fills out there profile or edits it one of the fields is a description field.

    Then when someone goes to the members page, the members profiles show up with the profile pic (and you can scroll down the page getting a quick look at the profiles) but there is no except about the profile. I want that description field to show up individually for each members description.

    No I can’t confirm the field id, I tried looking for it but can’t find it. If I do a page inspect I can see field_2 but alot of other text after it. But I am not sure I am right about that, I was just going of the field name.

    #303368
    DominaDoll
    Participant

    Hello! I am trying to edit the links to my Terms & Conditions & Privacy Policy on my sign up for Registration via WordPress/BuddyPress. I am using Customify as a theme and plugins BuddyPress & Youzer to create a social membership site.

    Wordpress- Version 5.1
    BuddyPress- Version 4.2.0
    Youzer- Version 2.1.5

    Here is the link to the register page. You can see the links in the form.

    I have wasted 2 days trying to find an answer to this in various forums and plugin reviews. Hoping someone here will be able to help me fix these links.

    Thank you for your help!

    #303340
    msteimann
    Participant

    Hello,

    I’ve searched the internet and this forum in particular for a couple of hours but could not find a proper workaround for this issue:

    As you know, BuddyPress setup works by creating two blank pages – members and groups. If I type in a meta description in Yoast for both and preview the pages, the description text is added to the page header and gets properly displayed in the page source text.

    But as soon as I assign the two pages to the BuddyPress plugin, the description gets stripped completely. In the page source appears an author note that a description needs to be added.

    I could live with that, but I urgently need to make my members page and all its related members profile content invisible to search engines. The severe problem is, that the Yoast settings „noindex, nofollow“ are stripped too.

    The BBpress Forum page is not affected by this issue. Yoast can apply a meta description and the „noindex, nofollow“ command, which is a good thing.

    Can someone please help me out with a solution?

    Thanks in advance,
    Martin

    #303187
    cammac1
    Participant

    Hi,
    I’m using BuddyPress and the result that I’d like to reach is modifying a field in the user profile page (http://yourSite/members/userName). So far I’ve found bp_after_profile_content and bp_before_profile_content but what I want is affecting one field inside the profile_fields_content. I’m not using any custom field and I can’t find a solution. Does any of you have any idea? I’m in function.php of a child theme and my function so far is this one:

    function get_member_field_test($data){
    $data = bp_get_member_profile_data( ‘field=lname’ );
    if ( strlen($data) > 3){
    $data = substr($data,0, 3).’…’;
    return $data;
    }
    }add_action(‘bp_before_profile_content’,’get_member_field_test’);

    thanks in advance

    #302844
    johnjack
    Participant

    I would find this incredibly useful as well as I am trying to integrate the buddypress personal messaging system in to a site I am working with.

    I want to be able to replicate the contents of this div
    <div id=”item-body” class=”item-body”>

    (when “Messages” is selected on the “Members” Page)

    I am very new to php/wp dev so struggling a little

    Can you help?

    #302495
    egamestudio
    Participant

    Hello,

    This is my problem, I use ACF PRO to create my own fields on my WordPress theme, for the member profiles part everything works with this code:

    <?php
    /**
     * BuddyPress - Members Settings ( General )
     *
     * @since 3.0.0
     * @version 3.1.0
     */
    acf_form_head ();
    $author_id = bp_displayed_user_id();
    ?>
        <div class="col-lg-6">
            <?php
            acf_form(array(
    
                'id' => 'acf-formA',    
    
                /* Groupe de champs ID utilisé */
                'field_groups' => array('663'), //CHANGE ID IN LIVE
    
                /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                'post_id' => 'user_'.$author_id,
    
                /* Quel est le nom sur le bouton du button de sauvegarde */    
                'submit_value' => __("SAUVEGARDER", 'acf'),
    
                /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                /* Button de submit de formulaire */
                'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                /* Le spinner de chargement */
                'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                'form' => true,
                'return' => ''
            ));
            add_action('acf/save_post', 'my_acf_save_post', 20);
            ?> 
        </div>
    

    So far no problem to display then on the member’s profile page the information of the ACF field.

    My Problem:
    On the other hand, on the Groups part I can’t find how to attach the field to the ID group, that’s what I tried.

    In my edit-details.php (in group),My field works, I enter test in my acf form
    it comes out in the echo “test” but on all the groups, I can’t associate this field with the group id.

    <?php
    /**
     * BP Nouveau Group's edit details template.
     *
     * @since 3.0.0
     * @version 3.1.0
     * @version 4.0.0 Removed 'Notify group members' checkbox in favor of hooked callback.
     */
    acf_form_head ();
            
    $group_id = bp_displayed_user_id();
    $group = new BP_Groups_Group( $group_id );
    
    ?>
    <?php echo get_field('test_group', 'group_'. $group_id); ?>
    
         <?php
                acf_form(array(
    
                    'id' => 'acf-formA',    
    
                    /* Groupe de champs ID utilisé */
                    'field_groups' => array('714'), //CHANGE ID IN LIVE
    
                    /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                    'post_id' => 'group_'.$group_id,
    
                    /* Quel est le nom sur le bouton du button de sauvegarde */    
                    'submit_value' => __("SAUVEGARDER", 'acf'),
    
                    /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                    'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                    /* Button de submit de formulaire */
                    'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                    /* Le spinner de chargement */
                    'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                    'form' => true,
                    'return' => ''
                ));
                add_action('acf/save_post', 'my_acf_save_post', 20);
                ?> 

    Thanks for your help !
    demo : https://cryodev.fr/branch/build/alpha/groupes/le-groupe-a-demo/

    #302483
    mbamutuelle
    Participant

    Hello,

    Can you help me for hiding the “Modify” button on a member page.
    I Don’t want that my members can change their profile by themself because all fields are automaticly feed by an LDAP authentication.
    Before updating my Woffice theme, i just have to comment some lines of this file :
    /home/wordpress/wp-content/themes/woffice/buddypress/members/single/profile.php

    // Edit
    //case ‘edit’ :
    // bp_get_template_part( ‘members/single/profile/edit’ );
    // break;

    But now i Don’t find where i can hide this button for my suscribers.

    Can you try to help me please ?
    Thx

    #302113
    Wushan TCM
    Participant

    No, that didnt worked.
    Ok like this: I added next to the primary, a new field called Profile fields: You can find it here: https://wushantcm.com/members/timvukan/profile/
    In the backend I added to the field group:
    -My Name:
    -Profession
    -Working Experience
    but, only the field
    -Profession is visuable in the frontend on the profile page

    #282183
    lookingahead
    Participant

    Hi!

    I’m looking to have a default avatar for different member types. So, upon registration, a user would be assigned, by default to the ‘Participant’ level. Or, another level.

    Thing is, if they register and are given a different level upon registration, such as ‘Moderator’ I do not want them to have the same default BuddyPress avatar as a ‘Participant.’ Because I want it to be clear in conversation threads what the level of each member is — who is ‘running things’ so to speak.

    I want Moderators to have a different avatar in conversation than a Participant. To make it obvious. And nooooo, looking at the top of the Group’s page is not sufficient to indicate this, as it would be easy to overlook if all avatars were the same; people are not going to easily see the ‘Moderator’ status under an avatar if they’re on mobile, or in a rush, or don’t care to view the person’s information/avatar past a glance. I want it to be incredibly obvious what level each person is in each discussion.

    And I want it to be automated. By default — that when a user signs up and is assigned a member type that they get the correct ‘member level’ avatar for their status.

    Note: I do not need this to be editable past their member type…because to be honest that is a hassle. I want it to be done based on their membership type, without me having to upload a new avatar each time…I want a member type to use the same avatar over and over again.

    And if that user’s level changes in the future, either to a higher level or a lower one, I want their avatar to be the new one — automatically — that is associated with their new member type that everyone else has, that has the same member type level as they now do.

    NOTE: I have ‘extended profiles’ shut off, and there is no reason to put them back on. I’ve tried that recently in my quest for ‘how the hell do I make avatars look different’…. 🙂 BUT turning on extended profiles messed up my site. Also, I tried turning on the feature ‘allow members to upload avatars’ and that messed up my site as well.

    I currently am using ‘BuddyPress First Letter Avatars’ with GREAT success; it is FAB. And the fact that it works to affect the appearance of BuddyPress avatars WITHOUT my having to enable extended profiles or turn on the ability for users to upload their own avatars…proves to me that I can edit avatars with code independent of those features being turned on.

    Remember — I can’t just have pretty avatars there. I need certain avatars based on member type. So using ‘BuddyPress First Letter Avatar’ as the plugin for my site is not a long-term solution. Currently my site is in development, so nobody else sees anything but me…when the site goes live though, I need to have the avatars populate based on member level. That plugin is not what I need…it does demonstrate that the idea I have behind getting this done is perhaps possible, though, as it does affect avatar appearance without breaking my site. I’d LOVE to reverse engineer it, and modify it for my purposes, but to be honest that’s a little past my paygrade. 🙂

    ONE OTHER thing to keep in mind: I do NOT want gravatars to be used on my site. Not ever.

    So I’ve shut those off. They repeatedly call back to the WordPress servers….something I don’t want. So I’ve used code that is listed in the BuddyPress codex to shut gravatars off. And am using a plugin to shut off gravatars within WordPress itself, outside of BuddyPress.

    Ideally, I’d love to accomplish setting avatars based on member levels, automatically, with a plugin. But currently no plugin exists to do this on Code Canyon, or the WordPress plugin repository, or elsewhere that I can find. I did find some code on BuddyDev that said we could use a couple plugins plus some PHP filters and etc….but I followed those directions and my site broke (500 errors)….which is what happened to someone else too (as mentioned in the comments), as recently as October of 2018.

    I am running WordPress 4.9.8 and the latest version of BuddyPress as well as bbPress.

    Thoughts?

    Thanks in advance for any and all assistance. 🙂

    #278498
    dennymar
    Participant

    Hello, I searched existing posts but didn’t find this exact question.
    On the members’ page, and on individual profile pages, it shows the time the member was last active. (example ‘active 3 minutes ago’)
    I’d like to hide/turn this off but can’t figure out where or how to do this. I have turned off the activity stream but that didn’t do it.
    Is there a snippet of code I need to change or add to accomplish this?

    I changed the theme to twenty-seventeen and it still shows up.
    Wordpress version 4.9.8
    BuddyPress version 3.2.0

    This will (temporarily) take you directly to the member ( ‘Connect’ ) page.

    Thank you!
    Denise

    #276723
    israel4lincelot
    Participant

    Hi!

    Where can I find the function that creates the URL link from the giving field?

    So what I mean is that in the file profile-loop.php the Field is loaded as a link just by adding <dd><?php bp_the_profile_field_value(); ?></dd> to it.

    This outputs the following code in my webpage <dd><p>Change Control</p></dd>

    So I’m wondering where this output is being set? If I have that I can hopefully add it to my members-loop.php

    Thx!

    #276700

    In reply to: Hide members

    lookingahead
    Participant

    so, @shanebp forgive me if resurrecting this thread is a bad idea, but it has the information in it that i have a question on, and i figured it’s easier to use this one to talk about my issue rather than create a new thread and link back here.

    i looked at the bp-custom.php file you linked to for this issue and i’m unsure where i can find the correct code to use with it….because i am actually not trying to merely hide members from the directory, but am instead trying to hide them from the directory and ALL other users on the site. i want to make it so that the user profiles basically are unreachable…along with each user’s information.

    so i believe (not sure, but i believe) that to achieve this is i would need to make sure the profiles are handled in one of the following ways:
    – password protected from view, accessible only to admins/keymaster
    – never loaded at all somehow, via bp-custom.php
    – the template for user profiles is blanked out somehow, so information is never put in them
    – get the buddypress profile for users — when clicking on an avatar — just redirect to the main site page

    of course, i have no idea if these guesses are the way to achieve the goal i really want….which is to have only one profile used (i’m using woocommerce’s account screen for their profiles)……i have no need for a buddypress profile to be used in addition to the woocommerce account profile page that i have them already using.

    i honestly just want each user’s personal profile page in buddypress to be disabled. so they can’t see their own profile or any profile of others.

    whether that involves forwarding users to the site main page when they click on a user, or (ideally) not being clickable at all, or….oh, i don’t know. as long as no buddypress profile is viewable by any member in any way. not even by the buddypress user themselves.

    and yes — this would also include hiding member names from search.

    note: i don’t care if they can see the member list in the hidden group forums; that is the only place i care to see members listed. but i don’t want those member avatars to be clickable in a hidden group forum. not ever.

    thoughts????

    #276391
    Prashant Singh
    Participant

    Hi,

    Please check if you have the option to set sidebar on the member directory page.

    Please go to pages and find the page members and check if you can assign a sidebar there.

    Thanks

    RobertL4807
    Participant

    Also, the page related to the cover image has been made to redirect back to my main profile.
    The url for the disabled page which now redirects is this one…
    /members/username/profile/change-cover-image
    Where can I find the code for this page and how to switch it back to default?
    Thanks

    Steve
    Participant

    I have searched for shortcode but can’t seem to find what I am looking for. Either it doesn’t exist, it is hard to find, or I am just an idiot.

    I want to find a list of all the shortcode that can be used with BuddyPress.

    I want to create a dashboard page that has
    A list of members friends
    Recent friend activity
    Recent activity in groups I am in

    Where is the shortcode?

    (Also, I know there is a profile page that has all this in it… but humor me. I just want shortcode info. Does it exist and where).

    #270362
    otty-dev
    Participant

    Hi @djpaul

    My theme was not built to be compatible with Buddypress unfortunately. Where can I edit the php and html myself for this issue? I was trying to navigate plugin > editor > buddypress but I couldn’t find the php for each members profile page and also the html file. So far I could only edit CSS using appearance > customize css.

    #269202
    Scribit
    Participant

    Thank boonebgorges.
    First of all buddypress.min.js is correctly loaded in the page and it is not part of the theme but the plugin is installed indipendently.

    I’m using version 2.8.2. I load not minified js to debug it. Look at this part of code:

    if ( target.attr('type') === 'submit' ) {
    	css_id = jq('.item-list-tabs li.selected').attr('id').split( '-' );
    	object = css_id[0];
    	template = null;
    	search_terms = target.parent().find( '#' + object + '_search' ).val();
    
    	// The Group Members page specifies its own template
    	if ( event.currentTarget.className === 'groups-members-search' ) {
    		object = 'group_members';
    		template = 'groups/single/members';
    	}
    
    	bp_filter_request( object, jq.cookie('bp-' + object + '-filter'), jq.cookie('bp-' + object + '-scope') , 'div.' + object, search_terms, 1, jq.cookie('bp-' + object + '-extras'), null, template );
    
    	return false;
    }

    when it create “item-list-tabs li.selected” class to populate css_id array it takes the first one div in DOM with that class, and the corresponding array is [home, groups, li]. So it searches for #home_search to set value of search_terms…but home_search element doesn’t exists on the page!

    To correctly search terms it should search for #members_search. What can I do? I don’t want to hardcode some javascript 🙂

    naomibuch
    Participant

    Hello,

    I am new to Buddypress and this is my first post, I am new to web development also, and my PhP coding is not all that great, my years as a software developer was strictly in a windows environment (vb.net and sql)

    I developed my own website and I am using Buddypress as part of my social media for users to connect with each other.

    I have spent endless hours researching a fix, and I have not been able to find anything php file that I can edit in File Manager to edit or remove the line of code.

    When a user updates an Activity, it updates in three places:

    1. The Activity Stream (which is what I want)
    2. The Member’s Profile where the Activity tab was (now removed, which is what I want)
    3. Under the Member’s profile cover, with that pesky “view link” (which I DO NOT want to show)

    And the “view link” is a bit buggy also, sometimes when a user clicks on it, it throws a 404 error, sometimes it opens up a blank page, and sometimes it opens up the recent activity that they posted in the Activity Stream.

    Also in the members directory I have a button to send the user a private message whether or not they are friends.

    When I click on a user name from the member’s directory, it take me to the compose a message like it is suppose to do, and the user name appears , but it does not save the user name in the send to box, do you have a fix for this also?

    Thank you very much, a fix to these problems are greatly appreciated.

    Naomi

    #268147

    In reply to: Contact user

    xmginc
    Participant

    @flashvilla, hope this helps:

    I’m using Gravity Forms to display a contact form on each member profile page and dynamically populating a hidden field with the member’s email address.

    Here’s info on dynamically populating a field in GF

    Their example:

    add_filter( 'gform_field_value_your_parameter', 'my_custom_population_function' );
    function my_custom_population_function( $value ) {
        return 'boom!';
    }

    I have changed this to:

    add_filter('gform_field_value_bp_member_email', 'bp_member_email');
    function bp_member_email($value){
      return bp_get_displayed_user_email();
    }

    In Gravityforms, I have then created a hidden field and in the advanced tab of that field, checked “Allow field to be populated dynamically” and entered the “Parameter Name:” as “bp_member_email”

    Then, in the notifications, the “Send to Email” should be changed from a standard email to a Gravityform tag. You can get that by clicking the little arrow key beside many fields such as “From Name” box. Find the name of your hidden field and click that. It should give you something like this: {BP Member Email:7} where “BP Member Email” is the name I gave the hidden field – yours will be whatever you named it.

    You’ll also need to embed the form to your child theme: /themes/yourchildtheme/buddypress/members/single/home.php

    Details on how to embed into your theme can be found here. Example: (where 1 is the ID of your form and 12 is the starting tabindex)

    <?php gravity_form(1, false, false, false, '', true, 12); ?>

    If this worked, you can view the source code of the member page and you’ll see the member’s email as an input value in the hidden field.

    Hope this helps!

    Please note: if you can’t have the person’s email displayed publicly in the source code for privacy (even though it’s not visible on the site), you will need an alternative method. Members on my site all have their emails visible so it’s not an issue for me.

    #267802
    franckw
    Participant

    Hi

    My website is multi vendor and use buddypress.

    If a buyer click the vendor store name (Baby Shop) in this page: https://atbuz.com/product-category/heepster-good/media/, then the buyer will go to this page: https://atbuz.com/members/baby/ , the name “baby” is a vendor store name, but how the buyer can return on the vendor (baby shop) shop page with all products? Because I don’t find any button to let the buyer return to the vendor shop page.

    Can you show me how to do or how to setting please?

    Thank

    Franck

    #266019
    possip
    Participant

    Hey,

    for some reason i can’t filter bbpress activities like topics and answers in the activity stream. It just keeps displaying all activities. I’d be thankful to have that fixed. Any hints? Greetings 🙂

    P.S. I also need to get rid of those brackets on sitewide-activity-page and members-page in the submenu (all members – friends…) because the number in there is already a little bubble. Couldn’t find the right php for that. Would apprecciate that too.

    zsauce
    Participant

    After much research through many old threads, using the combination of a few, I figured out how to remove the “All Members” view of the Activity feed.

    I originally tried a solution posted by paulhastings0 on the page https://buddypress.org/support/topic/change-the-default-activity-tab/

    However, as a member in that thread posted a few comments later, this only changes the default selection of the tab, it does not in fact change the feed that is loaded. So the tab said “My Friends” (or whatever tab you set as selected), but the feed that loaded was still the “All Members” feed.

    The second option I found (which I can’t find again to link to while writing this) only removed the “All Members” tab option, but simply left the tab as a blank space, while still loading the “All Members” feed.

    If you combine the two solutions however, it works like a charm!

    So, here’s the solution:

    You should be working in the BP Child theme.
    1) Copy the index.php file from ../wp-content/themes/boss/buddypress/activity
    2) Paste the index.php into your ../wp-content/themes/boss-child/buddypress/activity directory (it doesn’t exist, so you’ll have to create it)
    3) Use the first solution by paulhastings0 in the old thread to change which tab is default selected by removing class="selected" from the <li class="selected" id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'The public activity for everyone on this site.', 'boss' ); ?>"><?php printf( __( 'All Members <span>%s</span>', 'boss' ), bp_get_total_member_count() ); ?></a></li> line (on line 24) and add class="selected" to the new tab you want selected (I chose the “My Friends” tab, so for me it was <li id="activity-friends"><a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() . '/'; ?>" title="<?php esc_attr_e( 'The activity of my friends only.', 'boss' ); ?>"><?php printf( __( 'My Friends <span>%s</span>', 'boss' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a></li> on line 34.
    4) Now, delete the <li id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'The public activity for everyone on this site.', 'boss' ); ?>"><?php printf( __( 'All Members <span>%s</span>', 'boss' ), bp_get_total_member_count() ); ?></a></li> code from line 24.

    Hope this saves someone from hours of searching like I did!

    jeffacubed
    Participant

    Hi @arbolife any chance you even vaguely remember what you did to get new user activation email being sent out when using WPML + BuddyPress? Like you, everything works 100% correctly on the ‘English’ side when new users register, requests membership for a private BP group, logs-in, etc – BUT if a user registers on the french registration page (fr/register/) they never get any emails (I they are foever listed as “pending” in the user area). I’ve also noticed that no emails (outgoing) get triggered if an existing user switches to the /fr/ side & tries to join a private BuddyPress group. Trying to access the /fr/wp-login.php page (or the password reset) from the /fr/ side will also trigger a 404 page. So, like you mentioned, it’s a setting “somewhere” in WPML to resolve these (many) anomalies, but for whatever reason, I can’t see to find the resolution!

    My test setup:

    WP: 3.7.4
    BP: 2.8.2
    WPML: 3.7.0
    BuddyPress WPML Plugin: 1.5.5.1

    -Jeff

    #265244
    r-a-y
    Keymaster

    When you set up BuddyPress, you have the option to map BuddyPress components to WordPress pages:

    Configure BuddyPress

    So basically, if you mapped the Members Directory page to example.com/members, you can go to your WordPress Pages menu in the admin dashboard, find your Members Directory page and rename the slug from members to whatever you wanted like people.

Viewing 25 results - 51 through 75 (of 399 total)
Skip to toolbar