tuanphan Posted August 30 Share Posted August 30 You can use these CSS code (Website Tools > Custom CSS) to change blog "Comments" text on Blog Posts. If CSS doesn't work, you can share link to blog page, I will check it again. #1. Change “Comments” on all blog posts h3.comment-count span { visibility: hidden; } h3.comment-count span:before { visibility: visible; content: "Notes"; } Result #2. Change “Comments” on Blog Posts belong Specific Blog Page First, you need to find Blog Page ID. In my example, it is: #collection-6677756d03a4f15ba27ce9d8 Next, change it to this ID (replace # with dot . symbol): .collection-6677756d03a4f15ba27ce9d8 Next, use CSS code like this /* rename Comments */ .collection-6677756d03a4f15ba27ce9d8 { h3.comment-count span { visibility: hidden; } h3.comment-count span:before { visibility: visible; content: "Notes"; } } #3. Change “Comments” on specific blog post You can edit Blog Post > Add a Code Block Paste this code into Code Block. <style> h3.comment-count span { visibility: hidden; } h3.comment-count span:before { visibility: visible; content: "Notes"; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment