Support » Plugin: upPrev — Next Post Slide-in Box » Problem WordPress 3.2 and sliders (jQuery easing)

  • Resolved giacos

    (@giacos)


    Good morning,

    The extension upPrev seems to don’t work under WordPress 3.2 and jQuery « easing ».

    Some WordPress themes includes jQuery « easing » to make a slider.

    For exemple :

    http://jinsonathemes.com/fabs/?themedemo=Zerafin
    http://jinsonathemes.com/fabs/?themedemo=Calypso

    With previous versions of WordPress (up to 3.1.4), absolutely no problem.

    upPrev worked great !

    On WordPress 3.2:

    If we remove this line from file header.php :

    wp_enqueue_script(‘easing’, get_stylesheet_directory_uri() . ‘/js/jquery.easing.1.1.js’);

    upPrev will work again…

    But, of course, the slider can’t work…

    I also know that WordPress 3.2 includes jQuery 1.6.1…

    Well, do you think that it will be possible in future to fix this ?

    Thank you for having read my message,

    Have a good day,
    Salutations.

    Giacos.

    PS : I’m french guy, so i’m really sorry for my bad english ! 😉

    I help an association which works to help deaf peoples. The aim is to make a website who translate highway code / traffic rules in sign language.

    The objectif is to use upPrev to read the next post, the next road-sign easily.
    upPrev is a really good plugin ! It’s simple, class and useful.

    The site will open at the beginning of august.

    You can see it here :

    http://www.pimpmylink.fr/2623

    You shoud click on « Catégories » at the bottom to see few articles…

    Bye 😉

    Thanks.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Contributor Grzegorz Krzyminski

    (@gkrzyminski)

    Here is a solution:

    You can replace:
    wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.1.js');
    with:

    wp_enqueue_script('easing', 'http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js');
    wp_enqueue_script('easing-comp', 'http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js');

    There are some absolute paths, so you may want to download those files, put them in your theme’s /js folder, and then you can replace them with relative paths.

    Explanation: The first file contains jQuery.easing effects – the latest version. The second one has backward compatibility, which is required for your theme, where you can find previously used names (i.e “backout” was replaced by “easeOutBack” in newer version).

    Temporally preview available at: http://gkrzyminski.pl/wordpress/

    Thread Starter giacos

    (@giacos)

    Good afternoon Grzegorz Krzyminski ,

    Thank you !

    Thank you a lot, thank you so much! That’s very kind of you!

    I can’t believe that you install Zerafin theme on your own server to help us !

    I have downloaded jquery.easing.1.3.js and jquery.easing.compatibility.js on this website :
    http://gsgd.co.uk/sandbox/jquery/easing/

    I uploaded them on the server web site.

    Then, i have changed header.php file like this : (with relative paths)

    wp_enqueue_script(‘easing’, get_stylesheet_directory_uri() . ‘/js/jquery.easing.1.3.js’);
    wp_enqueue_script(‘easing-comp’, get_stylesheet_directory_uri() . ‘/js/jquery.easing.compatibility.js’);

    And that’s works great !

    It’s simply perfect !

    Thank you again Grzegorz to spend time to help us.

    Have a good evening.

    Bye.

    Giacos. 😉

    Hello,
    I have the same problem, my slider is not working when I install some plugins with custom fields.
    I have WP 3.2.1 on multisite, with the Theme Hello of Templatic:
    The code en Index are:
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/library/js/jquery.easing.1.3.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/library/js/slider.js”></script>
    <script type=”text/javascript”>
    <?php if(get_option(‘ptthemes_slider_home_auto’)==”){$autorun = ‘true’;}else{$autorun = get_option(‘ptthemes_slider_home_auto’); }?>
    <?php if(!get_option(‘ptthemes_slider_home_speed’)){$speed = ‘2500’;}else{$speed = get_option(‘ptthemes_slider_home_speed’); }?>
    <?php if(get_option(‘ptthemes_slider_home_auto’)==’false’){$speed = ‘7000’;}?>
    var autoSlider_var = ‘<?php echo $autorun;?>’;
    var autoSlideInterval_var = ‘<?php echo $speed;?>’;
    </script>
    The code in the header are:
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/library/js/pngfix.js”></script>
    <SCRIPT src=”<?php bloginfo(‘template_directory’); ?>/library/js/jquery_m.js” type=text/javascript></SCRIPT>
    <SCRIPT src=”<?php bloginfo(‘template_directory’); ?>/library/js/jquery.helper.js” type=text/javascript></SCRIPT>
    <![endif]–>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/library/js/jquery-1.3.2.min.js”></script>

    I have problems when I install the Plugins: quick-post-widget and WP Custom Search.
    Can you helpme please ?

    I did everything that made the French friend, but in my case it did not work.

    Thanks

    Plugin Contributor Grzegorz Krzyminski

    (@gkrzyminski)

    Hello mcamposs

    Installation and enabling mentioned plugins didn’t stop upPrev from appearing (different theme)

    As far as I see Templatic is not a free theme, so I’m not able to download it for experiment purposes.

    Could you provide link to your WP website?

    Grzegorz,

    I am having the same issue on my blog. Installed the plugin but nothing happens.

    Could you help me identify what’s wrong?

    Thank you!

    Plugin Contributor Grzegorz Krzyminski

    (@gkrzyminski)

    @maxyro

    First thing what you can do is to check whether your theme contains wp_footer();

    Mostly it’s located inside footer.php file. If it’s not called anywhere you need to add it.

    The theme didn’t have it. I added it after “<!– END MAIN WRAPPER –>”. Don’t know if it’s good this way, but nothing was broken.

    Seems to work now. Thanks so much for your help.

    One more thing – Anyway I can make the plugin show not the most recent posts but random ones? Or posts that I choose?

    Plugin Contributor Grzegorz Krzyminski

    (@gkrzyminski)

    @maxyro

    Referring to random order you may want to read this thread: Looking to do 2 things: Random and Stop before bottom of page

    If you want to display concrete post – this is some quick thought but you may experiment with a shortcode by placing it inside post’s content:
    [upprev]Sample HTML Text[/upprev]
    Sample HTML Text can be replaced and customized by that what’s normally generated inside:

    <div id="upprev_box">
    ...
    </div>

    Maybe someone can help:

    I’m trying to use EasingSlider plugin with my site. I have WordPress 3.2.1 and using Coraline theme. My site is http://www.dianeteall.com

    On the WordPress plug-in page it says “not enough data” under the compatibility.
    When I install Easing Slider:

    1. It messes up my Flickr Widget on front page
    2. Clicking ‘Upload Image’ under ‘Custom Images’ results in black screen (Can’t load my images)
    3. The slider is just ‘loading’ indefinitely when placed on a page.

    Any suggestions???? Greatly appreciated!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Problem WordPress 3.2 and sliders (jQuery easing)’ is closed to new replies.