We are using continual.ly for our website chatbots.
We use EditorX
site = cyberpenguin.co
We have 2 chatbots from continual.ly, the first is standard issue and appears at bottom of each page using a continual.ly script that we installed in the header section in the Custom Code section (alongside our Google analytics code).
I need some help with the second one please.
Here is the continual.ly article if interested:
https://help.continual.ly/article/75-using-your-own-button
It is a change to the class of a button on a page, so that a second/different chatbot is triggered when that button is clicked.
(This allows us to create page specific chatbots)
<a class="continually"> ....... </a>
NOTE: You must have access to your HTML code in order to add a Continually class to trigger your bot
It says that it needs to be added to the class of the button, but I have NO IDEA where/how to access that code? I have turned on Dev Mode as well but even then the button/code doesn't show in that area when I click on it?
Any help much appreciated.
Stephen
Thank you
You can create your own button using the Embed Site block. Once the block is added, make sure it's set to code, then add the following code or any other button code that you like:
<center> <a class="continually">Book A Demo</a> </center> <style> .continually { display: inline-block; width: 16em; font-family: inherit; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 500; color: #000; background-color: #fff; border: none; box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease 0s; cursor: pointer; outline: none; font-size: 1rem; padding: 1.2rem 0rem; margin: 5px; text-decoration: none !important; } .continually:hover { background-color: #000; color: #fff; transform: translateY(-7px); } </style>