I've upgraded to MT 5.02, and am using the professional website theme and the professional blog theme.
I'm only running a single blog on my site.
How do I set it up so that the "blogs" in the navbar goes directly to the blog, instead of to a page which aggregates posts from all of the blogs on the site? Since there's only 1 blog, there's no need for the aggregate blogs/index.htm page...
Many Thanks!
b
Reported on Movable Type 5

You will have to edit template module "Navigation" from inside the parent website.
Basically, you would go to the parent website, and then to:
Design -> Templates -> Template Modules
Open the template module called "Navigation"
Then replace:
<mt:WebsiteHasBlog>
<li class="<mt:If name="blog_index"> on</mt:If>"><a href="<$mt:BlogURL$>blogs/">Blogs</a></li>
</mt:WebsiteHasBlog>
with the following coding:
<mt:WebsiteHasBlog>
<mt:Blogs include_blogs="children">
<li><a href="<$mt:BlogURL$>">Blog</a></li>
</mt:Blogs>
</mt:WebsiteHasBlog>
if you have more than one children blog, you could specify a specific blog id by replacing:
<mt:Blogs include_blogs="children">
with:
<mt:Blogs include_blogs="children" blog_ids="99">
(in this sample I've assumed that the children blog you want to link from the top navigation has the blog id 99)
----------------------------------
Mihai Bocsaru
Web Development
Movable Type Consulting
Six Apart Partner
http://www.pro-it-service.com/
----------------------------------
Movable Type Demo
http://www.movabletypedemo.org/
Thanks... that covers the website part of the site, but the navigation on the blog still lists "blogs", and links to that aggregate page. I didn't see the same code in the navigation template for the blog.
What changes should I make there?
OK... I think I figured it out (although there's probably a better way to do it...)
I replaced the following code:
with
and all seems to work correctly...
Is there a better way to do this?