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
- Host: GitHub
- URL: https://github.com/quochuydev/woocommerce-talk-ai
- Owner: quochuydev
- License: mit
- Created: 2025-08-04T03:53:16.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-04T05:44:09.000Z (10 months ago)
- Last Synced: 2025-08-04T07:30:04.401Z (10 months ago)
- Language: TypeScript
- Homepage: https://quochuydev.github.io/woocommerce-talk-ai/
- Size: 75.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
});