Help - Search - Members - Calendar
Full Version: Entries don't show up unless I divide them
Movable Type Community Forum > Using Movable Type > Entries and Archives
rosalie
i try to make a post and only the title shows up unless i put part of it in "entry" and the rest in "extended." i know length can't matter because i've tried it with varying sizes.

but it shows up just fine (all there and none of it has to even go in "extended" if i don't want it to) in the draft section.

any ideas as to why they aren't showing once i publish?
TweezerMan
You'd need to post the template code you're using between the MTEntries and /MTEntries tags in your template to know for sure, but I suspect you may have an MTEntryIfExtended tag in the wrong place. If you had code like the following:
CODE
<MTEntries lastn="7">
 <$MTEntryTitle$>
 <MTEntryIfExtended>
   <$MTEntryBody$>
   <$MTEntryMore$>
 </MTEntryIfExtended>
</MTEntries>

...you'd see exactly what you're describing. The MTEntryBody tag should not be inside of the MTEntryIfExtended container tag:
CODE
<MTEntries lastn="7">
 <$MTEntryTitle$>
 <$MTEntryBody$>
 <MTEntryIfExtended>
   <$MTEntryMore$>
 </MTEntryIfExtended>
</MTEntries>


Hope this helps...
rosalie
thank you so much! that was it! smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.