multiple entries from the same day in different entry boxes

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
Ripper^^
Regular
Posts: 50
Joined: Mon Aug 15, 2005 7:49 am
Location: Gainesville, Florida, USA
Contact:

multiple entries from the same day in different entry boxes

Post by Ripper^^ »

Hi,

I was wondering what I would have to edit to change the way entries are displayed on my site. Currently if I make multiple entries on the same day they are displayed like this:

_______
|date2 |
|--------|
|entry2 |
|--------|
|entry1 |
----------

_______
|date1 |
|--------|
|entry |
----------
I would like them to be displayed like this:

_______
|date2 |
|--------|
|entry2 |
----------
_______
|date2 |
|--------|
|entry1 |
----------
_______
|date1 |
|--------|
|entry |
----------

Thanks in advance for the help :)
Ripper^^
Administrator, TheRipper.com
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: multiple entries from the same day in different entry bo

Post by garvinhicking »

Hi!

For that, you would need to edit your entries.tpl template file. There are two foreach loops in that file, one for the "date group" and one for the actual "entry group".

You'd simply need to move the <divs> within the first foreach loop into the second foreach loop to get that code to show for each entry, and not only for each entry group.

You seem to be well enough with coding, so I suppose you get what I mean? :)

Regards,
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/
Ripper^^
Regular
Posts: 50
Joined: Mon Aug 15, 2005 7:49 am
Location: Gainesville, Florida, USA
Contact:

Post by Ripper^^ »

Thanks Garvin! I undersand what you mean and thanks again for all the help you give to everybody on this forum.
Ripper^^
Administrator, TheRipper.com
Post Reply