Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <table class="espresso-table" width="100%">
- <thead class="espresso-table-header-row">
- <tr>
- <th class="th-group"><?php //_e('Course','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('Location','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('City','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('State','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('Date','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('Time','event_espresso'); ?></th>
- <th class="th-group"><?php //_e('','event_espresso'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($events as $event){
- $reg_limit = $event->reg_limit;
- $event_desc = wpautop($event->event_desc);
- $register_button = '<a id="a_register_link-'.$event->id.'" href="'.get_option('siteurl').'/?page_id='.$event_page_id.'®event_action=register&event_id='.$event->id.'&name_of_event='.stripslashes_deep($event->event_name).'">Register</a>';
- //Check to see how many open spots are available
- $open_spots = get_number_of_attendees_reg_limit($event->id, 'available_spaces') == 'Unlimited' ? 999 : get_number_of_attendees_reg_limit($event->id, 'available_spaces');
- //echo $open_spots;
- if ( $open_spots < 1 ) { $live_button = 'Closed'; }
- ?>
- <tr class="espresso-table-row">
- <td class="td-group">
- <?php echo $event->event_name ?>
- </td>
- <td class="td-group">
- <?php //echo $event->address ?>
- </td>
- <td class="td-group">
- <?php //echo $event->city ?>
- </td>
- <td class="td-group">
- <?php //echo $event->state ?>
- </td>
- <td class="td-group">
- <?php //echo event_date_display($event->start_date, $format = 'l, M d, Y') ?>
- </td>
- <td class="td-group">
- <?php //echo espresso_event_time($event->id, 'start_time', get_option('time_format')) ?>
- </td>
- <td class="td-group">
- <?php echo $register_button ?>
- </td>
- </tr>
- <?php } //close foreach ?>
- </tbody>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement