Takaisin hallintapaneeliin

Dokumentaatio

Opi käyttämään Asyntai

How to Add Asyntai AI Chatbot to LifterLMS

Step-by-step guide for LifterLMS course sites

Hae upotuskoodi

Vaihe 1: Hanki upotuskoodisi

Siirry ensin Asyntai-hallintapaneeliin ja vieritä alas "Upotuskoodi"-osioon. Kopioi yksilöllinen upotuskoodisi, joka näyttää tältä:

<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>

Huomautus: Yllä oleva koodi on vain esimerkki. Sinun on kopioitava oma yksilöllinen upotuskoodisi Hallintapaneelistasi, sillä se sisältää henkilökohtaisen widget-tunnuksesi.

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

Vinkki: 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 });

Tärkeää: 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

Huomautus: 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.

Vaihe 3: Vahvista asennus

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.

Etkö näe widgetiä? 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.

Tarvitsetko apua?

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.

Ammattimainen tuki: 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.