Hi there, so I figured out a solution – I don’t know if its perfect but for anyone else out there looking for the ability to add ticket fieldsets to multiple events after importing the Event+Tickets via CSV.
I found the ticket template in the _tribe_tickets_meta_template in the ticket-meta-fieldset post-type in phpmyadmin.
Then I used Aprils query (here: https://theeventscalendar.com/support/forums/topic/how-to-import-tickets-with-active-ticket-fieldsets/#dl_post-1409638)
and updated the wp_postmeta.meta_value = ‘META VALUE GOES HERE’
to the following: (inserting my _tribe_tickets_meta_template for the ‘META VALUE GOES HERE’)
UPDATE wp_postmeta, wp_posts
SET wp_postmeta.meta_value = 'a:3:{i:0;a:5:{s:4:"type";s:4:"text";s:8:"required";s:2:"on";s:5:"label";s:10:"First Name";s:4:"slug";s:10:"first-name";s:5:"extra";a:0:{}}i:1;a:5:{s:4:"type";s:4:"text";s:8:"required";s:2:"on";s:5:"label";s:9:"Last Name";s:4:"slug";s:9:"last-name";s:5:"extra";a:0:{}}i:2;a:5:{s:4:"type";s:4:"text";s:8:"required";s:2:"on";s:5:"label";s:5:"Email";s:4:"slug";s:5:"email";s:5:"extra";a:0:{}}}'
WHERE wp_posts.ID = wp_postmeta.post_id and wp_postmeta.meta_key = '_tribe_tickets_meta' and wp_posts.post_type = "product"