Below tip disables the print button in Unit in courses.
Note this only disables the inbuilt print, the user can always use the browser print or take a screenshot and print it.
add_filter('wplms_unit_print_button','disable_print_in_unit'); function disable_print_in_unit($p){ return ''; }