Hiding Author / Icons / Bottom Footer

Hi there ,

I found out about shapely and am in love with the demo version. I want to use this for my portfolio however I’ve encountered a few problems. The website is not even close to finished.

I would like to hide those features shown in the attached file.

I have been to other themes and apparently this was suppose to work?

.entry-meta { display: none; }

but it did not help when I tried implementing it into my css code.

Hi pal,

I have found how to kill the part showed at the attached screenshot:

.author-bio {
display: none;
}

Hey there,

I managed to hide date (but the little calendar icon will be still there)

.entry-date {
display: none;
}

Finally I used show hide author plugin … I didn`t manage to hide icons …

Hi @terryk,

I hope you are well today and thank you for your question.

You can try hiding them by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

body.single-post .author-bio,
body.single-post ul.post-meta {
    display: none;
}

Best Regards,
Movin

Hi guys,

I really appreciated with all the response. They were all helpful in different ways

the author bio was definitely on the dot. It worked for me

.author-bio { display: none; }

I had to change a bit of the code regarding hiding the icons, my email and the date.
I modified it to the code below and worked for me afterwards.

body.single-post .author-bio, body.single-post ul.post-meta { display: none; }

Thank you all.

You are most welcome here :slight_smile: