hi hi
i have embeded the pickaxe on my Wordpress site here : removed but after the user put in their first input, the section to type the next message/input can’t be accessed. (it might be too far ‘south’, off the page not seen).
any ideas on a solution for this?
THX!
I asked claude to trouble shoot it and we fixed the issue:
Here are the key changes in this version:
- Removed the
data-height="Autoauto"
and replaced it with a fixed height of 600 pixels.
- Changed the
data-width
to 350 pixels for a more standard chat window size.
- Updated the CSS to use these fixed dimensions:
- Set a fixed width of 350px and height of 600px for the chatbot container.
- Ensured the iframe inside the container takes up 100% of the container’s dimensions.
- Removed the JavaScript for dynamic resizing since we’re now using fixed dimensions.
To implement this:
- Go to your WordPress dashboard.
- Navigate to Appearance > Theme Editor.
- Find and select the footer.php file in your theme files.
- Replace the entire content of the file with the code provided above.
- Click on “Update File” to save the changes.
These changes should create a fixed-size chatbot window that stays in the bottom-right corner of the screen. The fixed size should prevent any issues with the input box disappearing, as long as it’s within the 600px height we’ve set.
2 Likes
Glad you solved the issue and thanks for sharing your solution! I hope other users struggling with how to embed AI chatbots on wordpress sites correctly and running into these issues will find it helpful.