Entry List?

Creating and modifying plugins.
jocelynaz
Regular
Posts: 27
Joined: Thu Mar 29, 2007 9:29 pm

Post by jocelynaz »

Hello again, Garvin. I hope you're not getting tired of hearing from me. :)

I used the code you provided and it gives me what I want, as far as having entries listed by Title, rather than in its entirety. Now my problem is this...When I click on a particular entry Title, the contents of the post do not show up. The only thing I see is the entry Title, Trackbacks and Comments sections. How do I get my entire post to show?

If you can take a look at my site, you'll see what I mean. Just click on any Category that has entries and you'll see.

http://www.homemakerinprogress.com/blog

I did have to change your code as bit, as you mentioned. Here's the code I used:
The frontpage entries I have setup to show in its entirety. Only when you click Categories links, you'll see the entries listed by Title.

Code: Select all

{if $startpage OR NOT is_array($category_info)} 
{$entry.body} 
{/if}

Thanks again! :)
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Maybe this would help:

Code: Select all

{if $startpage OR NOT is_array($category_info) OR $is_single_entry} 
{$entry.body} 
{/if}
HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
jocelynaz
Regular
Posts: 27
Joined: Thu Mar 29, 2007 9:29 pm

Post by jocelynaz »

Oh yay!!! It worked perfectly, Garvin. Thank you, thank you for all your assistance and your patience! You've been extremely helpful. :D

Have a great day,
Jocelyn
Post Reply