Buy me a coffee

How to remove Tags on Blog Post?

To remove Tags on Blog Post, you can do these.

How To Remove Tags On Blog Post 1 Min

#1. Remove Tag on All Blog Posts
Use this to Custom CSS box

div.blog-meta-item--tags {
    display: none;
}

How To Remove Tags On Blog Post 2 Min

#2. Remove Tag on Blog Posts belong specific Blog Page
First, you need to find Page ID.
In my example, it is: #collection-6677756d03a4f15ba27ce9d8

How To Remove Tags On Blog Post 3 Min

Next, you need to change this ID to this format
body.collection-6677756d03a4f15ba27ce9d8

Next, use CSS code like this

#collection-6677756d03a4f15ba27ce9d8 div.blog-meta-item--tags {
    display: none;
}

How To Remove Tags On Blog Post 4 Min

#3. Remove Tag on specific blog post
You can add a Code Block on Blog Post

How To Remove Tags On Blog Post 5 Min

And use this code into Code Block

<style>
  div.blog-meta-item--tags {
    display: none;
}
  </style>

How To Remove Tags On Blog Post 6 Min