Removing the date from Revolution "Lifestyle" theme

Discussion in 'WordPress' started by bob25, Dec 14, 2010.

  1. #1
    I've removed the date from the archive.php, but I can't seem to find the single post (usually single.php). Anybody know how to remove this?

    Thanks
     
    bob25, Dec 14, 2010 IP
  2. Nigel Lew

    Nigel Lew Notable Member

    Messages:
    4,642
    Likes Received:
    406
    Best Answers:
    21
    Trophy Points:
    295
    #2
    Nigel Lew, Dec 14, 2010 IP
  3. bob25

    bob25 Well-Known Member

    Messages:
    1,519
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    128
    #3
    Yeah I already tried it from the dashboard, I went through the files one by one and only found it in archive.php. And it seems that the pluging I've tried removes it from the homepage, but not the individual posts. I was hoping to just edit the template as I already have a bunch of plugins running.

    Thanks
     
    bob25, Dec 14, 2010 IP
  4. Nigel Lew

    Nigel Lew Notable Member

    Messages:
    4,642
    Likes Received:
    406
    Best Answers:
    21
    Trophy Points:
    295
    #4
    Do you have a page_blog ? My copy of lifestyle is old so I may be looking at something a bit different.

    Nigel
     
    Nigel Lew, Dec 14, 2010 IP
  5. bob25

    bob25 Well-Known Member

    Messages:
    1,519
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    128
    #5
    Yes, and I just tried to remove the date, but it's still showing up in the individual posts.

    <?php
    /*
    Template Name: Blog Page
    */
    ?>

    <?php get_header(); ?>

    <div id="content">

    <div id="contentleft">

    <div class="postarea">

    <?php include(TEMPLATEPATH."/breadcrumb.php");?>

    <!--The blog page template is currently set to show 5 posts. Change showposts=5 to whatever number of posts you want to display.-->
    <!--Replace cat=1 with the Category ID you want to display in this section. See the README file to learn how to locate the Category ID-->

    <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=1&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
    <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>



    <div class="dateright">
    <p><span class="icomment"><a href="<?php the_permalink(); ?>#respond"><?php comments_number('Leave a Comment', '1 Comment', '% Comments'); ?></a></span></p>
    </div>

    </div>

    <?php the_content(__('[Read more]'));?><div style="clear:both;"></div>

    <div class="postmeta2">
    Filed Under: <?php the_category(', ') ?><br />Tagged: <?php the_tags('') ?>
    </div>

    <?php endwhile; ?>

    <p><?php posts_nav_link(); ?></p>

    </div>

    </div>

    <?php include(TEMPLATEPATH."/sidebar.php");?>

    </div>

    <!-- The main column ends -->

    <?php get_footer(); ?>


    Thanks
     
    bob25, Dec 14, 2010 IP