I am currently trying to override the field render files found in /event-ticket-plus/src/views/meta/*.php and this is not possible due to the fact that they are included via a static include path.
Using the latest version of the plugin (4.4 premium and 4.4.0.1 core)
The file /event-tickets-plus/src/Tribe/Meta/Field/Abstract_Field.php on line 222 includes the file from the plugin base path without checking if the user overrides it.
222: include Tribe__Tickets_Plus__Main::instance()->plugin_path . "src/views/meta/{$template}";
The correct way (probably) is:
`222: include Tribe__Tickets_Plus__Main::instance()->get_template_hierarchy( “meta/{$template}” );
Is there a way around this without modifying core files?
Thank you!