• Hi and thank you in advance for your kind help πŸ™‚

    FaceBook & Tweetmeme share buttons are not displaying in my blog loop but are displaying in archives and individual posts.

    AddtoAny is displaying in all three locations.

    Deactivated and reactivated plugins and have removed all styling.

    Below are links code:

    Blog Loop
    Post
    Archive
    ——————————————————————————————————————–
    <?php
    /*
    Template Name: Blog Loop
    */
    ?>
    <?php get_header(); ?>

    <div class=”containerthreecolumn”>
    <div class=”leftcolumnblog”>

    <?php get_header(); ?>

    <h2 class=”pagetitle”><?php the_title(); ?></h2>

    <?php if (have_posts()) { ?>

    <?php
    $postCount = 0;
    $page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
    query_posts( ‘paged=$page&post_per_page=-1&cat=’ . get_query_var(‘cat’) );
    while (have_posts()) { the_post();
    if( $postcount == 0 ) {
    //GETS LATEST OR STICKY POST
    ?>

    <div class=”clearfloat”>

    ” rel=”bookmark” title=”<?php the_title(); ?>”>

    <div>
    <h2>” rel=”bookmark” title=”<?php the_title(); ?>”>
    <?php the_title(); ?>
    </h2>

    <!– commented date <p class=”date”><?php the_time(‘n/d/y’); ?></p> –>

    <?php the_content(); ?>

    </div>

    </div><!–END LEAD/STICKY POST–>

    <div>
    <h3><?php _e(‘Recent Posts’,’Mimbo’); ?></h3>

    <?php
    }
    elseif( $postcount > 0 && $postcount <= 4 ) {
    //GETS NEXT FOUR EXCERPTS
    ?>

    <div class=”clearfloat recent-excerpts”>
    ” rel=”bookmark” title=”<?php the_title(); ?>”>
    <?php echo get_post_image (get_the_id(), ”, ”, ” .get_bloginfo(‘template_url’) .’/scripts/timthumb.php?zc=1&w=105&h=85&src=’); ?>

    <h4>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></h4>

    <p class=”date”><?php the_time(‘n/d/y’); ?></p>
    <?php the_excerpt(); ?>
    </div>

    <?php //GETS NEXT HEADLINES
    }
    else {
    ob_start();
    echo ‘

    • <a href=”‘;
      the_permalink();
      echo ‘”>’;
      the_title();
      echo ‘
    • ‘;
      $links[] = ob_get_contents();
      ob_end_clean();
      }
      $postcount ++;
      }
      }
      else {
      ?>

      <?php } ?>

      <?php
      if(count($links)): ?>

      <h3><?php _e(‘Older Posts’,’Mimbo’); ?></h3>
      <ul class=”headlines”><?php echo join(“\n”, $links); ?>

      <?php endif; ?>
      </div><!–END RECENT/OLDER POSTS–>

      </div>

      <div class=”rightsidebars”>
      <div class=”rightcolumn”>
      <?php get_sidebar(right); ?>
      </div>
      <div class=”middlecolumn”>
      <?php get_sidebar(); ?>
      </div>
      </div>
      </div>

      <?php get_footer(); ?>

  • The topic ‘Share Plugin not Displayings in Blog Loop but Does in Archive & Posts’ is closed to new replies.