EE v2.5.3
I'm trying to accomplish the following:
- 6 Radio Shows (Mon-Fri)
- 1 Radio Show (Sun)
- Default Setting (Logo)
I'd like to be able to tell EE the following:
If Monday - Friday AND
0600 - 1000
Morning Show
else if
1000 - 1500
Midday Show
etc etc..
else if
Sunday AND
0600 - 1200
Sunday Show
else if
1700-1900
Sunday Night Show
else
Default display of Logo
My (non-working) Example:
<div id="in_studio_now_content" class="container_4">
{if
'{current_time format="%l"}' == Thursday AND
'{current_time format="%H%i"}' >= '1000' AND
'{current_time format="%H%i"}' <= '1700'
}
<div class="showContainer">
<img src="http://placehold.it/75x75" class="container_1" />
<div class="showInfo left">
<h5>The Midday Show</h5>
<p>with Jenn</p>
<p class="timeslot">Weekdays 10:00 - 3:00 pm</p>
<div id="facebookLike">F like 32k</div>
</div>
<a href="#" class="showLink container_3">More about this show ›</a>
</div><!-- /show -->
{/if}
</div><!-- studio content -->