Advertisement
eventsmanager

Removed Bookings Summary "Transactions" section

Jan 2nd, 2019
698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. /*
  2. * This snippet will removed Transactions section or summary under Events > Bookings
  3. */
  4. function my_em_mod(){
  5. global $EM_Gateways_Transactions;
  6. remove_action('em_bookings_dashboard', array($EM_Gateways_Transactions, 'output'),10,1);
  7. remove_action('em_bookings_ticket_footer', array($EM_Gateways_Transactions, 'output'),10,1);
  8. remove_action('em_bookings_single_footer', array($EM_Gateways_Transactions, 'output'),10,1);
  9. remove_action('em_bookings_person_footer', array($EM_Gateways_Transactions, 'output'),10,1);
  10. remove_action('em_bookings_event_footer', array($EM_Gateways_Transactions, 'output'),10,1);
  11. }
  12. if( is_admin() ){
  13. add_action('init','my_em_mod', 1000);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement