An open API service indexing awesome lists of open source software.

https://github.com/quochuydev/woocommerce-talk-ai

Claude did it
https://github.com/quochuydev/woocommerce-talk-ai

Last synced: 9 months ago
JSON representation

Claude did it

Awesome Lists containing this project

README

          

# TalkAI Widget

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

## Quick Start

Add this to your website:

```html

window.TalkAIWidget.init({
position: 'bottom-right', // bottom-left, top-right, top-left
theme: 'light', // light, dark
containerId: 'custom-id' // optional custom container
});

```

## WordPress/WooCommerce

Add to your theme's `functions.php`:

```php
function add_talkai_widget() {
?>


TalkAIWidget.init({
apiKey: 'your-api-key-here',
position: 'bottom-right',
theme: 'light'
});