eventsmanager icon

remove the link "Manage My Bookings"

eventsmanager | PRO | 11/07/24 03:30:05 PM UTC | 0 ⭐ | 352 👁️ | Never ⏰ | []
text |

400 B

|

None

|

0 👍

/

0 👎

<?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);

Comments