Dashboard

The action hooks mentioned in this document can be found inside tutor/templates/dashboard

create-course.php

do_action('tutor_load_template_before', 'dashboard.create-course', null);
do_action('tutor/dashboard_course_builder_before');
do_action('tutor/dashboard_course_builder_form_field_before');
do_action('tutor/frontend_course_edit/after/description', $post);
do_action('tutor/dashboard_course_builder_form_field_after');
do_action('tutor/dashboard_course_builder_after');
do_action('tutor_load_template_after', 'dashboard.create-course', null);

index.php

do_action('tutor_dashboard/before/wrap');
do_action('tutor_load_dashboard_template_before', $dashboard_page_name);
do_action('tutor_load_dashboard_template_before', $dashboard_page_name);
do_action('tutor_dashboard/after/wrap');

my-quiz-attempts.php

do_action('tutor_quiz/my_attempts/table/thead/col');
do_action('tutor_quiz/my_attempts/table/tbody/col');

quiz-attempts.php

do_action('tutor_quiz/my_attempts/table/thead/col');
do_action('tutor_quiz/my_attempts/table/tbody/col');

wishlist.php

do_action('tutor_course/archive/before_loop_course');
do_action('tutor_course/archive/after_loop_course');

withdraw.php

do_action('tutor_withdraw_form_before');
do_action('tutor_withdraw_form_after');

Was this helpful?