Fixing Read More link appear on Blogger Fullpost
Thanks to Paul Escolar who really use my code on 'How to create expandable post summaries in Blogger' and spot a bug on that tutorial. Hence my code for this blog is already changed for other additional stuff. Sorry for that silly mistakes . As I went to debug my tutorial, I found that whoever follow that tutorial properly will get the same result as Paul's blog. So, here is the explanation and how to fix it. Please check at the last chunk of code on 'Step #1 - Edit your template code' . The old code should look like this: <b:if cond='data:post.labels'> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "more"'> <a expr:href='data:post.url'>...<b>Read more</b></a> </b:if> </b:loop> </b:if> where the previous screenshot is this: What this code do is checking the 'more' label and put that ...