Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 251 through 275 (of 3,908 total)
  • Author
    Search Results
  • #311475
    onfleekresources
    Participant

    BuddyPress Community – Olympus Theme – Youzer

    This is three questions in one, looking for 1-3 plugins that work together to accomplish these things? I can insert code if I’m told exactly how/where to put it, but I’m very much not a coder so I’d prefer to use plugins if I can. lol

    1. Can I have multiple Users assigned to one profile (like a business, the owner and an admin person). For example a Business owner sets up a business profile but allows the manager or supervisor access to post jobs or advertising through it?

    2. Can I create two different profiles (that have different profile fields upon registration) like a person vs a business under the same site?

    3. Can there be profile parents like if a company has 3 locations – a main company profile and 3 child profiles – one for each location so the managers can logon and manage their own accounts with job ads and advertising? And the parent can do the same for the headquarters?

    Massimo
    Participant

    Hi, I set some profile field as restricted to registered users only, but thet stay visible to all. What could be the reason? The same happens also if I restrict them “to me only”. Can you imagine what could be the cause of this malfunction and how could I try to fix that?

    daveuk83
    Participant

    Hi, wondering if anyone would be able to help please.

    Currently using WP 5.4.1 and BP 5.2.0
    I have Buddy Press xProfile custom fields installed where I have created a multi line text box to allow members to write about themselves.

    For some reason though, only a very basic editor is show up. I tried adding tinymce advanced to see if that would help, but no joy. I was hoping to have the option for members to add images/media – the kind of features you see on a regular text bar.

    Here is a screenshot –

    Any help grealty appreciated.

    #311322
    carosch
    Participant

    I tried

    <?php if ( bp-tables-user_has_meta() ) : ?>
                            <p><?php echo profile-fields(field_3); ?></p>
    <?php endif; ?>

    but that doesn’t work, the members list just doesn’t display at all.

    #311320
    carosch
    Participant

    Hello,

    I’m tring to customize both members lists.
    The one which is global, and the one which is display in a group.

    I succed to change the link which is on the member name to get directly to the profile page.
    I succed to add the nicename.

    How can I do the same in the members list which is into the group?

    And I need to add other informations that comes from additional fields.
    How can I do that ?

    Carosch

    #311317
    N33D
    Participant

    Oh man, was breaking my head about this one for the past days. But found the solution, of course the answer was right there. I forgot to exclude admins and mods in the loop. Don’t understand why they would be excluded in the first place.

    There is the complete code, including to get xProfile fields for anyone that is interested:

    
    <?php
        $args = array(
            'group_id' => bp_get_group_id(),
            'exclude_admins_mods' => false
        );
    
        if ( bp_group_has_members( $args ) ) : ?>
            <ul id="member-list" class="item-list">
                <?php while ( bp_group_members() ) : bp_group_the_member(); ?>
                    
                    <?php $user_id = bp_get_group_member_id(); ?>
                    <li>
                        <span class="avatar">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <?php bp_group_member_avatar_thumb(); ?>
                            </a>
                        </span>
                        <span class="name">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <h4><?php bp_group_member_name(); ?></h4>
                            </a>
                        </span>
                        <span class="platforms">
                            <?php $user_psn_handle = bp_get_profile_field_data('field=PSN handle&user_id='.$user_id); ?>
                            <?php if($user_psn_handle): ?>
                                <i class="icon saturated standalone platform psn"></i>
                            <?php endif; ?>
    
                            <?php $user_xbox_handle = bp_get_profile_field_data('field=XBOX handle&user_id='.$user_id); ?>
                            <?php if($user_xbox_handle): ?>
                                <i class="icon saturated standalone platform xbox"></i>
                            <?php endif; ?>
                        
                        </span>
                        <span class="actions">
                            <a class="button small" href="<?php bp_group_member_domain(); ?>">
                                <?php esc_html_e('View profile', 'mvp'); ?>
                            </a>
                        </span>
    
                    </li>
    
                <?php endwhile; ?>
    
            </ul>
    
        <?php else: ?>
    
            <div id="message" class="info">
                <p><?php _e( 'No members were found.', 'buddypress' ); ?></p>
            </div>
    
        <?php endif; ?>
    
    #311291
    onfleekresources
    Participant

    Is there a plugin for this example in my buddypress community?

    Tina sets up her profile and selects female, missouri, 4/15/2002, and is a student.
    I go to post and select a category, tag, or group that is specific to female students that are 18 yrs old and live in Missouri.
    Only these users will see that post in their BuddyPress Newsfeed. What is the best way to do that?

    Is there something out there that I can install to make this happen? I want users to only see what is appropriate for them.

    Thank you !!!

    #311068
    fra88
    Participant

    Hi,

    How can I translate the buddypress profile fields (for a multilingual website)?
    Is there a free option? Or is it only possible with WPML?

    Thanks!

    #311021
    cmsplay
    Participant

    Hi iamthewebb,

    Just getting to grips with terminology. The issue is a catch-22:

    I have a CSV file of data to import to new, Extended Profile field names in WP. I know the Extended Profile Field LABELS (e.g. ‘Favourite Colour’), but I cannot see the Extended Profile Field NAMES (e.g. favourite_colour). I need to see the names, so that I can type these into the appropriate column headings of the CSV file, so that data gets directed to the right WP Extended Profile fields on import.

    The plugin I’m using, show field LABELS but not field NAMES.

    I have tried using a plugin that shows field names, but it does not ‘see’ the Extended Profile field names made in another plugin.

    I’m aware that if I import the CSV file, then the fields might automatically be made in WP on upload. However, I want the field data to go the field categories I have already made.

    Can you advise? Thank you for your help. Much appreciated.

    #311019
    cmsplay
    Participant

    Sorry, ‘shortcode’ is not the correct term. WP uses table column headers, e.g. ‘user_name’. How can one see a list of those (contracted) column header names for made Extended Profile Fields?

    #311017
    cmsplay
    Participant

    Hi iamthewebb, Thanks for your lightning-quick response.

    Doh, just found the solution: extended profile information is shown in Users>Your Profile>Extended Profile

    …I was missing the tab at the end.

    Does anyone know how I can find the ‘short code’ names for the extended profile fields, e.g. <favourite_colour> for ‘Favourite Colour’?

    Thank you.

    cmsplay
    Participant

    I add and save User Extended Profile Fields to Users>Profile Fields

    After this, when I go to Users>Your Profile, the new xProfile fields just made, do not appear there.

    Why is this so?

    Thank you.


    WP v5.4
    BP v5.1.2

    #310907
    canvasstudio
    Participant

    If you are still look, I do have a plug-in reference that seem to be working.

    site all update to 5.4 and latest BuddyPress so appears to work even though old.
    just message me if still need. I have successful removed all links in customer profile fields.

    megseoh
    Participant

    Hiya, I’m looking for a way to selectively email different BuddyPress groups from within WordPress. We’d ideally like to email our members based on similar profile fields if possible. What’s the best way to set this up?

    #310865
    winstart
    Participant

    problem ‘solved’ by deactivating SuitePlugins – Advanced XProfile Fields for BuddyPress

    #310829
    @mercime
    Participant

    @jvalenzh Based on the threads I’ve seen so far in their comments area, I did think they haven’t found any resolution to Userpro’s plugin conflict with BuddyPress.

    At this point, I would suggest hiring a developer to help you integrate Userpro as a “component” of BuddyPress and deactivate BP’s own xProfile fields. Then that new Userpro component can be made to have its own profile tab within the BP ecosystem and update user meta and other related information in database. But it won’t be easy nor cheap. Or much better, hire a developer to create a BuddyPress add-on plugin which adds the features that you like in Userpro for your BP site.

    #310826
    @mercime
    Participant

    @jvalenzh It’s been some time but it seems Userpro doesn’t work well with all BuddyPress components, specifically with BP Extended Profile (xProfile) fields.

    I recommend that you seek help at the paid plugin’s comments page re integration with BuddyPress as they provide support for Userpro.

    #310760

    In reply to: Registration Help

    morpheus636
    Participant

    I am also using BBpress so if there is some issue there, let me know.

    Website is joshinshaker.com – Sorry it’s slow, its on a test server.

    When I go to users > Profile Fields, there is the field Name 3 times. How do I delete this?

    #310744
    qtpweb
    Participant

    Thanks for your reply.

    I’m not using the visibility option because if the user choose “yes” on any radio fields, that field has to be visible for all members on his profile view page.

    qtpweb
    Participant

    Hello,

    on the profile View page, I’d like to hide all fields who are radio types and when the value of those is “no” (I have 2 choices with those radio fields, “yes” or “no”)

    I was able to hide fields with bp_get_the_profile_field_value() by checking the value with a condition and strip_tags() to remove html and other functions to some weird invisible characters but that’s a little bit “hacky”…

    Is there a solution ?

    Thanks

    fra88
    Participant

    Hi, how can I display profile fields (for example: location) on member’s profile in the header below the header avatar? I understood to place a code in the member-header file but it doesn’t work. Thanks!

    #310513
    shanebp
    Moderator

    BP does not use user_meta in the profile fields.
    To set BP profile fields use xprofile_set_field_data.

    olivier83
    Participant

    Hello,
    I’m using a plugin to create forms and registration forms on my WordPress website.
    It’s WP Fluent Form Pro.
    I want to fill the extended profile fields of buddypress from the registration forms I create with the plugin.
    The support of the plugin says that I can use the user meta for passing other inputs to BuddyPress fields. They don’t want to help me more claiming that I have to find the solution by myself…

    My issue is that I don’t find any User Meta in the extend profiles of buddypress. Where can I find them?

    Thank you for your help.

    GAP Webmasters
    Participant

    I think you can use the extended profiles and add custom groups and fields to do this, no?

    #310303
    discoverearth
    Participant

    Hey
    I agree with you 100%. Buddypress onboarding needs some additional plugins.

    There is a plugin that allows users to choose groups they want to join as part of the signup Process.

    But we also need a better solution for profile fields.

    What was the buddydev plugin you used to redirect to profile after registration?

Viewing 25 results - 251 through 275 (of 3,908 total)
Skip to toolbar