Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_action( 'wp_head', 'remove_my_action' );
- function remove_my_action() {
- remove_action('em_booking_form_status_already_booked', 'em_booking_form_status_already_booked');
- }
- function em_booking_form_status_already_booked_custom(){
- echo get_option('dbem_bookings_form_msg_attending');
- }
- 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