mayur6578
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Loop distracts when i navigate to page 3 through paging ?Resolved;
<?php $post_count = 1; $ad_count = 1; $temp_count = 1; ?> <?php if (have_posts()) : while ( have_posts() ) : the_post() ?> <?php if($post_count <= 2) { include(TEMPLATEPATH. '/includes/loop.php'); $post_count++; } elseif($ad_count == 3) { ?> <div class="ad-box entry-last"> <? ad_right(); ?> </div> <? $post_count++; $temp_count++; echo '<div class="clear"></div>'; include(TEMPLATEPATH. '/includes/loop.php'); } elseif($post_count >= 4) { include(TEMPLATEPATH. '/includes/loop.php'); if ($temp_count % 3 == 0) { echo '<div class="clear"></div>'; } $post_count++; } ?> <?php $ad_count++; $temp_count++; endwhile; ?>
in the loop.php at begining:
<a id="post-<?php the_ID(); ?>" class="entry-box <?php if($temp_count % 3 == 0 ) { echo 'entry-last'; } ?>" href="<?php the_permalink(); ?>">
Forum: Plugins
In reply to: No stars in snippet; source has everything it needs.Oops sorry! here is screenshot
Forum: Themes and Templates
In reply to: What does "responsive theme" mean?thank you! Amy
Forum: Themes and Templates
In reply to: How to add one more column in grid style ?woohooo……(screenshot)
Thank you very much sir…you are wonderful!
[if there is anything i can do please let me know]Forum: Fixing WordPress
In reply to: Cheatin uh? (When trying to upload media via 3rd party theme)thanks a lot Producerism it really helped me on https://freepremiumwordpressthemes.in
Forum: Fixing WordPress
In reply to: category, author, archives and tags not loopingdo you usually keep following a problem for months ??
don’t mind but if i was you i would have tried to get rid by installing another theme.Forum: Fixing WordPress
In reply to: Admin Links at bottom of pagetwo possibilities in my guess!
1. your Sidebar is after Footer. Check in your themes”index.php” file that Footer follows the Sidebar not Sidebar following Footer. The code at the end of file possibly should look like this<?php get_sidebar(); ?> <?php get_footer(); ?>
2. Try by reducing the width of your Content area. in style.css file.
if this solves your problem that’s then good otherwise it’s out of my knowledge.