Try resetting your permalinks in Settings > Permalinks(choose the default ones and then switch back)
I have a problem with “Load more”. “Load more” works well at galleries and portfolios. But not with the blog. There you can to “Load more” does not scroll and / or other blogs appear superimposed. I’ve seen this problem on other blogs Elastico emerges. Does anyone have a solution? Thanks. My Blog: www.wernergetzmann.ch
I did have the same issue, it appears since upgrading to WordPress 3.5. To resolve it I’ve just replaced line 2 of the loop.php file as follow:
<div post_class=""> id="post-<?php the_ID(); ?>"> (I've added the post class) It will fix your issue. </div>
Edit: I have issue posting the php code on the forum. I’ve just put (loop.php file line 2): post_class(‘post’); instead of: post_class();
Hi BIGEasy
Super. It works. I will summarize. Line 2 in loop.php<div post_class=""> id="post-<?php the_ID(); ?>"> by replacing <pre><div post_class=""> id="post-<?php the_ID(); ?>"> Many thanks </div></pre></div>
Have the same problem. But it doesn’t work for me! Here is my code, what do I have to do:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div post_class=""> id="post-<?php the_ID(); ?>">
<div class="hentry-inner">
<?php $format = get_post_format();
if( false === $format ) $format = 'standard';
get_template_part( 'includes/postformats/'.$format );
?>
</div>
</div>
<?php endwhile; endif; ?>gluglu said
Hi BIGEasy Super. It works. I will summarize. Line 2 in loop.php<div post_class=""> id="post-<?php the_ID(); ?>"> by replacing <pre><div post_class=""> id="post-<?php the_ID(); ?>"> Many thanks Sorry. Correctly, the following In loop.php file line 2: Replace post_class() to post_class(‘post’) </div></pre></div>
martinbruss said
Have the same problem. But it doesn’t work for me! Here is my code, what do I have to do:<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div post_class=""> id="post-<?php the_ID(); ?>"> <div class="hentry-inner"> <?php $format = get_post_format(); if( false === $format ) $format = 'standard'; get_template_part( 'includes/postformats/'.$format ); ?> </div> </div> <?php endwhile; endif; ?>
In loop.php file line 2: Replace post_class() to post_class(‘post’)
gluglu said
martinbruss saidIn loop.php file line 2: Replace post_class() to post_class(‘post’)
Have the same problem. But it doesn’t work for me! Here is my code, what do I have to do:<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div post_class=""> id="post-<?php the_ID(); ?>"> <div class="hentry-inner"> <?php $format = get_post_format(); if( false === $format ) $format = 'standard'; get_template_part( 'includes/postformats/'.$format ); ?> </div> </div> <?php endwhile; endif; ?>
Thanx for fast feedback! But it didn’t work for me. Is anything else what I have looking for? I use Theme Version 1.1.2! Maybe this is my problem?!
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div post_class=""> id="post-<?php the_ID(); ?>">
<div class="hentry-inner">
<?php $format = get_post_format();
if( false === $format ) $format = 'standard';
get_template_part( 'includes/postformats/'.$format );
?>
</div>
</div>
<?php endwhile; endif; ?>Her is the code I used…but it didn’t work! Is there anything else? And what version of the theme you use? I have version 1.1.2:
<?php post_class(‘post’); ?> id="post-<?php the_ID(); ?>">