I tride disabling Compress JavaScript just to try but it still don’t work. I can put my original code here (sorry there are some czech words in comments). This is my original news-archive.php:
<?php get_header(); ?>
<div id="wrapper-page">
<div id="main-content" class="left">
<h2 class="yellow-label">Novinky</h2>
<div id="yellow-label-corner">
<img class="yellow-label-img" src="<?php bloginfo ('template_directory'); ?>/images/h2-right-29x39.png" />
</div>
<!-- loop za?átek -->
<?php $mypost = array( 'post_type' => 'novinky', ); ?>
<?php while (have_posts() ) : the_post();?>
<div id="news-area">
<div id="news-post">
<!-- thumbnail za?átek -->
<?php if( '' != get_the_post_thumbnail() ) : ?>
<div id="news-img" class="left">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'novinky-thumb' ); ?></a>
</div>
<?php else : ?>
<?php endif ?>
<!-- thumbnail konec -->
<!-- nadpis --><h2 class="news-h2"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<!-- datum --><p class="datum">publikováno: <?php the_time();?></p>
<!-- obsah --><p><?php the_content ('cely ?lánek'); ?></p>
</div>
<!-- cely ?lánek -->
<p><a href="<?php the_permalink(); ?>"><div id="read-more">cely ?lánek</div></a></p>
<div class="clear"></div>
<hr />
</div>
<?php endwhile ?>
<!-- loop konec -->
<!-- Star?í/nověj?í -->
<div id="prev-next">
<div class="left"><?php next_posts_link('< STAR?í'); ?> </div>
<div class="right"><?php previous_posts_link('NOVěJ?í >');?></div>
</div>
<div class="clear"></div>
</div>
<!-- SIDEBAR --><?php include (get_template_directory() . "/code-sidebar-akcninabidka.php"); ?>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>
When i use your plugin only first two news show up and also prev-next area dissapear.
Another thing – even if i uncheck Compress JavaScript in WP Super Minify settings in source code of my web is:
“*** HTML, JavaScript and CSS of this site is combined and compressed by WP Super Minify plugin v1.0”
So it still compress JavaScript?