Step 1
- Masuk ke dashboard Blogger
- Pilih menu template >> Edit Html
- Centang Expand Template Widget
- Cari Kode di bawah ini :
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
</b:if>
Ganti kode di atas menjadi seperti di bawah ini :
<b:include data='post' name='post'/>Kemudian Preview jika dan Save jika sudah tidak ada kesalahan.
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
Step 2 >>Bagi pengguna Template SEO Friendly saya ini<<
Cari kode <b:include name='threaded_comment_css'/> . Kemudin anda akan menemukan kode seperti di bawah ini :
<h4>Ganti Kode di atas menjadi kode seperti di bawah ini :
<b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/>:
<b:else/>
<data:post.numComments/> <data:commentLabelPlural/>:
</b:if>
</h4>
<h4>{
<b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/>... read them below or <a href='#comment-form' rel='nofollow'>add one</a>
<b:else/>
<data:post.numComments/> <data:commentLabelPlural/>... read them below or <a href='#comment-form' rel='nofollow'>add one</a>
</b:if>}
</h4>