• Resolved earth-childe

    (@earth-childe)


    Thanks for this theme! I just found it today, and I like it very much. I really appreciate the DETAILED instructions with screenshots! Thanks so much for that! It was easy to follow. My problem is that I have a strong deadline to finish a site for my client by tomorrow, but the page is not sliding like he saw in your demo. Please help!

    Here is the site in question: https://www.dclum.org/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @earth-childe

    As far as I have seen your site and the sliders are sliding as seen in the demo.
    So is you problem resolved?? If not then please explain you issue in much detail.

    Regards!!

    Thread Starter earth-childe

    (@earth-childe)

    No, when you click on menu items, the page does not slide slowly down or slowly up to each menu item as seen in demo. It goes abruptly from item to item.

    Hello @earth-childe

    There is currently a known issue with WordPress 4.5 jQuery. Until WordPress fixes the bug you can temporarily fix this issue by creating child theme.
    Reference https://codex.www.ads-software.com/Child_Themes for child theme.
    After creating child theme you can copy and paste following code in you child theme’s functions.php file.

    <?php
    
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    		if (!is_admin()) {
    		        wp_deregister_script('jquery');
    		        wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');
    		        wp_enqueue_script('jquery');
    		}
    }

    Hope this will help to resolve your issue.
    If any confusion during the process you can post.
    Let me how it goes.

    Regards!!!

    Thread Starter earth-childe

    (@earth-childe)

    Okay, thank you.

    Thread Starter earth-childe

    (@earth-childe)

    It works!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘My Client's Site is NOT Sliding’ is closed to new replies.