Dear colsen,
Yes, you can implement this requirement by customization. Please open file "CuteSoft_Client\CuteChat\SupportRedirect.Aspx",
<script runat="server">
override protected void OnInit(EventArgs args)
{
base.OnInit(args);
//if( CuteChat.ChatWebUtility.HasOnlineOperators() )
if( CuteChat.ChatWebUtility.HasReadyAgents() )
{
if(site1 request)
{
Response.Redirect("SupportCustomer.aspx"+Request.Url.Query);
}
else
{
//copy SupportCustomer.aspx to SupportCustomerAnotherSite.aspx , and then customize it
Response.Redirect("SupportCustomerAnotherSite.aspx"+Request.Url.Query);
}
}
else
{
if(site1 request)
{
Response.Redirect("SupportFeedback.aspx"+Request.Url.Query);
}
else
{
Response.Redirect("SupportFeedbackAnotherSite.aspx"+Request.Url.Query);
}
}
}
</script>
Thank you for asking