Title: Slider
Last modified: August 30, 2016

---

# Slider

 *  Resolved [alewiz](https://wordpress.org/support/users/alewiz/)
 * (@alewiz)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/slider-150/)
 * I add slides, but still displays only the original three that were while installing
   Theme

Viewing 12 replies - 1 through 12 (of 12 total)

 *  [calskinator](https://wordpress.org/support/users/calskinator/)
 * (@calskinator)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/slider-150/#post-6190831)
 * I am having the same issue. Can anyone help? I love this theme but I am about
   to ditch it
 *  [calskinator](https://wordpress.org/support/users/calskinator/)
 * (@calskinator)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/slider-150/#post-6190832)
 * I have been using WordPress for a decade… and this theme is driving me nuts. 
   Nothing updates when I update it. I look at the page in a browser that has a 
   cleared cache and it still does not show my changes.
 * I don’t have any issues refreshing any other page, WordPress or random page, 
   I work on sites all day long and update 100x an hour… and nothing stays in the
   cache but this theme is literally stuck not updating and it’s horrible because
   it’s absolutely perfect for what I want to do but I can’t even update it due 
   to this glitch… seems I am not alone…
 * Not a browser issue… what could fix this? I am looking for other themes, 99% 
   giving up on this theme despite it being perfect for what I need. Sad…
 *  [calskinator](https://wordpress.org/support/users/calskinator/)
 * (@calskinator)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/slider-150/#post-6190833)
 * I don’t get it. I cleared my cache in 3 browsers across 2 computers and my changes
   only show the first time I visit the site.. after that, even with an EMPTY cache,
   it still shows the old version…
 *  Theme Author [ThinkUpThemes](https://wordpress.org/support/users/thinkupthemes/)
 * (@thinkupthemes)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/slider-150/#post-6190834)
 * Hi Calskinator,
 * Sorry to hear you’re having trouble. Can you confirm, are you only experiencing
   issues with the slider? Do other sections of the theme options panel work? for
   example, can you add images / text to the featured content areas?
 * Also, can you please add a link to your site and we’ll be happy to take a look.
 * Thanks!
 *  [Acal](https://wordpress.org/support/users/acal/)
 * (@acal)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/slider-150/#post-6190835)
 * I have the same issue. Even though I can create a forth slide post, it never 
   renders the slider with more than 3 slides (the original three that where posted
   and the new one omitted). The new slide has identical format etc.
 *  [Acal](https://wordpress.org/support/users/acal/)
 * (@acal)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/slider-150/#post-6190836)
 * Figured it out. I inherited this site so I’m learning this theme. To add more
   slides than 3 you need to go to header.php > modify :
    `<?php query_posts( 'posts_per_page
   =3&post_type=sliders&order=DSC' ); ?>` to read: `<?php query_posts( 'posts_per_page
   =4&post_type=sliders&order=DSC' ); ?>` You can also sort in descending (DSC) 
   or ascending order (ASC).
 * For both changes you will need to make the adjustment three times as the query_posts()
   functions shows three times in my theme. Once each for the image, caption, and“
   paging” functions which should all be set to the same values.
 * Tough to find proper documentation / happy to contribute!
 *     ```
       <?php if (is_front_page()) { ?>
   
             <div id="slider">
               <div class="main_view">
                   <div class="window">
                       <div class="image_reel" style="width: 2790px;">
                       	<?php query_posts( 'posts_per_page=4&post_type=sliders&order=DSC' ); ?>
                           <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                           <a>"><?php the_content();?></a>
       					<?php endwhile; ?>
                          <?php endif; ?>
                       </div>
                          <?php wp_reset_query(); ?>
                       <div class="descriptions">
                       	<?php query_posts( 'posts_per_page=4&post_type=sliders&order=DSC' ); ?>
                           <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                           <div class="desc"><p><?php the_title(); ?></p></div>
       					<?php endwhile; ?>
                          <?php endif; ?>
       				</div>
                          <?php wp_reset_query(); ?>
                       </div>
   
                   <div class="paging">
                       	<?php query_posts( 'posts_per_page=4&post_type=sliders&order=DSC' ); ?>
                           	<?php $i = 1; ?>
                           <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                       		<a>" href="<?php bloginfo('url'); ?>/#"><?php ?></a>
       					<?php endwhile; ?>
                          <?php endif; ?>
                   </div>
                          <?php wp_reset_query(); ?>
               </div> }?>
       ```
   
 *  Theme Author [ThinkUpThemes](https://wordpress.org/support/users/thinkupthemes/)
 * (@thinkupthemes)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/slider-150/#post-6190837)
 * Hi Acal,
 * I’m not sure where you got that code from, but the query_posts() code is not 
   part of the original theme code for Minamaze. Please re-install Minamaze so you
   have the core code and then you should have no problems adding more than 3 slides.
   Minamaze allows for unlimited slides to be added.
 *  [Acal](https://wordpress.org/support/users/acal/)
 * (@acal)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/slider-150/#post-6190838)
 * Thanks for the pointers. Yeah, I inherited this site and was fearing that they
   screwed up the theme. Thanks for the suggestion. I’ll refresh the core theme 
   and go from there.
 * Cheers
 *  [alamb247](https://wordpress.org/support/users/alamb247/)
 * (@alamb247)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/slider-150/#post-6190841)
 * I am having the exact same problem and this is a new install. I did not inherit
   my site from anyone. I love the theme but I am so frustrated I am going to have
   let it go. I wouldn’t know how to change any php like the previous person. I 
   just cannot get the slides to upload. I have 12 WordPress sites. I have never
   had a problem like this. I am totally frustrated.
 *  Theme Author [ThinkUpThemes](https://wordpress.org/support/users/thinkupthemes/)
 * (@thinkupthemes)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/slider-150/#post-6190842)
 * Hi alamb247,
 * It doesn’t sound your problem is the same. Image upload issues are different.
   Please follow forum rules and ensure you submit a new post for your issue.
 * I’m marking this ticket as resolved now as the original issue for which this 
   ticket was opened has been resolved.
 *  [alamb247](https://wordpress.org/support/users/alamb247/)
 * (@alamb247)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/slider-150/#post-6190843)
 * Maybe I wasn’t clear. Here is my issue at this moment. I have uploaded the images
   I want to use by using FileZilla. However, I am not able see more than three 
   slides, although I uploaded four. I tried looking for the header.php file mentioned
   by one of the people above but I didn’t even see the code he is talking about.
   I have successfully installed 14 wordpress themes. I am not exactly a newbie.
   Something is definitely wrong.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [10 years, 5 months ago](https://wordpress.org/support/topic/slider-150/#post-6190844)
 * I’m sorry you still need to open a new thread to discuss this, even if you absolutely
   know you have the same issue: [https://wordpress.org/support/theme/minamaze#postform](https://wordpress.org/support/theme/minamaze#postform)

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Slider’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/minamaze/1.11.2/screenshot.png)
 * Minamaze
 * [Support Threads](https://wordpress.org/support/theme/minamaze/)
 * [Active Topics](https://wordpress.org/support/theme/minamaze/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/minamaze/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/minamaze/reviews/)

 * 12 replies
 * 6 participants
 * Last reply from: [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/slider-150/#post-6190844)
 * Status: resolved