Viewing 2 replies - 1 through 2 (of 2 total)
  • Under appearance, editor, you should be able to locate the .php file for your individual page template commonly page.php, for example, if you are looking to remove the post author and date, simply look for the code that starts with <span class=”author vcard”>

    It should be a line or two of html to remove both and easy for you to pick out.

    Easy way without moving the hooks:

    Add this to your style.css

    .entry-meta-before {
    display: none;
    }

    (this will remove both admin and dates from all pages/posts)

    The style.css is located in dkret3/style.css, just add the above code anywhere in your stylesheet, or do this directly in library/css/screen.css on line 670

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get Rid of "Admin and Date" Posting Using dkret3 Theme’ is closed to new replies.