• Hi, love this theme, but cant figure out how to hide the Author, date and time from the posts. I have read other topics to this matter, but they all say a different file name in a different php and a different code. Please help
    Thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter ifly333

    (@ifly333)

    I put this in the style.css but it didnt do anything
    }
    .entry-author-link,
    .entry-permalink,
    .entry-date,
    .entry-meta,
    display: none;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Install this Custom CSS Manager plugin https://www.ads-software.com/plugins/custom-css-manager-plugin

    Then use its “CSS Code” section of the dashboard to hold your CSS modifications:

    .entry-meta {
     display: none;
    }

    Thread Starter ifly333

    (@ifly333)

    installed the plugin, added the code to the custom css section, but still doesnt change anything…hmmmm

    You were on the right track earlier, your syntax is a bit out of place. You can try to edit the code you referenced above, with the following changes, and make sure it is at the bottom of the file:

    .entry-author-link,
    .entry-permalink,
    .entry-date,
    .entry-meta {
    display: none;
    }

    Note: the comma after .entry-meta was removed, and the opening brace was moved to follow after .entry-meta

    Thread Starter ifly333

    (@ifly333)

    made a child theme from Spun and tried to edit that style.css, and still nothing at all will change. Is there some stupid permissions thing im missing? I can delete a huge chunk of the parent style.css and nothing happens…its like im editing the wrong theme but I know im not.

    Any help? anyone? Im feeling really dumb right now.

    Tareq

    (@worthingtech)

    Is your child theme active? Have you @import your base style.css?

    Thread Starter ifly333

    (@ifly333)

    Fixed it!

    I installed a different theme and activated it and tested to see if i could edit the style.css and it worked. So i loaded Spun theme back on and now it works….weird.

    Thanks for the help!

    Tareq

    (@worthingtech)

    Glad it’s sorted!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to remove Author, date time from posts?’ is closed to new replies.