Hi!
Events Manager Extended is great solution for events and calendars but I have little problems and don’t know how to resolve it. I use template api tags to get list of my events with these args shown below:
eme_get_events_list(“limit=0&scope=this_week&showperiod=daily&order=ASC”)
and first problem is that list of generated events shows Sunday as first day of week but my wordpress setting is Monday. Calendar shows Monday as first day of week but List of Events shows Sunday… Why? How to resolve it? Does somebody encounter this problem?
Second question is how do I get day of the week after day of the month when I use “showperiod=daily”? For example I need to get “27 Jun, Monday” and “28 Jun, Tuesday” inside li class=”eme_period”
<ul class="eme_events_list">
<li class="eme_period">27 Jun, Monday</li>
<li><b>15:00</b> Event 01</li>
<li><b>18:00</b> Event 02</li>
<li class="eme_period">28 Jun, Tuesday</li>
<li><b>12:00</b> Event 01</li>
<li><b>16:00</b> Event 02</li>
<li><b>19:00</b> Event 03</li>
</ul>
Thanks!