Reply to: tickets(334660)

I tried with this code, where I also add the ‘review event’. I add the code snippets with plugin ‘WP Code’ (with other Eventon snippets has worked).

add_filter(‘evocsv_additional_csv_fields’, ‘evocsv_function1’, 10, 1);
function evocsv_function1($array){
$array[‘evcal_lmlink_header’] = ‘evcal_lmlink’;
$array[‘evcal_lmlink_target_header‘] = ‘value’;
$array[‘event_review_header‘] = ‘event_review’;
return $array;
}
add_action(‘evocsv_save_event_custom_data’,‘evocsv_function2’, 10, 3);
function evocsv_function2($eventID, $postdata, $field){
if($field == ‘evcal_lmlink_header’ && isset( $postdata[$field]) ){
update_post_meta($eventID, ‘evcal_lmlink’, $postdata[$field]);
}
if($field == ‘evcal_lmlink_target_header’ && isset( $postdata[$field]) ){
update_post_meta($eventID, ‘evcal_lmlink_target’, $postdata[$field]);
}
if($field == ‘event_review_header’ && isset( $postdata[$field]) ){
update_post_meta($eventID, ‘event_review’, $postdata[$field]);
}
}

 

and here is the .csv file that I upload. The event appears in my event page, but without the link and without the event review.

https://1drv.ms/u/s!Ak1qKu9qUv9jdk_lpFT05-TdLHU?e=nVyR2u

What am I doing wrong?

Thanks.

Kind regards

Pier Francesco

 

Reply to: tickets(334806)

Hello,

Thank you for your messages, I am going to assign this ticket to Ashan and he will be able to take it from here and find you a solution. Please allow some time for him to get back to you, we greatly appreciate your patience and thank you for being a eventon customer! Also please disable any IP blocking on your site if there are any.

Reply to: tickets(334809)

Hello,

Not possible with EventON + Tickets, I am afraid. However, maybe WooCommerce can help. For example, take a look at

https://woo.com/document/buy-one-get-one-free/

Please note that there is no compatibility between EventON and the plugin above, so not sure if this will work.

Reply to: tickets(334660)

Do it like this:

add_filter(‘evocsv_additional_csv_fields’, ‘evocsv_function1’, 10, 1);

function evocsv_function1($array){

$array[‘evcal_lmlink_header’] = ‘value’;

$array[‘evcal_lmlink_target_header‘] = ‘value’;

return $array;

}

add_action(‘evocsv_save_event_custom_data’,’evocsv_function2′, 10, 3);

function evocsv_function2($eventID, $postdata, $field){

if($field == ‘evcal_lmlink_header’ && isset( $postdata[$field]) ){

update_post_meta($eventID, ‘evcal_lmlink’, $postdata[$field]);

}


if($field == ‘evcal_lmlink_target_header‘ && isset( $postdata[$field]) ){

update_post_meta($eventID, ‘evcal_lmlink_target’, $postdata[$field]);

}

}

Reply to: tickets(334816)

Hello,

Thank you for your messages, I am going to assign this ticket to Ashan and he will be able to take it from here and find you a solution. Please allow some time for him to get back to you, we greatly appreciate your patience and thank you for being a eventon customer! Also please disable any IP blocking on your site if there are any.

Reply to: tickets(334819)

Hello,

This is related to the cache plugin. EventON cannot really show any other content besides the one you put into Event Details, but the cache plugin can.

Try the instructions mentioned in this documentation to make sure. I think that disabling the cache plugin should be enough to see the content correctly.

Reply to: tickets(334820)

Hello,

Please add this CSS code to EventON > Styles (If you don’t see any change, EventON > Scripts & Styling > turn off Write dynamic styles to header > save settings > turn on Write dynamic styles to header):

em.evcal_time.evo_tz_time { text-transform: capitalize !important; }

Reply to: tickets(330606)

Hi there,

One of the problems is with the Daily View plugin. I just updated to the latest 2.0 version and:

i) the shortcode isn’t working — it’s not loading the fixed month I’ve selected (5 / 2023)

ii) It still takes a long time to load despite no events being available

Here’s the shortcode I’m using:

[add_eventon_dv fixed_year=”2023″ fixed_month=”5″ fixed_day=”27″ etc_override=”yes” hide_arrows=”yes” exp_so=”yes” search=”yes” show_limit=”yes” show_limit_ajax=”yes” event_count=”5″ ux_val=”4′”]

Again, this is the page I’m trying to fix for reference:

https://toronto.thewordonthestreet.ca/event-directory/2023-festival-schedule/

I’ve granted admin access via the user login indicated above in the thread.

Thanks,

David