• Resolved Gunu

    (@grafcom)


    @flauberthenriques

    thanks for this simple theme, just what I need. I’ve been searching for a while but so far I haven’t been successful.
    I’m trying to hide the author information on posts and pages using css.
    Can you help me with that?

    By the way, does this theme also work under PHP version 8 and higher and WordPress version 6.8.2?

    Thanks in advance.

    • This topic was modified 8 months, 1 week ago by Gunu.
    • This topic was modified 8 months, 1 week ago by Gunu.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi flauberthenriques,

    Please navigate to Appearance > Customize > Custom CSS, then add the below CSS to hide the author block in single post.

    .single-post .post .entry-header span {
    display: none;
    }

    Yes, I’ve tested the theme with PHP 8+ and WordPress 6.8.2, and it works without issues. If you notice anything unusual, feel free to update this thread.

    Regards,
    Masood

    Theme Author Flaubert Henriques

    (@flauberthenriques)

    @grafcom @masoodmohamed

    Hello, I’m very happy that you’re using my Really Simple Theme. I apologize for the delay in my response, as I’ve been working a lot at a company in Brazil. Yes, the Really Simple Theme works perfectly with PHP version 8+ and WordPress 6+.

    The tip from @masoodmohamed is correct, @grafcom — you need to follow this path: Appearance / Customize / Additional CSS.

    Copy and paste the following code:

    /* To disable / remove author information from the post */

    .post .entry-header span {
    display: none !important;
    }

    /* To disable / remove date information from the post */

    .post .entry-header time {
    display: none !important;
    }

    Then click the ‘Publish‘ button to save the code. If you still have questions regarding posts, cards, or pages, feel free to contact me via email: [email protected]

    @masoodmohamed thank you for your help and willingness to assist @grafcom with the CSS. If you need any further assistance, feel free to contact me by email. I wish you all the best! 😁🙏

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

The topic ‘Hide the author information’ is closed to new replies.