Обратно към таблото

Документация

Научете как да използвате Asyntai

Функции
Сканиране на уебсайт Пропуски в знанията Продуктови карти Динамични продуктови карти Dynamic Images Потребителски контекст Персонализирани инструменти Параметри на връзки Наблюдение на живо Поемане от човек Ескалация ИИ известия Дневен отчет Поток от данни в реално време Максимален поток от данни в реално време Членове на екипа Единичен вход (SSO) Двуфакторна автентикация Включване на изображения Визуално разпознаване на изображения Приспособление за превод Локализация Прозрачност на ИИ Потенциални клиенти Интелигентно събиране на контакти Тикети за поддръжка Резервации Вграждания Изключване на страници Блокирани IP адреси Политика за съхранение Режим нулево съхранение Маскиране на PII Класификатор на отговорите Access Tags Фиксиране на версията на приспособлението Одиторски дневник По-умен модел Активиране на мислене Предложения за отговор Последващи съобщения Реч към текст Изтегляне на стенограма Вграден чат

How to Add Asyntai AI Chatbot to LifterLMS

Step-by-step guide for LifterLMS course sites

Вземете код за вграждане

Стъпка 1: Вземете вашия код за вграждане

Първо отидете на вашето Табло за управление на Asyntai и превъртете надолу до секцията "Код за вграждане". Копирайте уникалния си код за вграждане, който ще изглежда така:

<script>(function(){var l=function(){var s=document.createElement("script");s.src="https://widget.asyntai.com/static/js/chat-widget.js";s.async=true;s.setAttribute("data-asyntai-id","YOUR_WIDGET_ID");document.head.appendChild(s)};if(document.readyState==="complete"){l()}else{window.addEventListener("load",l)}})();</script>

Забележка: Кодът по-горе е само пример. Трябва да копирате собствения си уникален код за вграждане от вашето Табло за управление, тъй като съдържа вашия личен ID на уиджета.

Step 2: Add the Code with a Header/Footer Plugin (Recommended)

LifterLMS runs on WordPress, so the easiest way to add your embed code to every page is with a free scripts plugin such as WPCode or Insert Headers and Footers. No coding or theme editing required:

  1. Log in to your WordPress Admin dashboard (the same dashboard you use to manage your LifterLMS courses)
  2. Go to Plugins → Add New, search for WPCode (or Insert Headers and Footers), then click Install Now and Activate
  3. Open Code Snippets → Header & Footer (in older versions, go to Settings → Insert Headers and Footers)
  4. Paste your Asyntai embed code into the Footer box — this outputs the script just before the closing </body> tag on every page
  5. Click Save Changes

Съвет: The Footer field runs the script right before the closing </body> tag on every page, which gives the best load performance and shows the chatbot across all your courses, lessons, and membership pages automatically.

Alternative Method 1: Edit Your Theme's footer.php

If you prefer not to install a plugin, you can add the code directly using the WordPress wp_footer hook, which fires just before the closing </body> tag. Always use a child theme so your changes survive theme updates:

  1. In your WordPress Admin, go to Appearance → Theme File Editor (or edit files via FTP/your host's file manager)
  2. Select your child theme, then open the footer.php file
  3. Find the <?php wp_footer(); ?> call near the bottom of the file
  4. Paste your Asyntai embed code on the line just before <?php wp_footer(); ?>
  5. Click Update File to save

Alternatively, add the snippet through your child theme's functions.php using the wp_footer action so it loads on every page:

<?php add_action('wp_footer', function() { ?> <script>(function(){var l=function(){var s=document.createElement("script");s.src="https://widget.asyntai.com/static/js/chat-widget.js";s.async=true;s.setAttribute("data-asyntai-id","YOUR_WIDGET_ID");document.head.appendChild(s)};if(document.readyState==="complete"){l()}else{window.addEventListener("load",l)}})();</script> <?php });

Важно: Always edit a child theme, not the parent theme. Changes made to a parent theme's files are lost the next time the theme is updated. Back up footer.php or functions.php before editing.

Alternative Method 2: Theme's Built-in Custom Scripts Setting

Many modern WordPress themes (such as Astra, GeneratePress, Kadence, and OceanWP, which are popular with LifterLMS course sites) include a built-in field for custom scripts, so you don't need a separate plugin:

  1. Check your theme's options panel or the Customizer under Appearance → Customize
  2. Look for a section named Custom Code, Custom Scripts, Footer Scripts, or Hooks
  3. Paste your Asyntai embed code into the Footer or Before </body> field
  4. Click Publish or Save to apply the change site-wide

Забележка: Not every theme includes this setting, and the exact wording varies. If you can't find a custom scripts field, use the header/footer plugin method above — it works with any theme.

Стъпка 3: Проверка на инсталацията

After saving your changes, open your LifterLMS course site in a new browser tab or incognito window. You should see the chat widget button in the bottom right corner. Click it to ensure it opens and functions correctly.

Не виждате уиджета? Make sure you've saved your changes. Clear your browser cache or view in incognito mode. WordPress caching or performance plugins may serve an older version of the page, so clear any site cache and wait a few minutes. Check the browser console (F12) for any JavaScript errors.

Нуждаете се от помощ?

If you're not comfortable editing theme files, the header/footer plugin method requires no code at all. You can also contact Asyntai support for guidance on installing the chatbot on your LifterLMS course site.

Професионална поддръжка: If you need professional assistance with theme modifications or complex customizations, a WordPress developer or your hosting provider can add the embed code for you.