QuackChat on Course Platforms
Add the QuackChat widget to online course platforms like Kajabi, Thinkific, and Teachable.
Platform Quick Reference
| Platform | Method | Plan Required | Difficulty |
|---|---|---|---|
| Kajabi | Settings > Tracking | Any paid | Easy |
| Thinkific | Site > Code | Pro+ | Easy |
| Teachable | Code Snippets | Pro+ | Easy |
| Podia | Settings | Any paid | Easy |
| LearnDash | WordPress theme | Any | Easy |
| Circle | Settings | Any paid | Easy |
Kajabi
Step-by-Step Installation
- Log into your Kajabi admin
- Go to Settings (gear icon)
- Click Site Details
- Scroll to Page Scripts
- In Footer Tracking Code, paste:
html
<script
src="https://www.quackchat.app/widget/quackchat-widget.js"
data-bot-id="YOUR_BOT_ID"
></script>
- Click Save
Thinkific
Step-by-Step Installation
- Log into your Thinkific admin
- Go to Settings > Code & Analytics
- In Site Footer Code, paste the widget code
- Click Save
Note: Code injection requires Thinkific Pro plan or higher.
Teachable
Step-by-Step Installation
- Log into your Teachable admin
- Go to Settings > Code Snippets
- In Footer Code, paste the widget code
- Click Save
Note: Code Snippets requires Teachable Pro plan or higher.
Podia
Step-by-Step Installation
- Log into your Podia admin
- Go to Settings > Advanced
- In Custom Code > Footer, paste the widget code
- Click Save
LearnDash (WordPress)
LearnDash runs on WordPress, so use the WordPress integration guide.
LearnDash-Specific Options
Show only on course pages:
php
add_action('wp_footer', 'add_quackchat_to_learndash');
function add_quackchat_to_learndash() {
if (is_singular(['sfwd-courses', 'sfwd-lessons', 'sfwd-topic', 'sfwd-quiz'])) {
?>
<script
src="https://www.quackchat.app/widget/quackchat-widget.js"
data-bot-id="YOUR_BOT_ID"
></script>
<?php
}
}
Use Cases for Course Platforms
Pre-Sale Support
- Answer course questions for potential students
- Explain what's included
- Handle objections
Student Support
- Help with technical issues
- Answer content questions
- Provide additional resources
Training Your Bot
For best results, train your bot on:
- Course content summaries - What each module covers
- FAQ page - Common student questions
- Technical requirements - What students need
- Refund policy - Terms and conditions
Troubleshooting
Widget doesn't appear
Cause: Code injection may require a paid plan.
Solution: Check your platform's plan features. Most require Pro/paid plans for custom code.
Widget conflicts with platform chat
Cause: Many course platforms have built-in messaging.
Solution: Disable the platform's built-in chat if using QuackChat.
Known Limitations
| Platform | Limitation |
|---|---|
| Thinkific | Requires Pro plan for code injection |
| Teachable | Requires Pro plan for code injection |
| LearnDash | Depends on WordPress theme |