Embedding your FAQ search into an existing page is done so using one line of code.
Once the embedded code has been added to the page, you will see a “Need help?” button on the bottom right side of the page. When this button is clicked, a search box appears where your customers can search and visit a relevant FAQ for further help.
The ezyFAQ embedding feature requires jQuery to also be included on the page. You will need to add the ezyFAQ embed code after the jQuery script tag in your page code.
In the below examples you will need to replace <username>
with your username or replace https://<username>.ezyfaq.com
with your custom website URL.
<head>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://<username>.ezyfaq.com/embedded.js"></script>
</head>
<head>
<script type="text/javascript" src="/path/to/jquery.min.js"></script>
<script type="text/javascript" src="https://<username>.ezyfaq.com/embedded.js"></script>
</head>