Advertisement
fauzanjeg

Jeg Elementor Kit - Bootstrap Conflict with QuadMenu plugin

Feb 6th, 2022
1,566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. /* Jeg Elementor Kit - Bootstrap Conflict with QuadMenu plugin */
  2. function bootstrap_quadmenu_conflict( $conditions ) {
  3.     global $pagenow;
  4.     if ( 'nav-menus.php' === $pagenow ) {
  5.         return true;
  6.     }
  7.     return $conditions;
  8. }
  9. add_filter( 'jkit_remove_form_control_conditions', 'bootstrap_quadmenu_conflict' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement