Advertisement
eventsmanager

Disable coupon feature

May 3rd, 2024
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. function remove_coupon_manager(){
  4. remove_submenu_page( 'edit.php?post_type=event', 'events-manager-coupons', 100 );
  5. }
  6. add_action( 'admin_menu', 'remove_coupon_manager', 100 );
  7.  
  8. function remove_booking(){
  9. remove_action('em_events_admin_bookings_footer',array('EM_Coupons', 'admin_meta_box'),20,1);
  10. remove_action('em_events_admin_bookings_footer',array('EM_Coupons', 'em_cart_footer'),20,1);
  11. remove_action('em_booking_form_footer',array('EM_Coupons', 'em_booking_form_footer'),20,1);
  12. }
  13. add_action('init','remove_booking',100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement