Advertisement
fauzanjeg

JKIT || Fix Bootstrap Conflict

Jan 16th, 2023
1,616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. /**
  2.  * JKIT || Fix Bootstrap Conflict
  3.  */
  4. if ( ! function_exists( 'jkit_fix_bootstrap_conflict' ) ) {
  5.     /**
  6.      * Fix Bootstrap Conflict function
  7.      *
  8.      * @param bool $conditions True or False.
  9.      *
  10.      * @return true
  11.      */
  12.     function jkit_fix_bootstrap_conflict( $conditions ) {
  13.         return true;
  14.     }
  15.     add_filter( 'jkit_remove_form_control_conditions', 'jkit_fix_bootstrap_conflict' );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement