My monthly archives for 2007 are only showing the last two weeks of the month. How do I get the rest to show up?
Reported on Movable Type 4.2
My monthly archives for 2007 are only showing the last two weeks of the month. How do I get the rest to show up?
Reported on Movable Type 4.2
Your problem is that you are limiting the number of entries under:
Preferences => Entry
the setting "Entry Listing Default" to few entries and your "Entry Listing" or "Monthly" archive template is based on that limit.
What you could do is:
1) go to your monthly archives template;
2) change
<$mt:Var name="limit" value="auto"$>
into:
<$mt:Var name="lastn" value="0"$>
Then you should save and rebuild (republish)!
If you don't like the solution from point no. 2 above, you could also do it like this:
2) delete:
<mt:Unless name="datebased_archive"><$mt:Var name="limit" value="auto"$></mt:Unless>
3) change:
<mt:Entries limit="$limit">
into:
<mt:Entries>
Save and then finally rebuild (republish).
That's it, the entries are limited, I was faced with the same problem some times ago
;)