Support » Plugin: Easing Slider » [Plugin: Easing Slider] Conflict with editorial calendar

Viewing 1 replies (of 1 total)
  • I don’t know if this will help you but it helped me out… open up
    easingslider.php in the plugin folder and find this code

    <script type=”text/javascript”>
    jQuery.noConflict();
    jQuery(document).ready( function($){
    var buttons = { previous:$(‘#lofslidecontent45 .lof-previous’) , next:$(‘#lofslidecontent45 .lof-next’) };
    $obj = $(‘#lofslidecontent45’)
    .lofJSidernews( { interval : <?php echo $interval; ?>,

    and change to this

    <script type=”text/javascript”>

    jQuery(document).ready( function($){
    var buttons = { previous:$(‘#lofslidecontent45 .lof-previous’) , next:$(‘#lofslidecontent45 .lof-next’) };
    $obj = $(‘#lofslidecontent45’)
    .lofJSidernews( { interval : <?php echo $interval; ?>,

    so basically just remove the noConflict function
    jQuery.noConflict();

    which is ironic.. but it helped me out.

    Good Luck – Dave

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Easing Slider] Conflict with editorial calendar’ is closed to new replies.