Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Md. Jobayer Al Mahmud

    (@jobayertuser)

    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

    Thread Starter face2005

    (@face2005)

    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 month, 3 weeks ago by face2005.
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.