Hi!
I have custom section that I want to add in the course details box. However I cannot find the correct hook to place it in the location that I want.
I would like to get it as follows: http://prntscr.com/kaazdo
Kind regards
@dantwah
This is the hook which will show your stuff after course button
wplms_after_course_button_form
Thanks for the response.
I tried it but it does not work unfortunately.
@dantwah,
You have to add the code in customizer Plugin. Go to wp-admin > Plugins > editor > Select WPLMS Customizer Plugin > wplms-customizer.php
add_action('wplms_after_course_button_form','show_something_in_course_detail',999);
function show_something_in_course_detail(){
//your code for that box
}