Advertisement
brook-tribe

WooTix Prevent Hijack

Sep 16th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. // Allows folks to visit the product page for a ticket, instead of being redirect to the event page
  2. // Credit: Barry
  3. add_action( 'init', 'wootix_no_hijack' );
  4.  
  5. function wootix_no_hijack() {
  6.         if ( ! class_exists( 'TribeWooTickets' ) ) return;
  7.         remove_filter( 'post_type_link', array( TribeWooTickets::get_instance(), 'hijack_ticket_link' ), 10, 4  );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement