Skip to content

Instantly share code, notes, and snippets.

View Getron's full-sized avatar

George Getejanc Getron

View GitHub Profile
@danfisher85
danfisher85 / ALC: add 'buy ticket' to [events_list]
Last active October 19, 2020 13:53
adds 'buy ticket' link to [events_list] shortcode
function alc_event_list_add_ticket_th() {
echo '<th class="data-tickets">' . esc_html__( 'Tickets', 'sportspress' ) . '</th>';
}
add_action( 'sportspress_event_list_head_row', 'alc_event_list_add_ticket_th' );
function alc_event_list_add_ticket_td( $event ) {
echo '<td class="data-tickets" data-label="' . esc_attr__( 'Tickets', 'sportspress' ) . '">';
if ( 'future' == $event->post_status ) {
echo '<a href="#" class="btn btn-default btn-xs">' . esc_html__( 'Buy Ticket', 'sportspress' ) . '</a>';
}