• Resolved frolickingmini

    (@frolickingmini)


    Is there anyway to remove all the author information in the posts? Thank you! I’ve tried various CSS but nothing is working.

Viewing 15 replies - 1 through 15 (of 17 total)
  • Have you tried

    
    div.post-author { display:none; }
    

    or

    
    div.post-meta-container { display:none; }
    

    ?

    Thread Starter frolickingmini

    (@frolickingmini)

    Wow, Christian. Thank you! That first one worked perfectly! Is there a code that simple to take the dates off all my posts? On the post and also on the homepage? I’ve tried a few but nothing has worked. The only thing I want to show on my posts is NEXT POST / PREVIOUS POST and the categories, and the only thing I’d like to show on my homepage is the masonry posts with their titles and nothing else. Is there a good website with CSS like this? I’m a total newbie and I really appreciate you sending that code.

    To remove the dates within each post, use

    
    p.post-date {
    display:none;
    }
    

    To remove post date and comment bubble from the homepage, use

    
    body.home a.post-date {
    display:none;
    }
    

    and

    
    body.home a.post-comments {
    display:none;
    }
    

    It might be sufficient to leave out the “body.home” selector.

    Thread Starter frolickingmini

    (@frolickingmini)

    It worked! Yippeee! Thank you!

    You’re welcome!

    Have you seen you can mark resolved support threads as “resolved”? ??

    Theme Author Anders Norén

    (@anlino)

    @pixelverbieger @frolickingmini I took myself the liberty ??

    Hello,

    I saw the solution, from @pixelverbieger, but how can i do that within wordpress?
    Pleas can you help me with this?

    And @anlino is it possible to create on every page with theme baskerville 2 a home button?
    Theres no option within the theme? Can i fixed that wit a plugin?
    And how do i do that?

    Kind regards,
    Kraaijennest

    • This reply was modified 4 years, 7 months ago by kraaijennest.

    @kraaijennest You can insert the CSS code via Customizer: from your Dashboard navigate to Appearance > Customizer > Additional CSS and paste it there. Be sure the button in the top right corner is set to ?publish?, not only ?save?.

    Hi All members, I want to get rid of the author section shown on the page….tried almost every thing…included the above mentioned CSS codes but still unable to get this shit….I don’t wan to have the whotle “author box” just after the article. The link is attached if anyone can help me with that I shall be thankful.
    https://1btcnews.com/chinese-miners-are-getting-back-to-bitcoin-after-coronavirus-outbreak/

    @1btcnews I haven’t clicked your link (and won’t do so), but the code
    div.post-meta-container { display:none; }
    should do it …

    @pixelverbieger so I have to place this code in “additional css” right?

    Just placed the code in additional CSS but not working….

    Just wanted to know where can I locate this div???? so I can remove this shit manually.
    <div class=”postauthor-inner”>
    <h5 class=”vcard author”>1btcNews</h5>
    <div class=”author-description”>
    <p>Team 1BtcNews</p>
    </div>
    </div>

    Be sure the button in the top right corner is set to ?publish?, not only ?save?.

    Yeah I know this….after adding css I always slick on publish

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Remove Author Info In Post’ is closed to new replies.