Customize UI
Logo Display = True will work only if Display Top Banner = True in Channel.aspx. Works in Channel_v4.aspx.
We are investigating this issue and will get back to you as soon as possible.
Display Top Banner = False only works in Channel_v4.aspx, not in Channel.aspx
Open file "CuteChat\CuteSoft_Client\CuteChat\Channel.aspx "
Find section below
if (!ChatWebUtility.DisplayTopBanner)
{
TopAdsRow.Visible = false;
}
Change to
if (!ChatWebUtility.DisplayTopBanner)
{
TopAds1.Visible = false;
}
Display Bottom Banner = does not display well
We are investigating this issue and will get back to you as soon as possible.
Display Panel Header = False only works in Channel_v4.aspx, not in Channel.aspx
We are investigating this issue and will get back to you as soon as possible.
Customize Language
Changing text on buttons <resource name="UI_MENU_Disconnect">, <resource name="UI_SEND"> and <resource name="UI_MENU_Connect"> only works in Channel_v4.aspx, not in Channel.aspx
<resource name="UI_MENU_Disconnect">
We hard code in page "CuteSoft_Client\CuteChat\Script\Channel_New.js" section below, please change it directly
btn.innerHTML=TEXT("Disconnect")
<resource name="UI_SEND">
Please change in the page CuteChat\CuteSoft_Client\CuteChat\Channel.aspx directly
<button id="buttonSend" class="SendButton">Send</button>
<resource name="UI_MENU_Connect">
We hard code in page "CuteSoft_Client\CuteChat\Script\Channel_New.js" section below, please change it directly
btn.innerHTML=TEXT("Connect")
Regards,
Ken