Additional PRO Hooks
Actions
add_action( 'stm_lms_admin_after_wrapper_start', 'stm_lms_admin_after_wrapper_start_function', 10, 1 );
function stm_lms_admin_after_wrapper_start_function( $current_user ) {
if ( $current_user ) {
ob_start();
include plugin_dir_path( __FILE__ ) . '/admin/template/custom-template.php';
$content = ob_get_clean();
echo $content;
}
}Filters
Addons Settings
Course Completion Messages
Last updated
Was this helpful?

