> ## Documentation Index
> Fetch the complete documentation index at: https://docs.converse.vitxi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Bot Installation FAQs

> This section contains the FAQs related to the installation of various type of bot

<AccordionGroup>
  <Accordion title="How to install website bot using javascript">
    Copy the Javascript code from the  Converse app & Go to

    1. our website's HTML code.
    2. Paste the script in the head or body tag of your HTML code

    **Please Note**

    1. Ensure that you paste the script before the tag is closed, i.e., paste the script before `</head>` or `</body>`.
    2. Make sure  Converse should be the last script to execute, as some scripts may override the  Converse script.
  </Accordion>

  <Accordion title="How to install a bot on wordpress website">
    After you have logged into your  Converse account, Go to the Bots Tab, select the desired Bot, and navigate to the Install section.

    1. Move to the WordPress section and copy the API key available there.
    2. Open your website's wp-admin, adding "/wp-admin" at the end of your Domain URL. E.g., If your website URL is "[www.expample.com](http://www.expample.com)," then you can open WP-Admin using the Link "[www.example.com/wp-admin](http://www.example.com/wp-admin)"
    3. Go to Plugins > Add new > Search  Converse > Install now > Activate plugin"
    4. Install the " Converse" Plugin and then activate the same.
    5. Upon activating the Plugin, you will be redirected to the plugins page with the confirmation message "Plugin Activated."
    6. Once your Plugin is activated, paste the Vitxi Converse API key in the Box named " Converse Snippet" that you Copied from your  Converse account.
    7. Save the Settings, and you are all set.  Converse has been integrated into your website.
  </Accordion>

  <Accordion title="Bot is not showing up upon activation of wp-rocket plugin">
    If you have both wp-rocket and  Converse Plugin/Script added to your WordPress site, You may face the issue of the  Converse not showing up on the website.

    In case you are facing such issues, try the below steps, and it will solve the problem.

    1. Login to your wp-admin panel and open the `wp-rocket` settings.
    2. Go to the `File Optimization` →  `JavaScript Files` -> `Load JavaScript deferred`
    3. Add the ` Converse` bot script here under `Exclude Java Script Files` option, and done!

    For more details, Check out the following documentation by `wp-rocket`

    [https://docs.wp-rocket.me/article/976-exclude-files-from-defer-js](https://docs.wp-rocket.me/article/976-exclude-files-from-defer-js)
  </Accordion>

  <Accordion title="What is the minimum browser version requirement for the  Converse website bot">
    Converse is a JS-based software. Hence your browser must support the Java Script. The minimum requirement for some renowned browsers are as follows:

    * Google Chrome: Version 51 or above
    * Edge: Version 14 or above
    * Safari: Version 10 or above
    * Firefox: Version 52 or above
  </Accordion>

  <Accordion title="How to resolve latency issues on my website when I have the chatbot installed">
    We understand the criticality of website speed and responsiveness. Adding a trigger delay only delays the chatbot from opening, but the script of the chatbot is loaded at the same time as the page, which can delay the overall page loading and create latency issues. This happens because of the vast processes that allow chatbots to run smoothly. However, this problem can be solved.

    In the document ready function, create a timeout function of 3sec. In that timeout function, create a script element with the details of the script shared while installing the chatbot.

    ```
    <script>
        const scriptEle = document.createElement("script");
        scriptEle.src = ('src', 'https://cdn. Converse.com/ Converse.js');
        scriptEle.setAttribute('id', ' Converse-messenger-widget');
        scriptEle.innerHTML = '[Your Bot ID]';

        document.onreadystatechange = function () {
          if (document.readyState == "complete") {
            setTimeout(() => {
              document.body.appendChild(scriptEle);
            }, 3000);
          }
        }
      </script>
    ```

    Please note: Do not forget to replace `[Your Bot ID]` with you bot ID that you can find in your script.

    And done, All sorted.
  </Accordion>

  <Accordion title="Where are the channels where I can install my bot">
    As of now (10/01/26), We have the following channels where you can run your bot to

    1. Website
    2. Whatsapp
    3. Facebook
    4. Telegram
    5. Standalone landing page
    6. MS Teams
    7. Instagram
  </Accordion>

  <Accordion title="Why my bot is not showing up upon activation of wp-rocket plugin">
    If you have both wp-rocket and  Converse Plugin/Script added to your WordPress site, You may face the issue of the  Converse not showing up on the website.

    In case you are facing such issues, try the below steps, and it will solve the problem.

    1. Login to your wp-admin panel and open the `wp-rocket` settings.
    2. Go to the `File Optimization` →  `JavaScript Files` -> `Load JavaScript deferred`
    3. Add the ` Converse` bot script here under `Exclude Java Script Files` option, and done!

    Also you can add this provided code snippet :

    ```
    <script>
      const scriptEle = document.createElement("script");
      scriptEle.src = ('src', 'https://cdn. Converse.com/ Converse.js');
      scriptEle.setAttribute('id', ' Converse-messenger-widget');
      scriptEle.innerHTML = '6ffd62fkb3013e15bc12ba60,6ffd62fkb3013e15bc12ba60'; // Replace with your chatbot IDs

      document.onreadystatechange = function () {
        if (document.readyState == "complete") {
          setTimeout(function() {
            document.body.appendChild(scriptEle);
          }, 10);
        }
      }
    </script>
    ```
  </Accordion>
</AccordionGroup>
