I have a section on a site that I am working on which pulls from more than one weblog like below
{exp:weblog:entries weblog="news|events"}
<div class="post">
<h3>{title}</h3>
<p> <span class="date">{entry_date format="%d of %M , %Y"}</span><br />
...<br />
</div></p>
<p>{/exp:weblog:entries}What I want to do is only display entry_date if it is part of the news weblog and if it is an event, pull from another custom field called event_date.
Does anyone know if this is possible?
Thanks a lot in advance, Martin