Skip to:
Content
Pages
Categories
Search
Top
Bottom

[resolved] User signup information becomes links to nothing??

Viewing 2 replies - 1 through 2 (of 2 total)

  • 9087877
    Inactive

    @jloc14 Install and activate @modemlooper ‘s BuddyPress Extended Settings plugin from here https://buddypress.org/community/groups/buddypress-extended-settings/
    In the dashboard go to BuddyPress/Extended Settings put a check beside “Profile Field Links Disable auto linking of user profile fields” and at the bottom click “Save Changes.” This will remove the auto linking of those profile fields. Alternatively you can create a file named bp-custom.php and place it in the plugins directory and copy and paste in the below code:
    `<?php
    // hacks and mods will go here
    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
    }
    add_action( ‘bp_init’, ‘remove_xprofile_links’ );
    ?>`
    Save the file and this will accomplish the same goal.


    JLent.
    Participant

    @jloc14

    Ok. I had I had the Extended setting plugin already. It worked thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[resolved] User signup information becomes links to nothing??’ is closed to new replies.
Skip to toolbar