Title: Plugin Conflict w/ LayerSliderWP
Last modified: August 21, 2016

---

# Plugin Conflict w/ LayerSliderWP

 *  Resolved [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/plugin-conflict-w-layersliderwp/)
 * I’m using LayerSliderWP and Easy Fancybox – there seems to be a conflict with
   the two plugins in the WP Admin Panel. LayerSliderWP includes a preview functionality
   in the slider builder UI. Easy Fancybox deregisters a dependent JS file (jquery
   easing) that breaks the LayerSliderWP preview functionality. I’m using the latest
   versions of both plugins. If I comment out lines 432 – 436 in easy-fancybox/easy-
   fancybox-class.php
 *     ```
       wp_deregister_script('easing');
       wp_deregister_script('jquery.easing');
       wp_deregister_script('jqueryeasing');
       wp_deregister_script('jquery_easing');
       wp_deregister_script('jquery-easing');
       ```
   
 * …it fixes the issue with LayerSliderWP. It seems that when you deregister jquery
   easing you should only do so on the frontend:
 *     ```
       if ( !is_admin() ) {
           wp_deregister_script( 'jquery.easing' );
       }
       ```
   
 * I’ve tested this and it works fine from my initial testing. Please let me know
   if you need anymore info on this! Thanks for the great plugin.
 * [http://wordpress.org/extend/plugins/easy-fancybox/](http://wordpress.org/extend/plugins/easy-fancybox/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/plugin-conflict-w-layersliderwp/#post-3932424)
 * Any update or reply here? Easy Fancybox + LayerSlider is a combo I always use
   so adding compatibility would be very nice!
 *  [Rolf Allard van Hagen](https://wordpress.org/support/users/ravanh/)
 * (@ravanh)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/plugin-conflict-w-layersliderwp/#post-3932455)
 * Hi Devin, thanks for sharing! It’ll be in the new release… 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Plugin Conflict w/ LayerSliderWP’ is closed to new replies.

 * ![](https://ps.w.org/easy-fancybox/assets/icon-256x256.png?rev=3188201)
 * [Firelight Lightbox](https://wordpress.org/plugins/easy-fancybox/)
 * [Support Threads](https://wordpress.org/support/plugin/easy-fancybox/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-fancybox/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-fancybox/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-fancybox/reviews/)

## Tags

 * [easing](https://wordpress.org/support/topic-tag/easing/)
 * [jquery](https://wordpress.org/support/topic-tag/jquery/)

 * 2 replies
 * 2 participants
 * Last reply from: [Rolf Allard van Hagen](https://wordpress.org/support/users/ravanh/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/plugin-conflict-w-layersliderwp/#post-3932455)
 * Status: resolved