Skip to content

quochuydev/woocommerce-talk-ai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TalkAI Widget

An embeddable AI chat widget for e-commerce websites, similar to Tawk.to or Intercom.

Quick Start

Add this to your website:

<script src="https://quochuydev.github.io/woocommerce-talk-ai/widget.js"></script>
<script>
  window.TalkAIWidget.init({
    position: 'bottom-right',  // bottom-left, top-right, top-left
    theme: 'light',           // light, dark
    containerId: 'custom-id'  // optional custom container
  });
</script>

WordPress/WooCommerce

Add to your theme's functions.php:

function add_talkai_widget() {
    ?>
    <script src="https://quochuydev.github.io/woocommerce-talk-ai/widget.js"></script>
    <script>
        TalkAIWidget.init({
          apiKey: 'your-api-key-here',
          position: 'bottom-right',
          theme: 'light'
        });
    </script>
    <?php
}
add_action('wp_footer', 'add_talkai_widget');

About

Claude did it

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •