Hi

I need some help with this, I want to show a list of upcoming events under the big calendar but not when the event is clicked on within the big calendar, hope that makes sense

the code I added is below

Code: Select all
<cms:archives masterpage=k_template_name type='daily' show_future_entries='1'>
            <cms:pages master=k_template_name order='desc' start_on=k_archive_date stop_before=k_next_archive_date show_future_entries='1'>
             <div class="panel-header">
                     <h2><cms:show k_page_title /></h2>
                  </div>
                  <div class="panel-body">
                     <b>Description:</b> <cms:show desc /><br>
                     <b>Location:</b> <cms:show location /><br>
                     <b>Date:</b> <cms:date k_page_date format='F j Y' /><br>
                     <cms:if start_time!='Unspecified' >
                        <b>From:</b> <cms:show start_time /><br>
                     </cms:if>
                     <cms:if "<cms:not_empty end_date />" >
                        <b>End Date:</b> <cms:date end_date format='F j Y' /><br>
                     </cms:if>
                     <cms:if end_time!='Unspecified' >
                        <b>Till:</b> <cms:show end_time /><br>
                     </cms:if>
                  </div>
            </cms:pages>
         </cms:archives>


It is fine under the big calendar but is shows when the event title is clicked on the big calendar, can the upcoming events be hidden when click on the event title on the big calendar?

Hope someone can help

Thank you in advance

UPDATE: Sorry sussed it and is working perfect