How to enable auto-opening (timer-intent) of the assistant on a particular page/URL?

You can enable the auto-open the assistant by using the timer-intent function.

To enable timer intent based on the URL segment of your website please follow the given method and add it after the widget code -  

    <script>
    if (faqbotIsUrlSegment('<your URL segment on matching the intenet of the next line should get executed>')) {
         // faqbotTimerIntent('<Your Question Link>', 10); // Second parameter is time in seconds after which you want intent to open with given URL, you can provide the multiple intent by calling the same function more then once.
    }
    else if (faqbotIsUrlSegment('<your URL segment on matching the intenet of the next line should get executed>')) { // You can repeat these three lines as many times as you want of can be deleted also
         // faqbotTimerIntent('<Your Question Link>', 10); // Second parameter is time in seconds after which you want intent to open with given URL, you can provide the multiple intent by calling the same function more then once.
    }
    else { // Default intent which is fired if none of the condition is matched, next three lines can be deleted also.
         // faqbotTimerIntent('<Your Question Link>', 10); // Second parameter is time in seconds after which you want intent to open with given URL, you can provide the multiple intent by calling the same function more then once.
    }
    </script>

0

Did this answer your question?
...