Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 526 through 550 (of 3,887 total)
  • Author
    Search Results
  • helgipetersen
    Participant

    Hi,

    Is it possible somehow to sort messages from som fields from extended profiles ?

    Lets say, I have a two extend fields
    Field 1: Usergender Radio buttuns = “Man or Woman”
    Field 2: User Age. Number field.

    Than I will have the possibilty to sort messages to only show messages from Woman how is 40-50 years.

    Is there a plugin or someone that can help my with that ?

    Venutius
    Moderator

    In Users>>Profile Fields there is the default profile group – Base, any profile field in this group will be on the registration form. If you create another profile group, the fields in their will not be shown on the registration form.

    Henry Wright
    Moderator

    Check out the “Displaying Extended Profile Fields on Member Profiles” article

    Displaying Extended Profile Fields on Member Profiles

    nnyorker
    Participant

    Hello folks! I would like to display extended profile fields in the member profile header area.
    Would anyone be able to point me in the right direction?
    Thanks
    Anna

    #275063
    lbellipanni
    Participant

    Hello everyone! I have updated the user’s profile fields for registration and for new users there is no problem. The problem is with the already signed up users…
    I would like to redirect users to edit profile page if some field is empty, and with a kind of alert,even a banner above the edit form section. Thank you

    #274987
    onions2578
    Participant

    I am still interested in

    If user = friend + member type {[bpps_profile_field field=”fieldname” tab=”section”]}
    specific tab (or tab fields) are shown to friends only of specific member type

    #274876
    kodrant
    Participant

    I deleted all profile fields, set new profile fields in 2 groups: Base (Primary) and Company.
    Now Company field group is not showing in the Profile page, and Base fields generate the same error when save changes is clicked.
    Plugin disabled: BP Profile Shortcodes Extra (generated many errors including fatal error)
    Plugin active: BuddyPress Xprofile Custom Field Types

    Is there proven tutorial how to successfully add more fields in BP Profile?

    #274858
    Varun Dubey
    Participant

    Ya, It will need to create the script to export data from OSSN and after you will also need to create import script for BuddyPress. For User profile and extended fields, there are some plugins which can populate BuddyPress using CSV.

    #274835
    Christian Wach
    Participant

    Why not write a plugin? Here’s one, for example, that provides third-party xProfile Fields:

    BuddyPress Xprofile Custom Field Types

    #274749
    Venutius
    Moderator

    You can add fields via Users/Profile Fields, captcha would normally be added via a plugin. To change the text what I normally do is create a custom language translation file using Poedit.

    #274700
    Venutius
    Moderator

    It’s just a blank page, the content is populated by the BP Template file – plugins/buddypress/bp-templates/bp-nouveau ( or bp-legacy) /members/register.php and this creates the structure depending on what additional profile fields you have added in Users/Profile Fields.

    #274651
    xprt007
    Participant

    Hi

    I have never actually used the feature of adding custom or editing profile fields. Under Users => Profile Fields, there’s nothing, I guess meaning none have been added manually.
    On the Edit User => Extended Profile tab, the only options there are Update Profile from pre-selected “Spammer” to “Active”, which does not work, View Profile and Edit Profile Photo.

    So I do not see where I could delete that field.

    mrditt
    Participant

    @dggerhart I was able to register for your site without a confirmation email and post “test” comment to your general group. Enabling email confirmation to register will help. Using a checkbox for your Privacy Policy GDPR compliance, is needed and will help too. I would give the Honeypot plugin a try on your staging site (disclaimer, I don’t use, and it’s old) but what it does is pretty simple so it could be ok. Admin notification of new users will help. Manually checking email addresses and questionable profiles (if you have more profile fields) will eliminate the obvious spammers and most are obvious. You can manually approve new users if that won’t be overwhelming. On a different note, you might want to block your dashboard access and you have some html tags displaying. Also a registration menu item (it was hard to figure out how to register) are some things I noticed too. I hope you find this helpful

    #274609
    shanebp
    Moderator

    Perhaps the tag is created by ‘Autolink’ ?

    You can disable Autolink by going to wp-admin > Users > Profile Fields > your field and look for ‘Autolink’ in the right-side column.

    Then you could write a filter function to create a custom tag.

    Or you could not disable autolink and write a filter function to change the text in the tag.

    Christian Clark
    Participant

    I’m currently trying to build on top of the BP Search plugin. It allows for the searching of BuddyPress fields, but when the results appear, it only shows the member’s name and activity, not the actual profile field details.

    I’ve also been trying to set up conditional logic that allows the fields to populate options depending on a previous field choice.

    An example is seen here:

    https://evo.nsr-inc.com/prospect_search?show=results&pageSize=50&activeSort=lastUpdated&sortDir=desc

    Notice that the “Position” Field doesn’t display without the “Sport” field being entered.

    – On a sidenote, I’ve found an advanced search called UsersInsights, It claims to be compatible with BuddyPress. Perhaps this could be a potential solution to both of my issues, but I’m currently inquiring through email to see if it is. Has anyone used this before?

    Search and Filter Your BuddyPress User Data

    masterfulmistakes
    Participant

    Good morning! I’m running a job site for a specific industry. The industry includes specific jobs in several categories. On my site, I’ve got a custom post type with a post for each job title and these are sorted into a custom taxonomy of job type categories.

    Users have two drop-down xprofile fields where they can declare the two job titles in which they usually work. These drop-downs are populated with the titles of the job title custom post type. So, each user can select two job titles under which they can be listed.

    I have a page which lists the job titles, sorted by their categories. Each title is linked to a BuddyPress search for users who have listed that job title on their profile. You can see the gist of that here:

    /***  List Uers by Job Title  ***/
    add_shortcode ( "list-users-by-job-links", "list_users_by_job_links_shortcode" );
    function list_users_by_job_links_shortcode() {
            echo '<div class="newspaper-3 users-by-job-list">';
            $custom_terms = get_terms('job_category');
            foreach($custom_terms as $custom_term) {
                    wp_reset_query();
                    $args = array(
                            'post_type' => 'job-title',
                            'tax_query' => array(
                                    array(
                                            'taxonomy' => 'job_category',
                                            'field' => 'slug',
                                            'terms' => $custom_term->slug,
                                    ),
                            ),
                    );
                    $query = new WP_Query($args);
                    if($query->have_posts()) {
                            echo '<h2>'.$custom_term->name.'</h2>';
                            while($query->have_posts()) : $query->the_post();
                                    echo '<h3><a href="https://obfuscated.com/members/?members_search=' . get_the_ID() . '">' . get_the_title() . '</a></h3>';
                            endwhile;
                    }
            }
            echo '</div>';
            wp_reset_postdata();
    }

    The page where I’ve used this shortcode is highly utilized and I’ve been requested to create one that will list the uers who have any job title within a certain category.

    But, I can’t find a way to do an ‘OR’ search in the members search. Is there a way to do something like this to search for users with any of the searched ids on their member profiles?
    https://obfuscated.com/members/?members_search=3147+or+3187+or+3189+or+3192

    I’m newish to PHP and WordPress, so I’m having some trouble figuring this out, but there’s another method of which I’m thinking. Loop though each custom post within a category, return a list of user_ids where each job title from that category appears, and concatenate them into a big list. Then, do a BP user query that filters by that list of user_ids.

    Would either of these be a feasible method of acheiving my goal? Any hints on where to start if the second method is the only viable method?

    Let me know if any more information would be helpful! Thanks very much for any tips or hints you can provide!

    #274374
    r-a-y
    Keymaster

    The strings “admin” and “firstname-lastname” are no present in the respective user profiles. Those phrases ONLY exist as the @-mention name that appears in the profile page across from the picture.

    You kind of answered your own question.

    The at-mention name uses the user_nicename field from the wp_users database table. This can differ from the display name. The user_nicename info also isn’t exposed in the WordPress admin dashboard, which is why you might be confused.

    If a user registered manually on your site, this would be the Username that they enter on the registration page. If you imported a bunch of users from another system, check your database with a web app like phpMyAdmin or Adminer. You can also use a command-line tool like wp-cli to view the user fields:

    wp user list

    You can also try using a plugin like Edit Author Slug if you want the ability to edit the user_nicename field, but use with caution (untested):

    Edit Author Slug

    Test in a local environment before deploying on your live site.

    #274231
    Venutius
    Moderator

    Work for me, also it’s the type of issue where I’d be thinking “do I have a plugin that’s checking to see if those fields are there and recreating them every time I delete them?” since creating a specific profile field is not something built into the BP code.

    So the first questin is have you tried deactivating all plugins and seeing if the issue is unchanged?

    #274215
    onions2578
    Participant

    you could setup another buddypress site and use sync users to it https://premium.wpmudev.org/project/wordpress-user-synchronization/
    and then ask users to share their info to experts there,
    and rename to friends to experts, and all the profile fields default to share with experts only
    works for me 🙂 and is better than what I had in mind

    p.s.
    redirect registration to master site due to plugin one way sync

    robintime
    Participant

    Hi, all. I just installed recently and I’m “kicking the tires” so to speak, and maybe I’ve just been looking in the wrong place for the answer to this question. It was easy to add customized fields for the profile used in the creation of a new account, but I would like to insert some text above the fields and I can’t figure out how to do that or where. Any suggestions or ideas? Thank you very much!

    #274140
    onions2578
    Participant
    onions2578
    Participant

    Support Admin can login and see all the “Admin (only me) profile fields”(that I am going to rename to Support Admin) and “hidden groups” but can not edit site/pages/plugins as normal admin
    Also can not edit the profile fields or groups, although I would also like to make fields that both Support Admin and member can each edit on member profile

    lz430
    Participant

    Hey everyone,
    I have a membership site. It’s running Woocommerce, WP 4.9.6 and Buddypress 3.0.0. My BuddyPress status is below.

    I’m having a problem when someone is choosing a any kind of membership(I only have free and 1 paid at the moment). When they get to the billing screen they can either use Facebook or Google to login and fill in the details.

    Once they do that, Buddypress redirects them to their wall. I want them to be able to continue the checkout process. I’ve tried so many things, but can’t override it.

    Please help!

    
    ### WordPress Environment ###
    
    Home URL: http://www.specialtactics.global
    Site URL: http://www.specialtactics.global
    WC Version: 3.4.1
    Log Directory Writable: ✔
    WP Version: 4.9.6
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 7.1.16 - We recommend using PHP version 7.2 or above for greater performance and security. How to update your PHP version
    PHP Post Max Size: 128 MB
    PHP Time Limit: 3000
    PHP Max Input Vars: 1000
    cURL Version: 7.54.0
    OpenSSL/1.0.2k
    
    SUHOSIN Installed: –
    MySQL Version: 5.6.39-cll-lve
    Max Upload Size: 128 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 3.4.1
    WC Database Prefix: wp_
    MaxMind GeoIP Database: ✔
    Total Database Size: 11.24MB
    Database Data Size: 10.10MB
    Database Index Size: 1.14MB
    wp_woocommerce_sessions: Data: 0.04MB + Index: 0.00MB
    wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_order_items: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_order_itemmeta: Data: 0.00MB + Index: 0.01MB
    wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB
    ts_redirects: Data: 0.00MB + Index: 0.00MB
    wp_achievements: Data: 0.02MB + Index: 0.01MB
    wp_bp_activity: Data: 0.01MB + Index: 0.01MB
    wp_bp_activity_meta: Data: 0.00MB + Index: 0.01MB
    wp_bp_friends: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups_groupmeta: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups_members: Data: 0.00MB + Index: 0.00MB
    wp_bp_links: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_categories: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_linkmeta: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_votes: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_drafts: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_labels: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_label_message: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_messages: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_meta: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_notices: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_recipients: Data: 0.00MB + Index: 0.00MB
    wp_bp_notifications: Data: 0.00MB + Index: 0.00MB
    wp_bp_notifications_meta: Data: 0.00MB + Index: 0.00MB
    wp_bp_user_blogs: Data: 0.00MB + Index: 0.00MB
    wp_bp_user_blogs_blogmeta: Data: 0.00MB + Index: 0.01MB
    wp_bp_xprofile_data: Data: 0.00MB + Index: 0.00MB
    wp_bp_xprofile_fields: Data: 0.03MB + Index: 0.05MB
    wp_bp_xprofile_groups: Data: 0.00MB + Index: 0.00MB
    wp_bp_xprofile_meta: Data: 0.01MB + Index: 0.02MB
    wp_buddyboss_media: Data: 0.00MB + Index: 0.00MB
    wp_buddyboss_media_albums: Data: 0.00MB + Index: 0.00MB
    wp_commentmeta: Data: 0.00MB + Index: 0.01MB
    wp_comments: Data: 0.01MB + Index: 0.01MB
    wp_gde_profiles: Data: 0.00MB + Index: 0.00MB
    wp_gde_secure: Data: 0.00MB + Index: 0.00MB
    wp_learndash_user_activity: Data: 0.01MB + Index: 0.03MB
    wp_learndash_user_activity_meta: Data: 0.04MB + Index: 0.03MB
    wp_links: Data: 0.00MB + Index: 0.00MB
    wp_options: Data: 2.97MB + Index: 0.09MB
    wp_pmpro_discount_codes: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_discount_codes_levels: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_discount_codes_uses: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_categories: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_pages: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_users: Data: 0.00MB + Index: 0.01MB
    wp_pmpro_membership_levelmeta: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_membership_levels: Data: 0.00MB + Index: 0.01MB
    wp_pmpro_membership_orders: Data: 0.00MB + Index: 0.02MB
    wp_pmxi_files: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_history: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_imports: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_posts: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_templates: Data: 0.00MB + Index: 0.00MB
    wp_postmeta: Data: 0.83MB + Index: 0.21MB
    wp_posts: Data: 2.47MB + Index: 0.17MB
    wp_pp_login_builder: Data: 0.01MB + Index: 0.00MB
    wp_pp_password_reset_builder: Data: 0.01MB + Index: 0.00MB
    wp_pp_registration_builder: Data: 0.01MB + Index: 0.00MB
    wp_revslider_css: Data: 0.09MB + Index: 0.00MB
    wp_revslider_layer_animations: Data: 0.00MB + Index: 0.00MB
    wp_revslider_navigations: Data: 0.00MB + Index: 0.00MB
    wp_revslider_sliders: Data: 0.02MB + Index: 0.00MB
    wp_revslider_slides: Data: 0.18MB + Index: 0.00MB
    wp_revslider_static_slides: Data: 0.00MB + Index: 0.00MB
    wp_signups: Data: 0.00MB + Index: 0.00MB
    wp_social_users: Data: 0.00MB + Index: 0.00MB
    wp_termmeta: Data: 0.00MB + Index: 0.01MB
    wp_terms: Data: 0.00MB + Index: 0.01MB
    wp_term_relationships: Data: 0.00MB + Index: 0.01MB
    wp_term_taxonomy: Data: 0.00MB + Index: 0.01MB
    wp_usermeta: Data: 0.05MB + Index: 0.04MB
    wp_users: Data: 0.00MB + Index: 0.01MB
    wp_waiting: Data: 0.00MB + Index: 0.00MB
    wp_wc_download_log: Data: 0.00MB + Index: 0.00MB
    wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB
    wp_wfBadLeechers: Data: 0.00MB + Index: 0.00MB
    wp_wfBlockedCommentLog: Data: 0.00MB + Index: 0.00MB
    wp_wfBlockedIPLog: Data: 0.00MB + Index: 0.00MB
    wp_wfBlocks7: Data: 0.00MB + Index: 0.00MB
    wp_wfConfig: Data: 0.36MB + Index: 0.01MB
    wp_wfCrawlers: Data: 0.00MB + Index: 0.00MB
    wp_wfFileChanges: Data: 0.00MB + Index: 0.00MB
    wp_wfFileMods: Data: 0.48MB + Index: 0.11MB
    wp_wfHits: Data: 0.14MB + Index: 0.03MB
    wp_wfHoover: Data: 0.00MB + Index: 0.00MB
    wp_wfIssues: Data: 0.00MB + Index: 0.00MB
    wp_wfKnownFileList: Data: 0.97MB + Index: 0.12MB
    wp_wfLeechers: Data: 0.00MB + Index: 0.01MB
    wp_wfLiveTrafficHuman: Data: 0.00MB + Index: 0.00MB
    wp_wfLocs: Data: 0.00MB + Index: 0.00MB
    wp_wfLogins: Data: 0.01MB + Index: 0.00MB
    wp_wfNet404s: Data: 0.00MB + Index: 0.00MB
    wp_wfNotifications: Data: 0.00MB + Index: 0.00MB
    wp_wfPendingIssues: Data: 0.00MB + Index: 0.00MB
    wp_wfReverseCache: Data: 0.00MB + Index: 0.00MB
    wp_wfScanners: Data: 0.00MB + Index: 0.00MB
    wp_wfSNIPCache: Data: 0.00MB + Index: 0.00MB
    wp_wfStatus: Data: 0.06MB + Index: 0.03MB
    wp_wfVulnScanners: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_category: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_form: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_lock: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_master: Data: 0.02MB + Index: 0.00MB
    wp_wp_pro_quiz_prerequisite: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_question: Data: 1.24MB + Index: 0.03MB
    wp_wp_pro_quiz_statistic: Data: 0.01MB + Index: 0.00MB
    wp_wp_pro_quiz_statistic_ref: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_template: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_toplist: Data: 0.00MB + Index: 0.00MB
    wp_wsluserscontacts: Data: 0.00MB + Index: 0.00MB
    wp_wslusersprofiles: Data: 0.00MB + Index: 0.00MB
    
    ### Post Type Counts ###
    
    attachment: 121
    bmt-member-type: 4
    bp-email: 32
    cdfc: 1
    condition_group: 1
    custom_css: 1
    customize_changeset: 9
    forum: 1
    jetpack_migration: 2
    mc4wp-form: 1
    nav_menu_item: 33
    page: 39
    post: 24
    product: 12
    revision: 1003
    scheduled-action: 16
    sfwd-certificates: 1
    sfwd-courses: 7
    sfwd-lessons: 36
    sfwd-quiz: 38
    sfwd-topic: 147
    shop_order: 7
    shop_subscription: 5
    sidebar: 1
    sp_wps_shortcodes: 1
    topic: 4
    wc_membership_plan: 6
    wcps: 1
    woocarousel: 1
    wpachievements: 3
    wpcf7_contact_form: 1
    wpe_product_carousel: 1
    yith_wcps_type: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ❌
    					Your store is not using HTTPS. Learn more about HTTPS and SSL Certificates.
    Hide errors from visitors: ✔
    
    ### Active Plugins (50) ###
    
    Addons for WPBakery Page Builder: by Livemesh – 1.9.1
    Akismet Anti-Spam: by Automattic – 4.0.7
    bbPress: by The bbPress Community – 2.5.14
    Better Search Replace: by Delicious Brains – 1.3.2
    Boss for LearnDash: by BuddyBoss – 1.3.0
    BP Redirect To Profile: by Brajesh Singh – 1.2.2
    BuddyBoss Inbox: by BuddyBoss – 1.1.3
    BuddyBoss Media: by BuddyBoss – 3.2.4
    BuddyBoss One Click Installer: by BuddyBoss – 1.0.6
    BuddyBoss Wall: by BuddyBoss – 1.3.3
    BuddyPress for LearnDash: by BuddyBoss – 1.2.4
    BuddyPress Member Types: by BuddyBoss – 1.1.2
    BuddyPress: by The BuddyPress Community – 3.0.0
    Contact Form 7: by Takayuki Miyoshi – 5.0.2
    Force HTTPS: by LittleBizzy – 1.0.6
    Google Doc Embedder: by Kevin Davis
    Dan Lester – 2.6.4
    
    Insert or Embed Articulate Content into WordPress Trial: by Brian Batt – 4.292
    WPBakery Page Builder: by Michael M - WPBakery.com – 5.4.7
    LearnDash Content Cloner: by WisdmLabs – 1.2.2
    LearnDash & bbPress Integration: by LearnDash – 2.0.2.1
    LearnDash Course Grid: by LearnDash – 1.4.1
    LearnDash ProPanel: by LearnDash – 2.1.3
    LearnDash WooCommerce Integration: by LearnDash – 1.4.0 – Not tested with the active version of WooCommerce
    Mega Addons For Visual Composer: by Nasir – 2.2
    Nextend Social Login: by Nextendweb – 3.0.10
    Nextend Social Login Pro Addon: by Nextendweb – 3.0.8
    WooCommerce Product Carousel Slider: by ADL Plugins – 3.0.2 – Not tested with the active version of WooCommerce
    Restrict Content: by Pippin Williamson – 2.2.3
    Slider Revolution: by ThemePunch – 5.4.7.3
    LearnDash LMS: by LearnDash – 2.5.8.2
    Simple Buddypress Profile Privacy: by Justin Hansen – 0.7.7
    String Locator: by Clorith – 2.3.0
    Theme My Login: by Jeff Farthing – 6.4.16
    Uncanny LearnDash Toolkit: by Uncanny Owl – 2.4.2
    Uncanny LearnDash Toolkit Pro: by Uncanny Owl – 2.3.1
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 1.14.11
    
    Essential WPBakery Page Builder (formerly Visual Composer) Addons: by themebon – 1.9.1
    Waiting: by Plugin Builders – 0.4.5
    WC4BP -> WooCommerce BuddyPress Integration (Premium): by ThemeKraft – 3.1.4 – Not tested with the active version of WooCommerce
    WC4BP -> Subscriptions: by ThemeKraft – 1.1.0 – Not tested with the active version of WooCommerce
    WC4BP -> BuddyPress xProfile Checkout Manager: by ThemeKraft – 1.3.0 – Not tested with the active version of WooCommerce
    WooCommerce Colors: by WooThemes – 1.0.7 – Not tested with the active version of WooCommerce
    WooCommerce PayPal Express Checkout Gateway: by WooCommerce – 1.5.5
    WooCommerce Stripe Gateway: by WooCommerce – 4.1.6
    WooCommerce Memberships: by SkyVerge – 1.10.4
    WooCommerce Social Login: by SkyVerge – 2.5.2
    WooCommerce Subscriptions: by Prospress Inc. – 2.2.21
    WooCommerce: by Automattic – 3.4.1 – 3.4.2 is available
    WP File Manager: by mndpsingh287 – 2.7
    WP Rollback: by WordImpress – 1.5
    
    ### Settings ###
    
    API Enabled: ✔
    Force SSL: ✔
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: course (course)
    external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    ### WC Pages ###
    
    Shop base: ❌ Page not set
    Cart: #562 - /cart/
    Checkout: #9648 - /woocommerce-checkout/
    My account: #9671 - /membership/
    Terms and conditions: ❌ Page not set
    
    ### Theme ###
    
    Name: Boss. Child Theme
    Version: 2.4.3
    Author URL: http://www.buddyboss.com
    Child Theme: ✔
    Parent Theme Name: Boss.
    Parent Theme Version: 2.4.6
    Parent Theme Author URL: https://www.buddyboss.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: –
    
    ### subscriptions ###
    
    WCS_DEBUG: ✔
    						No
    Subscriptions Mode: ✔
    						Live
    Subscriptions Template Theme Overrides: –
    Report Cache Enabled: ✔
    						Yes
    Cache Update Failures: ✔
    						0 failure
    
    dennis.cabasal
    Participant

    Hi Varun,

    Thank you so much for the reply.

    I did the testing with and without Buddypress Xprofile custom fields type on both versions (Version 1.0.0 and Version 2.6.3) but no luck on getting the front-end User profile SETTINGS to work (not displaying the settings page)

    Also I even do the testing with newly install wordpress-4.9.6 and buddypress 3.0.0 only but still no luck as well on getting the front-end User profile SETTINGS to work (not displaying the settings page)

    But when I try using the buddypress Version 2.9.3 and with xprofile custom fields type with versions: 1.0.0 and 2.6.3 all are working properly.

    I dont know if the said issues is on buddypress version 3.0.0 that is not displaying the front-end users profile Settings page (General and Profile Visibility tab)

    Thank you so much.

    Best regards,
    Dennis

Viewing 25 results - 526 through 550 (of 3,887 total)
Skip to toolbar