Hi @face2005
If you would like to add any event hook based on your third lesson then unfortunately, we do not have any option to add any event based on this condition. If I am wrong, please give me more details what kind of event you want to add.
Best Regards,
Jobayer
add_action(‘tutor_lesson_completed_after’, ‘check_lesson_completion’, 10, 1);
function check_lesson_completion($lesson_id) {
$third_lesson_id = 215;
// Проверяем, если это третий урок
if ($lesson_id == $third_lesson_id) {
// Устанавливаем cookie для последующей проверки в JavaScript
setcookie(‘show_console_log’, ‘true’, time() + 3600, ‘/’); // Cookie на 1 час
}
}
-
This reply was modified 1 year, 8 months ago by
face2005.