Artem than you! Now everything works properly.
Archives: Replies
Replies for tickets on suppota
Reply to: tickets(368887)
Hello,
I am sorry, the access information you have provided did not work for us. Please check them and post the correct login information as a private message, thank you!
Reply to: tickets(368810)
They will buy from eventbrite.
People should register via the RSVP form. The link to eventbrite should be in the confirmation email. Because the event is repeating the link is dependend from the date of the event.
I found yesterday the addon Repeat Customizer. Maybe this can be already a solution. I thought that I maybe use one of the custom meta fields and build this inside the confirmation email. What do you think about this idea?
Reply to: tickets(368807)
Hello,
avarus-berlin.de/wartungsklappe
Username: avarusberlin_fp696pp0
PW: r0fYe$aPyfFD$Wzr7WkkW)c*
Reply to: tickets(368888)
Maps arent working either, even with the api activated and working
Reply to: tickets(368888)
And i can add more events in coming soon here? Appears just one. And i cant hide using shortcode, is buggy
[add_eventon_now]
https://2025.paving.com.br/proximos-eventos/
Reply to: tickets(368744)
Dear Artem,
thanks for the quick reply. I solved the issue by deleting all fields in the editor – afterwards to Learn More field reappeared 🙂
Also, good to know that the issue is being addressed. By the way, here: https://helpdesk.ashanjay.com/ticket/restrict-the-ability-to-rsvp-based-on-user-role/ I was told that RSVP based on User Role is now possible. Could you let me know, where I can find that setting?
Thanks a lot in advance!
Reply to: tickets(368403)
Its not published and the pages are all over the place. I can provide you the shortcodes I am using:
For the list where I WANT the title to show:
[add_eventon_list eventtop_style=”2″ eventtop_date_style=”2″ event_past_future=”future”
number_of_months=”2″
hide_month_headers=”yes”]
For the calendar where I DONT want to see the title:
[add_eventon ux_val=”3″ jumper=”yes” exp_jumper=”yes” jumper_offset=”2″ jumper_count=”3″ event_past_future=”future”
tiles=”yes”
tile_count=”20″ tile_height=”100″ tile_style=”3″ tile_bg=”1″ tile_bg_size=”med” hide_et_tl=”yes”]
The whole code from the dynamic style is:
Reply to: tickets(368880)

code:
/* —————————————————————————
* Add tickets checkout fields: rijksregister, privé adres, geboorteplaats, nationaliteit,
*
*
* ————————————————————————— */
/*
add_filter(‘evotx_checkout_additional_fields_settings’,’evotx_2′,10,1);
function evotx_2($fields){
$fields[‘rijksregisternummer’] = __(‘Rijksregisternummer’,’evotx’);
$fields[‘gsmnummer’] = __(‘Gsm-nummer’,’evotx’);
$fields[‘mailadres’] = __(‘E-mailadres chauffeur’,’evotx’);
$fields[‘priveadres’] = __(‘PrivĂ©-adres’,’evotx’);
$fields[‘geboorteplaats’] = __(‘Geboorteplaats’,’evotx’);
$fields[‘nationaliteit’] = __(‘Nationaliteit’,’evotx’);
// you can add other fields like this similarly
return $fields;
}
add_filter(‘evotx_additional_ticket_info_fields’, ‘evotx_1’, 10,1);
function evotx_1($fields){
// additonal field code block
$fields[‘rijksregisternummer’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Rijksregisternummer’),
‘required’=> true,
);
$fields[‘mailadres’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘E-mailadres chauffeur’),
‘required’=> true,
);
$fields[‘gsmnummer’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Gsm-nummer’),
‘required’=> true,
);
$fields[‘priveadres’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘PrivĂ©-adres’),
‘required’=> true,
);
$fields[‘geboorteplaats’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Geboorteplaats’),
‘required’=> true,
);
$fields[‘nationaliteit’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Nationaliteit’),
‘required’=> true,
);
// you can use same code block for more fields
return $fields;
}
add_filter(‘evotx_get_attendees_for_event’, ‘evotx_3’,10, 3);
function evotx_3($arr, $event_id, $_th){
if(!isset($_th[‘rijksregisternummer’])) return $arr;
$arr[‘oD’][‘rijksregisternummer’] = $_th[‘rijksregisternummer’];
if(!isset($_th[‘gsmnummer’])) return $arr;
$arr[‘oD’][‘gsmnummer’] = $_th[‘gsmnummer’];
if(!isset($_th[‘mailadres’])) return $arr;
$arr[‘oD’][‘mailadres’] = $_th[‘mailadres’];
if(!isset($_th[‘priveadres’])) return $arr;
$arr[‘oD’][‘priveadres’] = $_th[‘priveadres’];
if(!isset($_th[‘geboorteplaats’])) return $arr;
$arr[‘oD’][‘geboorteplaats’] = $_th[‘geboorteplaats’];
if(!isset($_th[‘nationaliteit’])) return $arr;
$arr[‘oD’][‘nationaliteit’] = $_th[‘nationaliteit’];
// the above 2 lines can be used for all other new fields
return $arr;
}
*/
add_filter(‘evotx_additional_ticket_info_fields’, ‘evotx_1’, 10,1);
function evotx_1($fields){
// Get the cart object
$cart = WC()->cart->get_cart();
// Loop through the cart items
foreach ( $cart as $cart_item_key => $cart_item ) {
// Get the product ID from the cart item
$product_id = $cart_item[‘product_id’];
}
//get event id from product
$event_id = get_post_meta( $product_id, ‘_eventid’, true );
//get organizer id from event id
$organizer_terms = wp_get_post_terms($event_id, ‘event_organizer’);
if( $organizer_terms && ! is_wp_error( $organizer_terms ) ){
if(isset($organizer_terms[0]->term_id) && $organizer_terms[0]->term_id != “”){
$organizer_term_id =Â $organizer_terms[0]->term_id;
$organizer_id = $organizer_term_id;
}
}
//print_r($organizer_terms); die;
if( !empty($organizer_id) && ($organizer_id == 60 || $organizer_id == 80 || $organizer_id == 59 || $organizer_id == 101 )){
/* $fields[‘name_requestor’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Naam aanvrager’),
‘required’=> true,
);
$fields[’email_requestor’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘E-mail aanvrager’),
‘required’=> true,
);
$fields[‘name_company’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Naam onderneming’),
‘required’=> false,
);
$fields[‘company_address’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Adres ‘),
‘required’=> false,
);
$fields[‘company_phone’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Telefoon’),
‘required’=> false,
);
$fields[‘company_email’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘E-mail’),
‘required’=> false,
);
$fields[‘company_registration_number’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Btw-nummer’),
‘required’=> false,
); */
$fields[‘naam_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Naam chauffeur’),
‘required’=> true,
);
}
if($organizer_id == 59 || $organizer_id == 101 ){
$fields[‘adres_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Adres chauffeur’),
‘required’=> true,
);
$fields[‘rijksregister_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Rijksregister’),
‘required’=> true,
);
$fields[‘gsm_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Gsm’),
‘required’=> true,
);
$fields[’email_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘E-mail’),
‘required’=> true,
);
$fields[‘geboorteplaats_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Geboorteplaats’),
‘required’=> true,
);
$fields[‘nationaliteit_chauffeur’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Nationaliteit’),
‘required’=> true,
);
}
if($organizer_id == 101 ){
$fields[‘address_waar’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Adres waar de opleiding start’),
‘required’=> true,
);
$fields[‘opmerking’] = array(
‘type’=>’text’,
‘label’=> evo_lang(‘Opmerking’),
‘required’=> true,
);
}
// you can use same code block for more fields
return $fields;
}
add_filter(‘evotx_get_attendees_for_event’, ‘evotx_3’,10, 3);
function evotx_3($arr, $event_id, $_th){
/* if(isset($_th[‘name_requestor’])){
$arr[‘oD’][‘name_requestor’] = $_th[‘name_requestor’];
}
if(isset($_th[’email_requestor’])){
$arr[‘oD’][’email_requestor’] = $_th[’email_requestor’];
}
if(isset($_th[‘name_company’])){
$arr[‘oD’][‘name_company’] = $_th[‘name_company’];
}
if(isset($_th[‘company_address’])){
$arr[‘oD’][‘company_address’] = $_th[‘company_address’];
}
if(isset($_th[‘company_phone’])){
$arr[‘oD’][‘company_phone’] = $_th[‘company_phone’];
}
if(isset($_th[‘company_email’])){
$arr[‘oD’][‘company_email’] = $_th[‘company_email’];
}
if(isset($_th[‘company_registration_number’])){
$arr[‘oD’][‘company_registration_number’] = $_th[‘company_registration_number’];
} */
if(isset($_th[‘naam_chauffeur’])){
$arr[‘oD’][‘naam_chauffeur’] = $_th[‘naam_chauffeur’];
}
if(isset($_th[‘adres_chauffeur’])){
$arr[‘oD’][‘adres_chauffeur’] = $_th[‘adres_chauffeur’];
}
if(isset($_th[‘rijksregister_chauffeur’])){
$arr[‘oD’][‘rijksregister_chauffeur’] = $_th[‘rijksregister_chauffeur’];
}
if(isset($_th[‘gsm_chauffeur’])){
$arr[‘oD’][‘gsm_chauffeur’] = $_th[‘gsm_chauffeur’];
}
if(isset($_th[’email_chauffeur’])){
$arr[‘oD’][’email_chauffeur’] = $_th[’email_chauffeur’];
}
if(isset($_th[‘geboorteplaats_chauffeur’])){
$arr[‘oD’][‘geboorteplaats_chauffeur’] = $_th[‘geboorteplaats_chauffeur’];
}
if(isset($_th[‘nationaliteit_chauffeur’])){
$arr[‘oD’][‘nationaliteit_chauffeur’] = $_th[‘nationaliteit_chauffeur’];
}
if(isset($_th[‘address_waar’])){
$arr[‘oD’][‘address_waar’] = $_th[‘address_waar’];
}
if(isset($_th[‘opmerking’])){
$arr[‘oD’][‘opmerking’] = $_th[‘opmerking’];
}
return $arr;
}
add_filter(‘evotx_confirmation_email_additional_data_array’,’evotx_4′, 10, 4);
function evotx_4(Â $array, $_this_ticket , $TIX_CPT, $EVENT ){
$line_break = “<br style=’mso-line-height-rule: exactly;’ />n”;
/* if( !empty( $_this_ticket[‘oD’][‘name_requestor’] )){
$array[‘name_requestor’] = array(
‘label’=> evo_lang(‘Naam aanvrager’),
‘value’=> $_this_ticket[‘oD’][‘name_requestor’]
);
}
if( !empty( $_this_ticket[‘oD’][’email_requestor’] )){
$array[’email_requestor’] = array(
‘label’=> evo_lang(‘E-mail aanvrager’),
‘value’=> $_this_ticket[‘oD’][’email_requestor’]
);
}
if( !empty( $_this_ticket[‘oD’][‘name_company’] )){
$array[‘name_company’] = array(
‘label’=> evo_lang(‘Naam onderneming’),
‘value’=> $_this_ticket[‘oD’][‘name_company’]
);
}
if( !empty( $_this_ticket[‘oD’][‘company_address’] )){
$array[‘company_address’] = array(
‘label’=> evo_lang(‘Adres’),
‘value’=> $_this_ticket[‘oD’][‘company_address’]
);
}
if( !empty( $_this_ticket[‘oD’][‘company_phone’] )){
$array[‘company_phone’] = array(
‘label’=> evo_lang(‘Telefoon’),
‘value’=> $_this_ticket[‘oD’][‘company_phone’]
);
}
if( !empty( $_this_ticket[‘oD’][‘company_email’] )){
$array[‘company_email’] = array(
‘label’=> evo_lang(‘E-mail’),
‘value’=> $_this_ticket[‘oD’][‘company_email’]
);
}
if( !empty( $_this_ticket[‘oD’][‘company_registration_number’] )){
$array[‘company_registration_number’] = array(
‘label’=> evo_lang(‘Btw-nummer ‘),
‘value’=> $_this_ticket[‘oD’][‘company_registration_number’]
);
} */
if( !empty( $_this_ticket[‘oD’][‘naam_chauffeur’] )){
$array[‘naam_chauffeur’] = array(
‘label’=> evo_lang(‘Naam chauffeur’),
‘value’=> $_this_ticket[‘oD’][‘naam_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘adres_chauffeur’] )){
$array[‘adres_chauffeur’] = array(
‘label’=> evo_lang(‘Adres chauffeur’),
‘value’=> $_this_ticket[‘oD’][‘adres_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘rijksregister_chauffeur’] )){
$array[‘rijksregister_chauffeur’] = array(
‘label’=> evo_lang(‘Rijksregister’),
‘value’=> $_this_ticket[‘oD’][‘rijksregister_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘gsm_chauffeur’] )){
$array[‘gsm_chauffeur’] = array(
‘label’=> evo_lang(‘Gsm’),
‘value’=> $_this_ticket[‘oD’][‘gsm_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][’email_chauffeur’] )){
$array[’email_chauffeur’] = array(
‘label’=> evo_lang(‘E-mail’),
‘value’=> $_this_ticket[‘oD’][’email_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘geboorteplaats_chauffeur’] )){
$array[‘geboorteplaats_chauffeur’] = array(
‘label’=> evo_lang(‘Geboorteplaats’),
‘value’=> $_this_ticket[‘oD’][‘geboorteplaats_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘nationaliteit_chauffeur’] )){
$array[‘nationaliteit_chauffeur’] = array(
‘label’=> evo_lang(‘Nationaliteit’),
‘value’=> $_this_ticket[‘oD’][‘nationaliteit_chauffeur’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘address_waar’] )){
$array[‘address_waar’] = array(
‘label’=> evo_lang(‘Adres waar de opleiding start’),
‘value’=> $_this_ticket[‘oD’][‘address_waar’] . $line_break
);
}
if( !empty( $_this_ticket[‘oD’][‘opmerking’] )){
$array[‘opmerking’] = array(
‘label’=> evo_lang(‘Opmerking’),
‘value’=> $_this_ticket[‘oD’][‘opmerking’] . $line_break
);
}
return $array;
}
Reply to: tickets(368880)