Hello,
Slider Option will load after sometime.
For your 2nd issue –
Which animation of blog section you want to stop.
For your 3rd issue –
We will add particular category feature in our next update.
Thanks.
Hi, the latest blog area is moving right now. I want the movement to stop.
Is it possible that the latest blog area does not move? It just shows the top 3 most recent posts.
Hi Trip,
Just go to your enigma theme directory and open home-blog.php and see the code below –
<div class="row" id="enigma_blog_section">
and replace the code with the below code –
<div class="row" id="enigma_blog_sections">
and save the file.
Thanks.
Hello, I have changed the code but now I see all of my blog posts on the home page in the latest blog area. I just want the 3 most recent posts in blog area.
This is my website: trippindian.com
Thanks for your time 🙂
Hi Trip,
Just go to your enigma theme directory and open home-blog.php and see the code below –
$args = array( 'post_type' => 'post','posts_per_page' => $posts_count ,'ignore_sticky_posts' => 1);
and replace the code with the below code and save the file –
$args = array( 'post_type' => 'post','posts_per_page' => 3 ,'ignore_sticky_posts' => 1);
Thanks.