Hi Ram,
We are unfortunately unable to provide support through our Pre-Sales forum channel, but you can head over to The Events Calendar WordPress.org support forums for assistance and answers.
If you have a PRO license, you can log into your account and get assistance through the PRO forums. If you need to reset your password, you can do so here. This will send an email to the account used when you initially registered for the support forums.
To get you started…
I believe there is no way to override that class.
But you could hook into the following action:
[code language=”php”]do_action( ‘tribe_events_unlink_post’, $target_post_id, $subject_post_id );[/code]
So you would need to add something like this in your functions.php file:
[code language=”php”]
add_action( ‘tribe_events_unlink_post’, ‘my_action’ );
function my_action( $target_post_id, $subject_post_id ) {
//do stuff here
}
[/code]
Cheers,
Andras