• Resolved kodyaks

    (@kodyaks)


    I downloaded the free plugin to make sure it would work with my theme before I buy the pro. Right now I’m having issues with the Event featured image not showing up on the list of events. I have tried this place holder #_EVENTIMAGE in many locations and no luck! Can you please help?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Go to Events => Settings => Formatting => Events and edit Default event list format. By defaut events Manager use this code :

    Default event list format header:

    <table class="events-table" >
        <thead>
            <tr>
    			<th class="event-time" scope="col">Date/heure</th>
    			<th class="event-description" scope="col">évènement</th>
    		</tr>
       	</thead>
        <tbody>

    Default event list format:

    <tr>
    			<td>
                    #_EVENTDATES<br/>
                    #_EVENTTIMES
                </td>
                <td>
                    #_EVENTLINK
                    {has_location}<br/><i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>{/has_location}
                </td>
            </tr>

    Default event list format footer:
    </tbody></table>

    for example use this code to add an image :

    Default event list format header:

    <table class="events-table" >
        <thead>
            <tr>
    			<th class="custom-css" scope="col">Image</th>
    			<th class="event-time" scope="col">Date/Time</th>
    			<th class="event-description" scope="col">Event</th>
    		</tr>
       	</thead>
        <tbody>

    Default event list format:

    <tr>
    			<td>
                    #_EVENTIMAGE{90,0}
                </td>
    			<td>
                    #_EVENTDATES<br/>
                    #_EVENTTIMES
                </td>
                <td>
                    #_EVENTLINK
                    {has_location}<br/><i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>{/has_location}
                </td>
            </tr>

    Thanks for the solution!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured Image On Calendar List’ is closed to new replies.