Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Fix Conflict with VIKBooking plugin */
- function fix_conflict_with_vikbooking_plugin() {
- if ( isset( $_GET['page'] ) || isset( $_GET['option'] ) ) {
- $page = $_GET['page'];
- $option = $_GET['option'];
- if ( 'vikbooking' === $page || 'com_vikbooking' === $option ) { /* If VIKBooking plugin Page */
- wp_dequeue_script( 'bootstrap' );
- }
- }
- }
- add_action( 'admin_enqueue_scripts', 'fix_conflict_with_vikbooking_plugin', 100 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement