Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

Viewing 14 posts - 1 through 14 (of 14 total)

Easy Slider and Error Message

Home Forums Misc. General Forums Easy Slider and Error Message

  • #12757

    seanyoung

    subscriber

    Website: louisegoodrem.com.au

    Is it possible to set the transition in the Nivo slider to dissolve only?

    Also, when incorrect details are entered in a form on my site this error message appears:

    “Your messange hasn’t been sent.

    Please enter your name

    Please enter a valid email address

    Please enter a message”

    Is it possible to fix the spelling error in the message? ie. Messange

    #18817

    Towfiq I.

    administrator

    You mean “fade” effect?

    open up page-contact.php and fix the typo

    #18818

    seanyoung

    subscriber

    Yes, fade effect.

    #18819

    Towfiq I.

    administrator

    open up fuctions.php and replace the word “random” with “fade”

    #18820

    seanyoung

    subscriber

    Thanks for all your help.

    I can’t seem to find random in the functions.php

    #18821

    Towfiq I.

    administrator

    look carefully. press ctrl+f and search for it.

    #18822

    seanyoung

    subscriber

    sorry, i have searched through with ‘ctrl+f’ through the functions.php and all other .php files and there is no ‘random’ setting…

    #18823

    Towfiq I.

    administrator

    can you copy all the code from functions.php and paste it in pastebin.com and paste the link here.

    #18824

    seanyoung

    subscriber
    #18825

    Towfiq I.

    administrator

    you were right. ther isn’t any. Find these lines:

    <script type="text/javascript">
    jQuery(window).load(function() {
    jQuery('#zn_nivo').nivoSlider({pauseTime: <?php echo of_get_option('sliderspeed_text'); ?>, controlNavThumbs: true,<?php if(of_get_option('nivothumb_checkbox') == "0"){ ?> directionNav: false,<?php } ?> controlNavThumbsReplace: '-150x150.jpg'});
    });
    </script>

    and replace them with:

    <script type="text/javascript">
    jQuery(window).load(function() {
    jQuery('#zn_nivo').nivoSlider({pauseTime: <?php echo of_get_option('sliderspeed_text'); ?>, controlNavThumbs: true,<?php if(of_get_option('nivothumb_checkbox') == "0"){ ?> directionNav: false,<?php } ?> controlNavThumbsReplace: '-150x150.jpg', effect: fade});
    });
    </script>

    #18826

    seanyoung

    subscriber

    Im sorry,

    this hasnt worked, the slider simply pauses on the first image?

    #18827

    Towfiq I.

    administrator

    try this:

    <script type="text/javascript">
    jQuery(window).load(function() {
    jQuery('#zn_nivo').nivoSlider({pauseTime: <?php echo of_get_option('sliderspeed_text'); ?>, controlNavThumbs: true,<?php if(of_get_option('nivothumb_checkbox') == "0"){ ?> directionNav: false,<?php } ?> controlNavThumbsReplace: '-150x150.jpg', effect: 'fade'});
    });
    </script>

    #18828

    seanyoung

    subscriber

    Rock Star!!!! thank works.. Thanks!

    #503918

    Current Version Fix

    I am looking for the same solution as this >> http://www.towfiqi.com/forums/topic/easy-slider-and-error-message << but I can’t find the code section replaced. Have you updated the theme and changed the config settings?