Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * This snippet will removed Transactions section or summary under Events > Bookings
- */
- function my_em_mod(){
- global $EM_Gateways_Transactions;
- remove_action('em_bookings_dashboard', array($EM_Gateways_Transactions, 'output'),10,1);
- remove_action('em_bookings_ticket_footer', array($EM_Gateways_Transactions, 'output'),10,1);
- remove_action('em_bookings_single_footer', array($EM_Gateways_Transactions, 'output'),10,1);
- remove_action('em_bookings_person_footer', array($EM_Gateways_Transactions, 'output'),10,1);
- remove_action('em_bookings_event_footer', array($EM_Gateways_Transactions, 'output'),10,1);
- }
- if( is_admin() ){
- add_action('init','my_em_mod', 1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement