Reply to: tickets(367857)

Hello,

The only available option is adding event_order=”DESC” to the shortcode.

However, please note that it only orders events within one months and not for the whole list of events.

Reply to: tickets(367861)

Hello,

Please send us wp-admin access to your site as a private message for us to further assist your situation.

Also (I’ve read that you updated everything) check for latest version of this software from here Your issue might be related to an older version you are running and we might have resolved this already in the newer version update. If you are on latest version of our software and the issue still persist please let us know.

Reply to: tickets(367862)

Hello,

Login info didn’t work for me. Could you check?

Please also try updating manually by following:

To update eventon addons: You can download latest eventon addons from myeventon > my account. Then you can go to your website, deactivate old addon and install new one and activate then delete the old addon. This link will further explain the process. Also you can follow us on twitter to get real-time announcements on updates!

Reply to: tickets(367863)

Hello,

The second part:

add_filter(‘evotx_additional_ticket_info_fields’, ‘evotx_1’, 10,1);

function evotx_1($fields){

// additonal field code block

$fields[‘business’] = array(

‘type’=>’text’,

‘label’=> evo_lang(‘Business Name’),

‘required’=> false,

);


$fields[‘another_field’] = array(

‘type’=>’text’,

‘label’=> evo_lang(‘Field 2’),

‘required’=> false,

);

// you can use same code block for more fields

return $fields;

}

The third code:

add_filter(‘evotx_get_attendees_for_event’, ‘evotx_3’,10, 3);

function evotx_3($arr, $event_id, $_th){

if(!isset($_th[‘business’])) return $arr;

$arr[‘oD’][‘business’] = $_th[‘business’];


if(!isset($_th[‘another_field’])) return $arr;

$arr[‘oD’][‘another_field’] = $_th[‘another_field’];

// the above 2 lines can be used for all other new fields

return $arr;

}

Please adding these alongside with the first code and then let us know.

Reply to: tickets(367867)

Hello,

I added one test event and it seems to be visible on FulCal:

https://www.uic.mx/test/

Please check and let me know.

Reply to: tickets(367331)

Unfortanately no combination of those settings loaded the gravity form without breaking the other event content.

Reply to: tickets(367759)

Ok, I deactivated all non-EventOn plugins and switched to the WordPress twenty twenty-four theme. That took care of the missing day but the subtitle is still missing.