• Resolved tryabp

    (@tryabp)


    Hello,

    I want to hide chat widget on checkout and payment screen. Can you please help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author zohosalesiq

    (@zohosalesiq)

    Hello!

    Greeting from the SalesIQ team.

    You can use the SalesIQ API provided below to hide the chat widget on specific pages of your website.

    <script type="text/javascript">
    $zoho.salesiq.ready=function(embedinfo)
    {
    if((window.location.href == "URL1") || (window.location.href =="URL2"))
    {
    $zoho.salesiq.floatbutton.visible("hide");  
    }
    }
    </script>

    Kindly, add the checkout and payment URL instead of URLs 1 and 2 to the API and add the entire API below the existing SalesIQ code on the SalesIQ plugin. This will ensure the chat widget is hidden on those two pages and get displayed on all the other pages.

    Regards,
    Aslam | Zoho SalesIQ

    Thread Starter tryabp

    (@tryabp)

    thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide chat widget on cart and checkout screen’ is closed to new replies.