Avada › Forums › Community Forum › Hide meta data of post on tag archives page
Tagged: theme options, Blog, blog settings, blog meta
-
AuthorPosts
-
Hi folks…
I would like to hide all meta data of my posts on the tag archive page.
See: https://rainer-hornberger.com/avada/Avada-Community.png
I DON’T want to show the category, the tags, the excerpt of the text and the “continue reading text”.
Only the thumbnail of the post and the title of the post should be visible.
Could anyone provide a CSS code? This would be very helpful.
Sorry for my bad English. I do my best. 🙂
Rainer
Don’t think you need CSS unless you really want it.
Check these theme options:
Blog > General Blog > Blog Content Display > No Text
Blog > Blog Meta > Post Meta > Off
Oh, thanks a lot! It worked. I don’t know why I did not see this option before… 🙁
I tried what MarkLChaves suggested and it didn’t work for me. Maybe because I have a newer version of Avada. This is what worked for me, and I found it by accident:
When you add the Blog element and configure it, scroll down and choose your category. If you continue to scroll down, the options for ‘Blog Content Display > No Text’ are found there. I simply switched then off, and voila, it worked!
I have found this visiblity trick that has worked for me. First changes the tags visibility to hidden, then changes the a ref to visible and moves its content over where the tag once was.
span.fusion-tb-tags {
visibility: hidden;
position: relative;
}.fusion-tb-tags a {
visibility: visible;
position: relative;
left: -10px;
} -
AuthorPosts
- You must be logged in to reply to this topic.