Could you please help me with the following. I would like to display the event List in the front page of JRElastic Skin.
I created an index_list_events.tpl and entered the below code, but it is only showing the event title and the user profile who created the event. I would like to show the event image with event details as the attached image.
{if isset($_items)}
{jrCore_module_url module="jrEvent" assign="murl"}
{foreach from=$_items item="row"}
{if isset($row.Event_image_size) && $row.Event_image_size > 0}
{jrCore_module_function function="jrImage_display" module="jrEvent" type="Event_image" item_id=$row._item_id size="small" crop="auto" alt=$row.Event_title title=$row.Event_title class="iloutline iindex"}
{else}
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$row._profile_id size="small" crop="auto" alt=$row.profile_name title=$row.profile_name class="iloutline iindex"}
{/if}
{$row.event_title}
{/foreach}
{/if}
Thank You
--edit--
added [ code ][ /code ] block around the code.
- michael
updated by @luis456: 03/03/15 11:54:15PM