Bot Installation FAQs
This section contains the FAQs related to the installation of various type of bot
How to install website bot using java script.
Copy the Javascript code from the Omnihubs app & Go to
- our website's HTML code
- Paste the script in the head or body tag of your HTML code
Please Note
- Ensure that you paste the script before the tag is closed, i.e., paste the script before </head> or </body>.
- Make sure Omnihubs should be the last script to execute, as some scripts may override the Omnihubs script.
How to install a bot on a WordPress website?
After you have logged into your Omnihubs account, Go to the Bots Tab, select the desired Bot, and navigate to the Install section.
- Move to the WordPress section and copy the API key available there.
- 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," then you can open WP-Admin using the Link "www.example.com/wp-admin"
- Go to Plugins > Add new > Search Omnihubs > Install now > Activate plugin"
- Install the "Omnihubs" Plugin and then activate the same.
- Upon activating the Plugin, you will be redirected to the plugins page with the confirmation message "Plugin Activated."
- Once your Plugin is activated, paste the Omnihubs API key in the Box named "Omnihubs Snippet" that you Copied from your Omnihubs account.
- Save the Settings, and you are all set. Omnihubs has been integrated into your website.
Bot is not showing up upon activation of wp-rocket plugin.
If you have both wp-rocket and Omnihubs Plugin/Script added to your WordPress site, You may face the issue of the Omnihubs not showing up on the website.
In case you are facing such issues, try the below steps, and it will solve the problem.
- Login to your wp-admin panel and open the wp-rocket settings.
- Go to the File Optimization → JavaScript Files -> Load JavaScript deferred
- Add the Omnihubs bot script here under Exclude Java Script Files option, and done!
For more details, Check out the following documentation by wp-rocket
What is the minimum browser version requirement for the Omnihubs website bot?
Omnihubs 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
What are the channels where I can install my bot?
As of now (13/12/23), We have the following channels where you can run your bot to
- Website
- Telegram
- Standalone landing page
Also, Instagram is coming soon!
Why my bot is not showing up upon activation of wp-rocket plugin?
If you have both wp-rocket and Omnihubs Plugin/Script added to your WordPress site, You may face the issue of the Omnihubs not showing up on the website.
In case you are facing such issues, try the below steps, and it will solve the problem.
- Login to your wp-admin panel and open the wp-rocket settings.
- Go to the File Optimization → JavaScript Files -> Load JavaScript deferred
- Add the Omnihubs 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.botpenguin.com/botpenguin.js');
scriptEle.setAttribute('id', 'BotPenguin-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>