• I would like to remove/edit “Entry Posted In (Category) Bookmark the Entry”

    I saw 3 months ago you posted a resolution in the style.css:

    /* Remove posted-on*/
    article .posted-on,
    /*Remove This entry was posted in . Bookmark the permalink. Edit*/
    article .entry-meta{
    display:none;
    }

    But I cannot find this in my style.css. I’m unsure what version they were using and was wondering if you have any idea’s.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard for “Custom CSS” or are you using a Child Theme?

    Thread Starter internationalkenpo

    (@internationalkenpo)

    Under appearance I have “edit css”

    Havent looked into child themes enough to see if I want to use it.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    That “Edit CSS” section will do.
    If you want the “Entry posted….” message hidden, try adding that code into that section of the dashboard;

    /* Remove posted-on*/
    article .posted-on,
    article .entry-meta {
     display:none;
    }

    Thread Starter internationalkenpo

    (@internationalkenpo)

    Ok, but now it removed the header date and who posted. Can I get that part back?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    So it’s just the “who posted” thing you want removed?

    Thread Starter internationalkenpo

    (@internationalkenpo)

    And I lost the edit button

    Thread Starter internationalkenpo

    (@internationalkenpo)

    I want to remove the “entry posted in… bookmark the permalink”

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Okay, amend the code to this;

    article .entry-meta {
     display: none;
    }

    Thread Starter internationalkenpo

    (@internationalkenpo)

    Closer, but I lost the edit button. Id like to have that somewhere, even if its on the top with the posted date and by.

    Theme Author nobita

    (@nobita)

    Hi internationalkenpo

    Please Add to style.css below code last line.

    article .entry-meta > a,
    article .entry-meta span:not(.edit-link) {
    	display:none;
    }

    Thank you

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

The topic ‘Modify Appearance’ is closed to new replies.