Removing date and comments from the post rollover menu
-
Hello,
I need some help in removing the date and comments from the post rollover (hover / mouseover) image menu in Imbalance 2. From what I’ve read I think it is buried in my loop.php but I have no idea how to remove it.
I’ve copied and pasted the code below. Does anyone know how to remove the comments and date from the rollover based on the code below? Any help would be appreciated!!
<?php $imbalance2_theme_options = get_option('imbalance2_theme_options') ?> <div id="boxes"> <?php while ( have_posts() ) : the_post(); ?> <div class="box"> <div class="rel"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a> <?php if ($imbalance2_theme_options['images_only'] == 0): ?> <div class="categories"><?php imbalance2_posted_in(); ?></div> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <?php the_excerpt() ?> <div class="posted"><?php imbalance2_posted_on() ?> <span class="main_separator">/</span> <?php echo comments_popup_link( __( 'No comments', 'imbalance2' ), __( 'One Comment', 'imbalance2' ), __( '% Comments', 'imbalance2' ) ); ?> </div> <?php endif ?> <div class="texts"> <?php if ($imbalance2_theme_options['images_only'] == 1): ?> <a class="transparent" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a> <?php endif ?> <div class="abs"> <?php if ($imbalance2_theme_options['images_only'] == 0): ?> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a> <?php endif ?> <div class="categories"><?php imbalance2_posted_in(); ?></div> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <?php the_excerpt() ?> <div class="posted"><?php imbalance2_posted_on() ?> <span class="main_separator">/</span> <?php echo comments_popup_link( __( 'No comments', 'imbalance2' ), __( 'One Comment', 'imbalance2' ), __( '% Comments', 'imbalance2' ) ); ?>
[No bumping, thank you.]
- The topic ‘Removing date and comments from the post rollover menu’ is closed to new replies.