Viewing 4 replies - 1 through 4 (of 4 total)
  • try this snippet (paste in your theme functions.php)

    function my_custom_ticket_header($collumns){
    	$collumns = array( 'type' => __('R Ticket Type','dbem'), 'price' => __('R Price','dbem'), 'spaces' => __('R Spaces','dbem'));
    	return $collumns;
    }
    add_filter('em_booking_form_tickets_cols','my_custom_ticket_header',1,1);

    Thread Starter Tech4Eleven

    (@tech4eleven)

    perfect. thanks. also, is there anyway to get rid of the dropdown on a ticket that only has one space?

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    You’d have to hook into the em_ticket_get_spaces_options filter and modify the output depending on what tickets are supplied.

    Thread Starter Tech4Eleven

    (@tech4eleven)

    ya. thats beyond me

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Events Manager] Change ticket table column headings’ is closed to new replies.