BuddyPress: How do you hide profile Export Data link?

Report
Question

Please briefly explain why you feel this question should be reported.

Report
Cancel

Answer ( 1 )

    0
    2023-09-30T15:44:30-05:00

    Please briefly explain why you feel this answer should be reported.

    Report
    Cancel
    add_filter( 'bp_settings_show_user_data_page', 'venutius_remove_data_page' );
    
    function venutius_remove_data_page($filter) {
        return false;
    }

     

    Source: https://buddypress.org/support/topic/how-to-hide-export-data-in-user-profile-settings/

Leave an answer

Browse

By answering, you agree to the Terms of Service and Privacy Policy.