Hi wplms
I updated the theme and I got an export data. export data is located in settings. Export data is unnecessary. How can I hide export data?
https://prnt.sc/lwugry
please try adding this given code in your wplms-customizer.php file in wplms customizer plugin :
function remove_export_data_bp() {
bp_core_remove_subnav_item( 'settings', 'data' );
}
add_action( 'bp_actions', 'remove_export_data_bp',99 );
export_data is no longer visible. Thank you. This problem is solved.