Buy me a coffee

How to change Blog “Comments” to Another text?

How To Change Blog Comments To Another Text 01 Min

To change Blog “Comments” to another text, you can use CSS code.

#1. Change “Comments” on all blog posts

Use this code to Website Tools > Custom CSS

h3.comment-count span {
    visibility: hidden;
}
h3.comment-count span:before {
    visibility: visible;
    content: "Notes";
}

How To Change Blog Comments To Another Text 02 Min

Result:

How To Change Blog Comments To Another Text 03 Min

#2. Change “Comments” on Blog Posts belong Specific Blog Page

First, you need to find Blog Page URL. Use this tool.

In my example, it is:

  • #collection-6677756d03a4f15ba27ce9d8

How To Change Blog Comments To Another Text 04 Min

Next, change it to this ID (replace # with dot . symbol):

  • .collection-6677756d03a4f15ba27ce9d8

Next, use this code to Custom CSS box.

/* rename Comments */
.collection-6677756d03a4f15ba27ce9d8 {
h3.comment-count span {
    visibility: hidden;
}
h3.comment-count span:before {
    visibility: visible;
    content: "Notes";
}
}

How To Change Blog Comments To Another Text 05 Min

#3. Change “Comments” on specific blog post

You can edit Blog Post > Add a Code Block

Code Block1 Min

Paste this code into Code Block.

<style>
  h3.comment-count span {
    visibility: hidden;
}
h3.comment-count span:before {
    visibility: visible;
    content: "Notes";
}
  </style>

How To Change Blog Comments To Another Text 06 Min