ppoffice / hexo-theme-hueman

A redesign of Alx's wordpress theme Hueman, ported to Hexo.
http://ppoffice.github.io/hexo-theme-hueman/
GNU General Public License v2.0
1.17k stars 336 forks source link

remove comment icon in Thumbnail image #250

Closed qimingyudaowenti closed 5 years ago

qimingyudaowenti commented 5 years ago

你好,我关闭了所有评论功能,但是Thumbnail展示的图片右上角仍然有这个绿色lvs图标: picture 如何取消这个图标呢?

ppoffice commented 5 years ago

@qimingyudaowenti 目前情况下还需要把这一行 https://github.com/ppoffice/hexo-theme-hueman/blob/master/layout/comment/counter.ejs#L1 改为

<% if (theme.comment && post.comments) { %>
qimingyudaowenti commented 5 years ago

可能因为我的设置问题,按照你的方式修改并没有成功,不知道为什么post.comments的值不是0。但是受到启发,我修改成了这样: <% if (theme.comment && 0) { %> 也达到了效果 感谢帮助!