Hello everyone. I am having some trouble with Movable Type version 4.23-en.

I am trying to get the "Continued on..."/"Read more..." variable to work on my Entry Summary page (variable $EntryMore$), however it does not work!

What happens
1) I click on "continue reading...." and it does nothing.

Important Information
1) The $EntryMore$ to move into reading extended parts of the blog entry works when the blog is set to "Entry" archiving.
2) After switching to "Category" based in the preferences with or without a blog entry present, when clicking on "continue reading" it does not do anything.
3) I created another blog to see if it is my mucking around with the template that caused the problem, but it is not.

Entry Summary Code

CODE
<$mt:EntryTrackbackData$>
<div id="entry-<$mt:EntryID$>" class="entry-asset asset hentry">
<div class="asset-header">
<h2 class="asset-name entry-title"><a href="<$mt:EntryPermalink$>" rel="bookmark"><$mt:EntryTitle$></a></h2>
<div class="asset-meta">
<span class="byline">
<mt:If tag="EntryAuthorDisplayName">
By <span class="vcard author"><$mt:EntryAuthorLink show_hcard="1"$></span> on <abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr>
<mt:Else>
<abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr>
</mt:If>
</span>
<mt:Unless name="hide_counts" eq="1">
<mt:IfCommentsActive><span class="separator">|</span> <a href="<$mt:EntryPermalink$>#comments"><$mt:EntryCommentCount singular="1 Comment" plural="# Comments" none="No Comments"$></a></mt:IfCommentsActive>
<mt:IfPingsActive><span class="separator">|</span> <a href="<$mt:EntryPermalink$>#trackbacks"><$mt:EntryTrackbackCount singular="1 TrackBack" plural="# TrackBacks" none="No TrackBacks"$></a></mt:IfPingsActive>
</mt:Unless>
</div>
</div>
<div class="asset-content entry-content">
<mt:If tag="EntryBody">
<div class="asset-body">
<$mt:EntryBody$>
</div>
</mt:If>
<mt:If name="entry_archive">
<mt:EntryIfTagged>
<div class="entry-tags">
<h4>Tags<span class="delimiter">:</span></h4>
<ul>
<li><mt:EntryTags glue='<span class="delimiter">,</span></li> <li>'><a href="java script:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></mt:EntryTags></li>
</ul>
</div>
</mt:EntryIfTagged>
</mt:If>
<mt:If tag="EntryMore" convert_breaks="0">
<div class="asset-more-link">
Continue reading <a href="<$mt:EntryPermalink$>#more" rel="bookmark"><$mt:EntryTitle$></a>.
</div>
</mt:If>
</div>
<div class="asset-footer"></div>
</div>


URL so you can see
http://dirtyandtrue.net/joel/fffff/#000010.html

The entry is "test" and in the extended entry it says, "this is the extended text" or similar.

Testing information
Tested issue in Firefox 3.xx on OSX 1.5

Thoughts
I'm not really familiar with MT, so I am not sure if this is the default behaviour for Category Archives or not? It doesn't make sense to me that it would be, but you never know.

Any ideas? biggrin.gif