The directed method for making special customizations to the Tickets display form on an event is to copy the “event-tickets-plus/src/views/wootickets/tickets.php” file into your theme folder at “tribe-events/wootickets/tickets.php”. This works great! However, overriding the form like this breaks the ticket fields feature. When you start selecting a quantity of tickets, no fields appear!
The cause of this is the statement on line 114 of the ‘tickets.php’ template that includes the “meta.php” based on a relative path to the file:
include dirname( __FILE__ ) . ‘/../meta.php’;
Obviously, copying over this template to the theme folder for overriding purposes is going to break that path.
For now, I can just hard-code the path to “meta.php” in the template (“include WP_PLUGIN_DIR . ‘/event-tickets-plus/src/views/meta.php'”) to work around this, but this issue really should be fixed. Thanks!