How to add your Intercom code in FAQPrime widget?

1Answer

Step 1: Add your intercom code below the Widget code in the HTML Page with hide_default_launcher intercomSettings as true

<!--Start of Intercom Script-->

<script>
  window.intercomSettings = {
    app_id: "<your appid>",
    hide_default_launcher:true
  };
</script>
// Your rest of the intercom code 

<!--End of Intercom Script-->

Step 2: In the faqbotChatExecution function add the following line

function faqbotChatExecution()
{
    Intercom('show');
}
        
Did this answer your question?
...