• I would like to remove the Reading time from the Blog Page. I would still like it to show up for individual posts showing up on that page but not show up on top of the page.

    • This topic was modified 3 months, 2 weeks ago by Bohdan Smaha.

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

Viewing 1 replies (of 1 total)
  • Plugin Author Jason Yingling

    (@yingling017)

    There are a few different options you can use and it varies theme to theme. You can try playing around with the Reading Time settings to see if its getting added to those through the excerpt or the content.

    The easiest way may be to hide it via CSS. It looks like your theme adds a .blog class to the <body> element on that page so something like:

    .blog .page-header + .rt-reading-time {
    display: none !important;
    }

    That should target only pages where the <body class="blog"> and only the .rt-reading-time that is directly adjacent to the .page-header component. I had to add !important to the rule as it seems there is another bit of CSS set to important in your site styles already.

    Hope that helps!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.