Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter spoerke

    (@spoerke)

    3.0 applies a class to the 2nd level menu ul called sub-menu, so my original subnav class was no longer recognized. By changing the class for the 2nd level menu in the stylesheet to sub-menu everything has been repaired.

    So, instead of
    ul.menu_top li ul.subnav {

    I have
    ul.menu_top li ul.sub-menu {

    I can’t believe I missed this simple fix. Bah!

    Thread Starter spoerke

    (@spoerke)

    Bump… anyone?

    <small>Posted: <?php the_time('jS F Y') ?> by <strong><?php the_author() ?></strong> in <?php the_category(', ') ?><br />
    <?php the_tags( 'Tags: ', ', ', ''); ?></small>

    The above code basically says, posted on this day at this time by author’s name, in this category, with these tags.

    If you want to remove the author’s name, here’s the code you’ll keep:

    <small>Posted: <?php the_time('jS F Y') ?> in <?php the_category(', ') ?><br />
    <?php the_tags( 'Tags: ', ', ', ''); ?></small>

    1. Go to your dashboard, click on the Appearance module, select “Editor” from the drop down list.
    2. Make sure your theme is selected for editing (top right corner)
    3. Open the Main Index Template (index.php) and find the code that looks similar to this: <div class="postcomments"><?php comments_popup_link('0', '1', '%'); ?></div>
    4. Delete that
    5. Make sure no other pages contain that code and you should be good to go.

    Actually the last part I told you is if you don’t want to allow comments on your posts. I think I misread your request the first time.

    If you want people to be able to post comments
    DO NOT DELETE <?php comments_template(); ?>

    If you DO NOT want people to be able to post comments
    DELETE <?php comments_template(); ?>

    Sorry for the confusion.

    Post data:
    Go to the “Editor” in the Appearance module of your admin section. Select your theme from the tab in the top right corner and delete the following lines from index.php, archive.php, search.php, single.php, and any other pages you find them in:
    <p class="postinfo">By <?php the_author_posts_link(); ?> on <?php the_time('M j, Y') ?> in <?php the_category(', ') ?><?php edit_post_link('Edit', ' | ', ''); ?></p>

    Comments:
    Remove the following from single.php and any others you find it on:
    <?php comments_template(); ?>

    Hope that helps!

Viewing 6 replies - 1 through 6 (of 6 total)