Hi there,
Thanks for reaching out. I’m sorry to hear that you’re having issues with the custom ticket fields. I will try to help you get this sorted.
I’m not sure exactly why these are now disabled. They are supported when the post type is created, but there is a filter to allow disabling them which is enabled later in the process somewhere.
In any case, I came up with a snippet that will enable them again. Just add the following to your theme’s functions.php file or a functionality plugin.
/*
* Re enable custom fields on Events
*/
add_action( 'after_setup_theme', 'my_enable_custom_fields', 500 );
function my_enable_custom_fields() {
tribe_update_option( 'disable_metabox_custom_fields', true );
}
Let me know if that works for you.
I’ll see if I can find out any more information on why those are hidden, and if it’s a mistake, I’ll make sure that it is logged as a bug.
Regards,
Sky