Viewing 12 replies - 1 through 12 (of 12 total)
  • I am having the same issue. Can anyone help? I love this theme but I am about to ditch it

    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…

    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

    (@thinkupthemes)

    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!

    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.

    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

    (@thinkupthemes)

    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.

    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

    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

    (@thinkupthemes)

    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.

    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

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    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

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

The topic ‘Slider’ is closed to new replies.