-
AuthorPosts
-
February 3, 2014 at 11:42 pm #10777
Hi Support,
Is there a way to hide the tags from a blog post? I would like to keep them on my site for search engines, but not sure what the implications are if I try to hide them (not remove them).
I am using Integrity Light.
Thanks!
February 4, 2014 at 1:33 am #10814Hey Vanessa,
Thanks for writing in! You can try out the following CSS to hide the tags on your posts (this will simply remove them visually, but they will still be present on your site for search engines as you mentioned):
.x-integrity .post .entry-footer { display: absolute; top: -99999em; visibility: hidden; }
Thanks!
March 23, 2014 at 9:33 pm #25883There is a gap between posts as if the tags are still present.
What variable controls font-size?
Thanks for the help, nearly finished!
March 25, 2014 at 1:46 am #26233Robert,
Thanks for writing in! The gap that is present is normal and is to be expected even if the tags aren’t present to setup proper spacing between posts. If you want to adjust this as well, you can utilize the following:
.hentry { margin-top: 4em; }
Also, there is no reason why you would want to control the font-size of these tags as they are no longer visible per the original request of this thread. If you’re looking to do something else, we’ll need you to be more specific on this so we can assist you.
Thanks!
December 29, 2014 at 1:39 am #172553Hi there – I’ve also been having this issue on my website. Each post of mine has quite a few tags, and this resulted in ugly long lists of tags. After implementing the initial CSS code to ‘hide’ the tags, this merely seems to make them ‘invisible’ on the page, but now instead of having the tags sitting there on display, there is a blank space of an equivalent ‘area’ – resulting in a blog index page that looks ridiculous, with posts all over the place, rather than an even grid of post thumbnails. Is there any way to display my blog index page without the tags present, so that my post ‘thumbnails’ are all of an equal size, without big ugly white gaps everywhere? Thanks!
December 29, 2014 at 1:55 am #172557Edit: please ignore this duplicate post.
December 29, 2014 at 2:51 am #172580Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
December 30, 2014 at 12:33 am #173198I am having the same issue at http://www.JeremyGregg.com — I used the code above, and the tags are invisible but the space is still there where they used to be. I am using Integrity.
I have used Weaver Theme in the past and it was remarkably simple to make these changes. Nearly every option was just a click button to adjust (i.e. “Click to remove tags.”). Theme X has some cool features but I am finding that it requires far more savvy in coding than it originally stated.
December 30, 2014 at 12:38 am #173200OK, I found the solution here:
https://theme.co/x/member/forums/topic/removehide-tags-only-from-the-homepage/This worked for me:
.blog footer.entry-footer.cf { display:none; }
December 30, 2014 at 3:19 am #173271Glad you could fix it.
February 17, 2015 at 11:42 am #208658This works, but is there a way to hide only the tags showing up on the list of posts screen? I still want them on the bottom of the posts though. It just looks busy with all the tags on the archive pages.
February 17, 2015 at 8:46 pm #208923Hi Tyler,
At this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
August 10, 2015 at 10:24 pm #355589Hi just quick update i use this code
.x-integrity .post .entry-footer { display: absolute; top: -99999em; visibility: hidden; } .blog footer.entry-footer.cf { display:none; }
put in custom CSS
result remove tag on blog post and remove empty spacecredit to all people above
August 11, 2015 at 12:06 am #355678Hi @attapon,
Thanks for sharing, we’re sure it will help someone along the way! Have a great day everyone!
January 13, 2016 at 7:20 am #744191Hey, one last question, with regards to attapon’s suggested solution.
The situation I had was similar, bunch of tags on the blog entry page end and the same bunch on the last post open page end.
I used the same code as mentioned here but it didn’t remove the empty space from the end of the last post, so I edited the “.x-integrity .post .entry-footer {display: absolute;” to “display:none;”. That worked and removed the empty space.However my question is to affirm that that change still left the tags for SEO reason and only just hid the secion from view?
Thanks in advance!
-
AuthorPosts