Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 501 through 525 (of 3,608 total)
  • Author
    Search Results
  • #273989

    In reply to: Work.

    How is a PROFILE FIELDS set In which the admin can write but the user does not write or delete.

    #273892
    Venutius
    Moderator

    One easy way could be to use BP Profile Shortcodes Extra, if has a shortcode to display a users profile fields. maybe you could do it that way?

    onions2578
    Participant

    the above just output buddypress group fields values anywhere I like [bpps_profile_field field=Life tab=LifeColors] but no edit values anywhere i like

    Thank paul, I will check some survey plugins and sort some integration myself.

    ultimate members plugin has shortcode to add profile fields editing areas I think but only works with registration and base profile fields and not buddypress group fields

    any example of code (for editing profile group fields) on homepage or best buddypress survey plugins I can customize would help

    onions2578
    Participant

    THis is what I was looking for

    Profile field based content shortcode

    BP Profile Shortcodes Extra


    I am installing now, and may post updates if not what I want.
    I found these by searching “wordpress profile fields shortcodes” and there are heap more that I can use with buddypress
    Took over 10 hours researching before I tried this search term

    #273779
    Venutius
    Moderator

    BuddyPress Xprofile Fields Type has been withdrawn and if unsupported.

    If you do a lookup for BuddyPress Xprofile Custom Fields (note the extra s) you will find that there’s a new fork of this plugin that should fix the problem.

    r-a-y
    Keymaster

    BuddyPress currently doesn’t support the WordPress default bio fields for the Extended Profiles component.

    There is a ticket that might add this functionality in a future version:
    https://buddypress.trac.wordpress.org/ticket/7162

    omkarsawant1
    Participant

    hello,
    add_action(‘bp_after_profile_edit_content’,’edit_appointment_settings_xprofile’);

    // Displays Editable Fields for Appointments+ email and phone
    function edit_appointment_settings_xprofile(){
    // Only Logged in users can make these edits
    $profileuser = wp_get_current_user();

    ?>
    <h3><?php _e(“Appointments+ Settings”, ‘appointments’); ?></h3>
    <form method=”post” action =” “id=”appointment-edit-form” class=”standard-form”>
    <table class=”form-table”>
    <tr>
    <th><label><?php _e(“My email for A+”, ‘appointments’); ?></label></th>
    <td>
    <input type=”text” style=”width:25em” name=”app_email” value=”<?php echo get_user_meta( $profileuser->ID, ‘app_email’, true ) ?>” <?php echo $is_readonly ?> />
    </td>
    </tr>
    <tr>
    <th><label><?php _e(“My Phone”, ‘appointments’); ?></label></th>
    <td>
    <input type=”text” style=”width:25em” name=”app_phone” value=”<?php echo get_user_meta( $profileuser->ID, ‘app_phone’, true ) ?>”<?php echo $is_readonly ?> />
    </td>
    </tr>
    <input name=”action” type=”hidden” value=”save_xprofile” />
    // Add other fields like location etc .. here if needed

    </table>
    <div class=”submit”>
    <input type=”submit” action = “” name=”appointment-edit-form-submit” id=”appointment-edit-form-submit” value=”Save” />
    </div>
    <?
    regards
    omkar
    https://luckypatcher.pro/ https://kodi.software https://plex.software/

    #273425
    keyston
    Participant

    how to display ‘view link’ to xprofile’s file fields ?

    https://asseump.org/wp-content/uploads/2018/05/Capturar-1024×697.png

    #273424
    keyston
    Participant

    does not display ‘view link’ to xprofile file fields

    https://asseump.org/wp-content/uploads/2018/05/Capturar-1024×697.png

    #273339

    In reply to: Work.

    Thank you so much.
    Want to tell me how admin can include group members.
    How do I make friends? for group invitations.

    My page is a record for members of a new political party.
    1 the superadmin, editor of 80 80 groups with contributors.
    Each Member shall be recorded as a Subscriber.
    After approval becomes contributor.
    Contributorul does not see than personal data and may modify data online.
    The Publisher sees all the data in the group.
    Superadmin has access general.
    In Register and Profile form it takes several fields that I see but cannot be modified.

    I appreciate help volunteer and give a donation.

    #273180
    Venutius
    Moderator

    Yes, with xProfile once you have configured the field from the plugin, BP remembers those settings so you no longer need the plugin, however you’d need it to add new fields supported by the plugin. I’ve put in a request to include this plugins features in BP core, if that happens you should get the ongoing support that is required.

    I guess regarding your backup issue the next step is to check with that plugins support pages and report the issue there. WP also updated at the same time as BP so it’s not inconceivable that the error stems from that.

    #273176
    panosa1973
    Participant

    Is this a bug? I’ve been trying to figure this out for days. Why does my custom member directory revert to the default when I sort it??? I load it, it works fine and outputs the filtered users. I sort it by Alphabetical order (for example) and it gives me all users again. Does anyone have an idea why this is happening?

    [members-loop-2.php]

    <?php
    /**
     * BuddyPress - Members Loop
     *
     * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter()
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    /**
     * Fires before the display of the members loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_before_members_loop' ); ?>
    
    <?php if ( bp_get_current_member_type() ) : ?>
    	<p class="current-member-type"><?php bp_current_member_type_message() ?></p>
    <?php endif; ?>
    
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) .'&include=' .get_user_matches()  ) ) : ?>
    
    	<div id="pag-top" class="pagination">
    
    		<div class="pag-count" id="member-dir-count-top">
    
    			<?php //bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="member-dir-pag-top">
    
    			<?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    	<?php
    
    	/**
    	 * Fires before the display of the members list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_before_directory_members_list' ); ?>
    
    	<ul id="members-list" class="item-list" aria-live="assertive" aria-relevant="all">
    
    	<?php while ( bp_members() ) : bp_the_member(); ?>
    		<li <?php bp_member_class(); ?>>
            
    			<div class="item-avatar">
    				<a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar(); ?></a>
    			</div>
    
    			<div class="item">
    				<div class="item-title">
    					<a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a>
    
    					<?php if ( bp_get_member_latest_update() ) : ?>
    
    						<span class="update"> <?php bp_member_latest_update(); ?></span>
    
    					<?php endif; ?>
    
    				</div>
    
    				<div class="item-meta"><span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_member_last_active( array( 'relative' => false ) ) ); ?>"><?php bp_member_last_active(); ?></span></div>
    
    				<?php
    
    				/**
    				 * Fires inside the display of a directory member item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_item' ); ?>
    
    				<?php
    				 /***
    				  * If you want to show specific profile fields here you can,
    				  * but it'll add an extra query for each member in the loop
    				  * (only one regardless of the number of fields you show):
    				  *
    				  * $xGender =  bp_member_profile_data( 'field=Gender' );
    				  */
    				  
    				?>
    			</div>
    
    			<div class="action">
    
    				<?php
    
    				/**
    				 * Fires inside the members action HTML markup to display actions.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_actions' ); ?>
    
    			</div>
    
    			<div class="clear"></div>
    		</li>
    	<?php endwhile; ?>
    
    	</ul>
    
    	<?php
    
    	/**
    	 * Fires after the display of the members list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_after_directory_members_list' ); ?>
    
    	<?php bp_member_hidden_fields(); ?>
    
    	<div id="pag-bottom" class="pagination">
    
    		<div class="pag-count" id="member-dir-count-bottom">
    
    			<?php //bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="member-dir-pag-bottom">
    
    			<?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    <?php else: ?>
    
    	<div id="message" class="info">
    		<p><?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p>
    	</div>
    
    <?php endif; ?>
    
    <?php
    
    /**
     * Fires after the display of the members loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_after_members_loop' );

    [index-2.php]
    ‘<?php
    /**
    * BuddyPress – Members
    *
    * @package BuddyPress
    * @subpackage bp-legacy
    */

    /**
    * Fires at the top of the members directory template file.
    *
    * @since 1.5.0
    */
    do_action( ‘bp_before_directory_members_page’ ); ?>

    <div id=”buddypress”>

    <?php

    /**
    * Fires before the display of the members.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_before_directory_members’ ); ?>

    <?php

    /**
    * Fires before the display of the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_before_directory_members_content’ ); ?>

    <?php /* Backward compatibility for inline search form. Use template part instead. */ ?>
    <?php if ( has_filter( ‘bp_directory_members_search_form’ ) ) : ?>

    <div id=”members-dir-search” class=”dir-search” role=”search”>
    <?php bp_directory_members_search_form(); ?>
    </div><!– #members-dir-search –>

    <?php else: ?>

    <?php bp_get_template_part( ‘common/search/dir-search-form’ ); ?>

    <?php endif; ?>

    <?php
    /**
    * Fires before the display of the members list tabs.
    *
    * @since 1.8.0
    */
    do_action( ‘bp_before_directory_members_tabs’ ); ?>

    <form action=”” method=”post” id=”members-directory-form” class=”dir-form”>

    <div class=”item-list-tabs” id=”subnav” aria-label=”<?php esc_attr_e( ‘Members directory secondary navigation’, ‘buddypress’ ); ?>” role=”navigation”>

      <?php

      /**
      * Fires inside the members directory member sub-types.
      *
      * @since 1.5.0
      */
      do_action( ‘bp_members_directory_member_sub_types’ ); ?>

      <li id=”members-order-select” class=”last filter”>
      <label for=”members-order-by”><?php _e( ‘Order By:’, ‘buddypress’ ); ?></label>
      <select id=”members-order-by”>
      <option value=”active”><?php _e( ‘Last Active’, ‘buddypress’ ); ?></option>
      <option value=”newest”><?php _e( ‘Newest Registered’, ‘buddypress’ ); ?></option>

      <?php if ( bp_is_active( ‘xprofile’ ) ) : ?>
      <option value=”alphabetical”><?php _e( ‘Alphabetical’, ‘buddypress’ ); ?></option>
      <?php endif; ?>

      <?php

      /**
      * Fires inside the members directory member order options.
      *
      * @since 1.2.0
      */
      do_action( ‘bp_members_directory_order_options’ ); ?>
      </select>

    </div>

    <h2 class=”bp-screen-reader-text”><?php
    /* translators: accessibility text */
    _e( ‘Members directory’, ‘buddypress’ );
    ?></h2>

    <div id=”members-dir-list” class=”members dir-list”>
    <?php bp_get_template_part( ‘members/members-loop-2’ ); ?>
    </div><!– #members-dir-list –>

    <?php

    /**
    * Fires and displays the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_directory_members_content’ ); ?>

    <?php wp_nonce_field( ‘directory_members’, ‘_wpnonce-member-filter’ ); ?>

    <?php

    /**
    * Fires after the display of the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_after_directory_members_content’ ); ?>

    </form><!– #members-directory-form –>

    <?php

    /**
    * Fires after the display of the members.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_after_directory_members’ ); ?>

    </div><!– #buddypress –>

    <?php

    /**
    * Fires at the bottom of the members directory template file.
    *
    * @since 1.5.0
    */
    do_action( ‘bp_after_directory_members_page’ );

    #273175
    ma3ry
    Participant

    Thank you for the suggestion. I deactivated the XProfile plugin first and ran the backup job – still had the error, so I deactivated the BuddyPress plugin and ran the backup job again. I still have the error. I guess I’m going to have to look into this further.

    One thing I did notice when I deactivated the XProfile plugin, I retained all my current extra fields. The only one I had a problem with is birthdate. It used to show age, not birthdate. Perhaps there is a plugin that will deal with just this issue. I’ll have to look around.

    Thank you again for all your excellent help. I really appreciate it!!!!

    #273172
    ma3ry
    Participant

    Yes, I think it is the same issue as the one I originally wrote about re XProfile Custom Fields showing an error on my dashboard.

    I got the notification on the dashboard first, then I saw that my backups also had problems. I think both are related to the same plugin.

    Your solution helped with the dashboard issue. It is no longer showing.

    #273169
    Venutius
    Moderator

    I don’t think the changes I’ve made could have caused that, I only updated the version checking which is internal to the plugin and not referenced by other, and I didn’t change any data that was being recorded in the database. If you deactivate xprofile custom fields, does the problem go away?

    #273165
    ma3ry
    Participant

    Is anyone likely to update BuddyPress Xprofile Custom Fields?

    #273158
    Varun Dubey
    Participant

    @ma3ry BuddyPress Xprofile Custom Fields have some security loopholes and it will need dedicated time to fix all issues and make it compatible with the latest version.

    @venutius
    check it once if you have time. It has 6000+ active install, needs some attention.

    #273153
    Varun Dubey
    Participant

    @ma3ry there is a temp fix for BuddyPress Xprofile Custom Fields Type by @venutius you can check it.
    https://wordpress.org/support/topic/warning-breaks-with-bp-3-0/

    #273084
    Varun Dubey
    Participant

    @mckennapoole checked at your site, You have added custom css to hide mandatory fields

    remove it from custom css section

    #buddypress .standard-form #profile-details-section {
        display: none;
    }

    After that, it will work
    I have registered at your site and it worked
    https://drive.google.com/a/wbcomdesigns.com/file/d/1oLVWUD_vFJgHffHu9nXEu2x03MFvsRW5/view?usp=drivesdk

    #273044

    In reply to: members directory

    Varun Dubey
    Participant

    @emmanuel1234
    You can check

    Members Loop


    It has explained how to modify loop filtering by Xprofile fields

    #273037
    groston
    Participant

    Thanks again for the help! This post, https://buddypress.org/support/topic/how-to-customize-the-order-of-fields-of-registration/, led me to the answer: the function bp_get_the_profile_field_name() returns the ‘friendly’ name of the field, i.e., that which is defined in wp-content\plugins\<my-plugin>\include\users\profile.php as the label parameter for the field.

    #272976
    Venutius
    Moderator

    Yes that sounds about right, the page is doing a loop printing out the profile fields, so you could add an if statement dependent on the field name.

    if ( 'Name' == bp_get_the_profile_field_name() ) {
        //insert label
    }
    #272940
    RobertL4807
    Participant

    Having this custom build as a post type. Then each posts have hidden fields containing the company info. Custom page theme. Then each post has associated profile IDs. Oh, and then having profile page pull company post info that matches their profile id.
    Seems like the only way due to the gap in the current features.

    #272905
    Venutius
    Moderator

    I don’t think I can advise you. BuddyPress does not some built in with a personal description. You can add one, in Dashboard>>Users>>Profile Fields, and it would be displayed during signup and in the users Profile>>View page. However, that’s not the default landing page for a profile, so it looks like your theme is overloading the users profile, and I think your theme developers would be best placed to ask.

    #272810

    In reply to: GDPR compliance

    Varun Dubey
    Participant

    @erictracz BuddyPress will also be ready with GDPR compliance in coming updates.
    There is an ongoing discussion about it.
    https://buddypress.trac.wordpress.org/ticket/7698

    For 3rd party plugin concern, Site owners are ultimately responsible for the all the plugins they are using at their site, and they also have to understand the functionality of each plugin including their data collection and storage methods before using them.

    Regarding 3rd party BuddyPress developers, after BuddyPress GDPR compliance release they can update their plugins to hook all user specific data at BuddyPress option which allow users to delete themselves.


    @hdcms
    You can create a profile fields with terms & condition or take a look at https://wordpress.org/plugins/simple-terms-and-conditions-for-buddypress/ plugin.

Viewing 25 results - 501 through 525 (of 3,608 total)
Skip to toolbar