i want to Remove COMMISSIONS button from Instructor Dashboard. Please note that we will give COMMISSIONS to the instructor, just want to hide this button from there dashboard. Check screenshot.
URL HERE
hi
it seems like this is version 3!
Do not set any commissions in wp-admin => lms -> settings -> commissions .set commission to be 0 for all instructors
also set 0 in wp-admin ->wplms -> miscellaneous -> commission.
For removing from the profile tab
paste in wp-admin > Plugins > Editor > Select WPLMS Customizer Plugin > wplms-customizer.php
add_action( ‘bp_actions’, ‘remove_commissions_profile_tabs’, 999);
function remove_commissions_profile_tabs() {
global $bp;
bp_core_remove_nav_item( ‘commissions’ ); //for comissions tab removal
}