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

  1. Go to Plugins > Add New in your WordPress admin
  2. Search for "MagicChat AI"
  3. Click "Install Now" then "Activate"
  4. 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');