If you use U of M blog templates (http://www1.umn.edu/brand/logo-and-template-downloads/uthink-blog-templates/index.php), you might have noticed that your previous/next links on your individual entry pages don't work. They show the right title, but the link doesn't advance the page.
To fix it, go to Design > Templates, then find your Entry archive template. Go down to about line 110, and look for this code:
<a href="<$mt:Link template="Main Index"$>">Main Index</a> |
<a href="<$mt:Link template="Archive Index"$>">Archives</a>
<mt:archiveNext>| <a href="<$mt:archiveLink$>"><$mt:archiveTitle$> »</a></mt:archiveNext>
Change it to this:
<a href="<$mt:Link template="Main Index"$>">Main Index</a> |
<a href="<$mt:Link template="Archive Index"$>">Archives</a>
<mt:EntryNext>| <a href="<$mt:EntryLink$>"><$mt:EntryTitle$> »</a></mt:EntryNext>

Add a Reply