Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Fix Conflict with B2BKing plugin */
- function fix_conlfict_with_b2bking_plugin( $conditions ) {
- if ( isset( $_GET['page'] ) ) {
- $lists = array( 'b2bking' );
- foreach ( $lists as $list ) {
- if ( strpos( $_GET['page'], $list ) !== false ) {
- $conditions = true;
- break;
- }
- }
- }
- return $conditions;
- }
- add_filter( 'jkit_remove_form_control_conditions', 'fix_conlfict_with_b2bking_plugin' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement