Reply to: tickets(157539)

Hey malaga,

We understand and we will make sure that we can provide a solution over this. We appreciate your patience and understanding.

Reply to: tickets(164624)

Hello,

No, this has to be added to the shortcode that you have put on a page. On which page you have loaded the shortcode?

Reply to: tickets(161558)

Hey! I added this to my functions file but it didn’t work and I’m quite confused:

add_filter(‘evotx_csv_headers’, ‘evotx_add_headers’,10,2);
function evotx_add_headers($array, $EVENT){
$array[] = ‘Field Name’;
$array[] = ‘Field Name 2’;
return $array;
}
add_filter(‘evotx_csv_row’, ‘evotx_add_row’,10,4);
function evotx_add_row( $array, $tn, $td, $EVENT){
$array[‘new_field_slug’] = $EVENT->ID;
$array[‘new_field_2_slug’] = $EVENT->get_title();
return $array;
}
I want it to pick up the menu options data that was added in the checkout so we can export the choices please.