An embeddable AI chat widget for e-commerce websites, similar to Tawk.to or Intercom.
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>
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');