• Resolved jmccoy1

    (@jmccoy1)


    Hello,

    I am back again and have a question. As you can see from my screenshot: https://snipboard.io/DobLt1.jpg

    I need to remove the reply, category and the date created items from the singlepage.php Is there a way to do that from the theme editor itself or a CSS code I can use to make that change across the entire website?

    Thank you again for the amazing support and hopefully I can get this fixed.

    Jacob McCoy

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello @jmccoy1,

    I hope you are doing great.

    1) To stop showing the “leave a reply”, goto post/page edit mode. There is the sidebar, you will see the discussion option,
    you can control “leave a reply” from here. Please see the screenshot attached along with this reply Screenshot

    2) To stop display “Category” and “Creation date” please use the following CSS code

    .category {
    display: none;
    }
    span.entry-date {
    display: none;
    }

    Please let us know after applying the above solutions.

    Thank you

    Thread Starter jmccoy1

    (@jmccoy1)

    Hello,

    Thank you for your quick reply. Your CSS code worked great! One last thing I noticed is it shows the author and the reply “bubble”. Please look at this screenshot: https://snipboard.io/0hsQr2.jpg

    Do you have CSS to remove the author and that reply bubble over “Hearst Tower Training” hyperlink?

    Thank you again!

    Hello @jmccoy1,

    Welcome, @jmccoy1.

    Yes, we can also hide it using CSS code. Please apply the following CSS code:

    span.entry-author,
    span.entry-comments {
    display: none;
    }

    Please, let us know after applying the above solution.

    Thank you.

    Thread Starter jmccoy1

    (@jmccoy1)

    Thank you so much! That helped greatly. One last thing, do you know any CSS for the theme so it removes the transparent boxes around logins? Here is a screenshot: https://snipboard.io/3MXew2.jpg I want some CSS that I can use and tell the entire website to not but a box around text.
    As you can see, it makes the background box look off. I want no boxes around any text on the website.
    Thank you.
    Jacob McCoy

    Hello @jmccoy1

    Please apply the following CSS code:

    .blog_page .astral_blog {
        box-shadow: none;
    }

    Thank you.

    Thread Starter jmccoy1

    (@jmccoy1)

    You are AMAZING!!!! Thank you so much! I finally got this project done the way it needed to be done. Thanks again! 5 star support all the way!

    Thank you so much

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

The topic ‘Remove reply and category from single page.php’ is closed to new replies.