- This topic has 2 replies, 2 voices, and was last updated 13 years, 7 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › formatting event listing
Tagged: formatting
this could well be something very simple. at the moment my event listing looks like this:
http://nambuccalondon.com/events-2
I would like it to be formatted more like this:
http://www.dingwalls.com/listings/
so basically what I want is a column for date, one for time and one for the event name (I would like to add a buy link but that’s a seperate issue).
I am by no means an expert with coding but I’m thinking it should be done with a table. I can probably just about work out how to do it if someone can point me to the right file I need to change.
Don’t change files. This is perfectly possible using the standard configuration options:
– start your table in “Default event list format header”
– end your table in “Default event list format footer”
– for each table row, enter the html in “Default event list format”, using the placeholders available for events and time: http://www.e-dynamics.be/wordpress/?cat=25, eg:
<tr><td>#_NAME</td><td>#_{Ydm}</td><td>#_ATT{price}</td><td>http..../...?code=#_EVENTID</td></tr>
or, if the link is also an attribute:
<tr><td>#_NAME</td><td>#_{Ydm}</td><td>#_ATT{price}</td><td>#_ATT{eventlink}</td></tr>
Understanding the use of attributes is explained here: http://www.e-dynamics.be/wordpress/?cat=29
thanks for that, works perfectly!