|
| Removing "Populart tags", "Bloggers", ....how-to? |
 |
Sat, 30 Sep 2006 14:41:12 +000 |
Hi,
I am trying to customize community server to fit my needs. I've come upon a
problem - removing parts of right side bar such as "Popular tags",
"Active Posts", "Bloggers", "Active",
"Unanswered" and so on. I easily find a way to do that in the main
page, but not with Bloggers.aspx,default page of blogs and forums. I hope
someone has an idea of solution for my problem.
Many thaks!
|
| Post Reply
|
| Re: Removing "Populart tags", "Bloggers", ....how-to? |
 |
Sat, 30 Sep 2006 18:44:11 +000 |
Open the "...\Themes\Blogs\default\Skins\Skin-BlogSideBar.ascx" file
in either Visual Studio or Notepad.
You will see the code for each of those sidebar items like the following. You
can comment / delete / add the Blog tags for the items that you want to retain /
remove.
<Blog:WeblogLinks runat="Server" id="wl" />
<Blog:WeblogQuickLinks runat="Server" id="wql" />
<blog:subscriptions runat="Server" id="s" />
<blog:recentposts runat="server" id="rp" />
<div class="CommonSidebarArea">
<h4 class="CommonSidebarHeader"><CS:ResourceControl
runat="Server" ResourceName="Tags" /></h4>
<div class="CommonSidebarContent">
<Blog:TagCloud
TagCloudCssClasses="CommonTag6,CommonTag5,CommonTag4,CommonTag3,CommonTag2,
CommonTag1" runat="server" IgnoreFilterTags="true"
CssClass="CommonSidebarTagCloud" id="TagCloud" />
</div>
</div>
<Blog:BlogNews runat="Server" id="n" />
<blog:archivelist runat="Server" id="al" />
|
| Post Reply
|
|
|
|
|
|
|
|
|
|