Tribe__Tickets_Plus__Commerce__WooCommerce__Main::woocommerce_meta_box()
Registers a metabox in the WooCommerce product edit screen with a link back to the product related Event.
Source
File: src/Tribe/Commerce/WooCommerce/Main.php
public function woocommerce_meta_box() {
$post_id = get_post_meta( get_the_ID(), $this->event_key, true );
if ( ! empty( $post_id ) ) {
add_meta_box( 'wootickets-linkback', 'Event', array( $this, 'woocommerce_meta_box_inside' ), 'product', 'normal', 'high' );
}
}