=== Chatbot FAQ ===

Contributors:       Attila Ilyes
Tags:               FAQ, Chat, Widget, Chatbot, Customization, WordPress
Requires at least:  5.2
Tested up to:       6.7
Requires PHP:       5.6
Stable tag:         1.0.7
License:            GPLv2 or later
License URI:        https://www.gnu.org/licenses/gpl-2.0.html

== Short Description ==
A simple plugin for frequently asked questions in a chat format with several customization options, aiming to achieve a straightforward module without complicating or cluttering too much.

== Description ==
Chatbot FAQ is a plugin that helps you add a chat-based FAQ system to your WordPress site. Users can interact with a chatbot interface to view frequently asked questions and their answers.

Customization options beyond basic questions and answers:
- Background color of the questions.
- Background color of the answers.
- Color of the question text.
- Color of the answer text.
- Chat icon: You can choose from 4 default icons or upload a custom icon.
- Chat width customization for both desktop and mobile separately.

The plugin is designed to be simple and user-friendly, with minimal clutter. It integrates seamlessly into WordPress, offering easy-to-use settings for customizing your FAQ chatbot.

== Installation ==
1. Upload `chatbot-faq` to the `/wp-content/plugins/` directory.
2. Activate the plugin through the 'Plugins' menu in WordPress.

== Settings ==
After activation, go to **Settings** > **Chatbot FAQ** in the WordPress admin panel to configure your FAQ chatbot. You can adjust the following settings:
- FAQ Title
- Enable/Disable Chatbot
- Customize Colors (Background and Text)
- Upload a Custom Icon for the Chatbot
- Set the Chat Width on Desktop and Mobile

== Frequently Asked Questions ==

= Can I use HTML in questions or answers? =
No, HTML is not supported. However, you can use Markdown syntax for formatting. [Here is a basic guide to Markdown syntax](https://www.markdownguide.org/basic-syntax/).

= Can I add more than one FAQ? =
Yes, you can add multiple questions and answers through the plugin settings page. Simply add new FAQ items using the form in the admin panel.

= Will this plugin conflict with other plugins? =
There may be conflicts with other plugins that use similar resources (such as memory). If you encounter errors with other plugins (like WPForms), try deactivating one of them to resolve the issue. More information is available in the **Known Issues** section.

== Known Issues ==

= Conflict with WPForms =
When both `Chatbot FAQ` and `WPForms` are activated, there may be issues with memory usage, leading to fatal errors in the admin area. The conflict can be resolved by deactivating one of the plugins or increasing PHP memory limits.

= Memory Usage Issues =
If you experience memory-related errors, you may need to increase the PHP memory limit. This can be done by adding the following lines to your `wp-config.php` file:
```php
define('WP_MEMORY_LIMIT', '256M');
define('WP_MAX_MEMORY_LIMIT', '512M');
