Re: Missing Chat Participation Count/Peek

  •  05-03-2006, 8:16 AM

    Re: Missing Chat Participation Count/Peek

    Rich:
     
    You could do this to implement your request .
     
    1. goto chat admin page /CuteSoft_Client/CuteChat/Admin/  ,  and create a lobby , remember the id , for example '123' (see the code below)
     
    2. modify the Tmemes/%skinname%/Skins/View-ForumGroupView.ascx and change the link for it :
     
    original code :
    <h2 class="CommonTitle">
        <asp:HyperLink CssClass="headermaintitle"  id="BlogTitle" runat="server" />
        ( <a href='<%=ResolveUrl("~/RedirectBlogToChat.Aspx?BlogId="+CommunityServer.Blogs.Components.Weblogs.GetWeblog(CSContext.Current.ApplicationKey).SectionID) %>' target=_blank>Chat</a> )
    </h2>
     
    change to the fixed id :
    <h2 class="CommonTitle">
        <asp:HyperLink CssClass="headermaintitle"  id="BlogTitle" runat="server" />
        ( <a href='<%=ResolveUrl("~/CuteSoft_Client/CuteChat/CH_MainForm.Aspx?Location=Lobby&LocationId=123")%>' target=_blank>Chat</a> )
    </h2>
     
     
    Regards , Terry .
     
     
View Complete Thread