Post edited 12:18 pm – February 26, 2013 by BenCrowley
I wanted to show the schedules for each day, but the TITLE of each event isnt showing, It just says the day, eg “Wednesday”
So I looked at displaying each schedul separately.
eg
<h2>Meeting One</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="65"]
<hr>
<h2>Meeting Two</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="68"]
<hr>
<h2>Meeting Three</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="66"]
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="67"]
However this broke all the formatting as there was no closing DIV </div> given after each schedule.
I managed to botch it useing the following output but it woudl be good to know how to correct it .
<h2>Meeting One</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="65"]
</div>
<hr>
<h2>Meeting Two</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="68"]
</div>
<hr>
<h2>Meeting Three</h2>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="66"]
</div>
[the_meeting_schedule year="2012" style="agenda" include_times="true" schedule="67"]
</div>