Add AI Chat to WordPress
Add intelligent chat capabilities to your WordPress site in minutes.
MagicChat's official WordPress plugin makes it easy to add AI-powered chat to your site. The plugin works with any WordPress theme and is WooCommerce ready.
- Easy Installation - Install directly from the WordPress plugin directory.
- WooCommerce Ready - Seamless integration with your online store.
- Customizable - Adjust appearance and behavior through the WordPress admin.
Installation
- Go to Plugins > Add New in your WordPress admin
- Search for "MagicChat AI"
- Click "Install Now" then "Activate"
- Navigate to MagicChat settings and enter your bot ID
Manual Installation
// Add to functions.php or a "Code Snippets" plugin.
// Replace YOUR_BOT_ID with the Bot ID from your bot's Embed tab.
function add_magicchat() { ?>
<script async
src="https://www.magicchat.ai/widgets/loader.js"
data-bot-id="YOUR_BOT_ID"
data-color="#111827"
data-position="right"></script>
<?php }
add_action('wp_footer', 'add_magicchat');