Advertisement
eventsmanager

remove the link "Manage My Bookings"

Nov 7th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'wp_head', 'remove_my_action' );
  4. function remove_my_action() {
  5. remove_action('em_booking_form_status_already_booked', 'em_booking_form_status_already_booked');
  6. }
  7. function em_booking_form_status_already_booked_custom(){
  8. echo get_option('dbem_bookings_form_msg_attending');
  9. }
  10. add_action('em_booking_form_status_already_booked', 'em_booking_form_status_already_booked_custom',100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement