• hi how do I stop the blog animation. I want users to see the first blog post and manually move to other not automatically.

    our site is running So so so slow and I’m not sure If this is the reason. Thanks in advance

    https://albionroversfc.co.uk/

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello, kasule

    I checked your site and working fine, it’s not slow.

    And for manually move blog post follow the steps –

    Go to theme directory -> home blog.php file here see the line no 125. see the code below –

    auto: {
    play: false
    }

    Replace it with the below code –

    auto: {
    play: true
    }

    and save the file.

    Thanks.

    Thread Starter kasule

    (@kasule)

    thanks – that worked. Site just seems to take a while to load the Latest News items – about 3 seconds.

    It’s may take time due to animation, So Go to theme directory -> home blog.php file here see the line no 22. see the code below –

    <div class="col-md-4 col-sm-12 scrollimation scale-in d2 pull-left">

    Just remove the “scrollimation scale-in d2 pull-left” from this line –

    <div class="col-md-4 col-sm-12">

    and save the changes. And then check the site.

    Thanks.

    Hi I would like to do the same thing. But when I go to home-blog.php there isn’t this code you are talking about. It just has this code below. My site is realnutritionllc.com. Would like to stop the blog animation and just have it static. Any help is appreciated. Thanks.

    publish; $args = array( ‘post_type’ => ‘post’,’posts_per_page’ => $posts_count ,’ignore_sticky_posts’ => 1); $post_type_data = new WP_Query( $args ); while($post_type_data->have_posts()): $post_type_data->the_post(); ?>
    ‘enigma_img_responsive’); if(has_post_thumbnail()): the_post_thumbnail(‘home_post_thumb’,$img); endif; ?>

    ‘); ?>

    Enigma

    Hello marmic41,

    You want to remove slider rotation?? or animation effect(“scrollimation scale-in d2 pull-left”) ??

    Let us know clearly.

    Thanks.

    I would like to remove the animation that is for the blog specifically (not the slider). At the bottom of the webpage, you can see that the blog post under the title “Nutrition Knowledge Blog” drift to the left. I want to stop that and make it static, and also allow the most recent posts to be seen.

    Thank you.

    Hii,

    Go to enigma theme directory and open home-blog.php file and see line no. 15 –

    <div class="row" id="enigma_blog_section">

    replace it with below code –

    <div class="row" id="enigma_blog_section1">

    now see line no. 18 –

    $args = array( 'post_type' => 'post','posts_per_page' => $posts_count ,'ignore_sticky_posts' => 1);

    replace it with below code –

    $args = array( 'post_type' => 'post','posts_per_page' => 10 ,'ignore_sticky_posts' => 1);

    here you can change the value of posts_per_page as per your requirement.

    Thanks.

    Thanks for your response. Unfortunately I cannot implement these changes, as the code that you are referring to does not even show up when I go to the home-blog.php file. There are only 3 lines of code, none of which resembles what you typed above. Any suggestions?

    To clarify, I simply want to make the drifting to the left animation stop. I would like the blog to be stable and not cycle through posts automatically. Just like “Kasule” user did on his website.

    Thank you!

    Hii,

    Go to enigma theme directory and open home-blog.php file now replace the code with the code given in the below link and save the file –

    https://pastebin.com/7sui1XLW

    Thanks.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Stop blog animation’ is closed to new replies.