Remove author comment edit

  • Unknown's avatar

    Hello,

    I’m new to wordpress and I need to remove the Author /Comment and Edit Title-Menue from all Posts on http://www.villaoka.de

    I changed some lines in the style.css
    This is how it looks now, after editing in worked but after editing some Pages the Author, Comment and Edit Button returned.

    /* POSTS */
    div.post, div.page, div.type-attachment { display: none; }
    .entry-title { display: none; }
    div.page .entry-title, div.single .entry-title, div.type-attachment .entry-title { display: none; }
    .entry-info { display: none; },
    .entry-date { display: none; },
    .entry-author { display: none; },
    .comments-link { display: none; },
    .post-edit-link { display: none; },

    and first it all worked, but after editing some pages the buttons author, comment and edit returned. Date is still gone, this works very well but i can’t figure out why date is still gone but author, comment and edit-buttons returned after editing some page content. Don’t know what this is all about.

    I am using “Desire”-Theme.

    Where can I delete all of them? I don’t want to see them on the whole page.

    Sorry for my bad english skills.

    Thank you!

    Dipii

  • Unknown's avatar

    Hi @Dipii, it looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites such as yours, I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org Themes and Templates forum.

    For general questions on self-hosted WordPress.org installations, visit http://wordpress.org/support/.

    The differences between WordPress.com and WordPress.org.

    I did take a quick look and the following will hide the author and comments link in the post metadata.

    .entry-author, .comments-link {
        display: none;
    }
  • Unknown's avatar

    If you have not yet done so, I would suggest creating a child theme so that any customizations you make will not be overwritten by a future theme update. Alternately you can use the Edit CSS function in the Jetpack plugin, or use one of the other Custom CSS plugins that will keep CSS changes from being overwritten.

    Child Themes
    Child Theme creation plugins
    Jetpack plugin
    Custom CSS plugins

  • The topic ‘Remove author comment edit’ is closed to new replies.