Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Fix Conflict with WPForms plugin */
- function fix_conflict_with_wp_forms_plugin() {
- if ( isset( $_GET['page'] ) ) {
- $page = $_GET['page'];
- $page = explode( '-', $page );
- if ( 'wpforms' === $page[0] ) { /* If WPForms plugin Page */
- remove_action( 'admin_enqueue_scripts', array( JNews\Asset\BackendAsset::getInstance(), 'backend_script' ), 99 );
- }
- }
- }
- add_action( 'wp_loaded', 'fix_conflict_with_wp_forms_plugin' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement