• i want to make my home page cool but when i post something it puts a bubble where people can comment well i dont want that i want my home page to be somewhere that people can click on things to take them to the pages they want to go.

Viewing 4 replies - 1 through 4 (of 4 total)
  • what is actually the question?

    what theme are you using?

    link to your site?

    Thread Starter monkey50

    (@monkey50)

    http://drwho-fansite.site90.com/wordpress/ i made a post and i added this but people can comment i dont want that for the home page

    Do you want to keep people from commenting entirely or just remove the comment bubble? If the former, you just turn off comments in the individual post or in Settings > Discussion.

    If the latter, you would need to remove or comment out that part of the theme to actually remove it. It’s this this part in content.php:

    <?php if ( comments_open() ) : ?>
        <div class="comments-link">
            <?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
        </div>
    <?php endif; ?>

    An easier option would be to just hide it; you could add this to the bottom of your style.css file:

    .entry-header .comments-link {
        display: none;
    }
    Thread Starter monkey50

    (@monkey50)

    cool the bubbles ok but i might get rid of it. but i want to stop people from commenting on certain things. thanks

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

The topic ‘help with posting pages and posts’ is closed to new replies.