How do I stop the date and author displaying in the Blog posts?
You can remove them from the template.
I removed it from the template and it no longer shows in the blog summary page, but still seems to display in the post page.
<perch:before> <ul class="hfeed listing"></perch:before> <div class="row"> <div class="col-xs-12"> <li class="hentry"> <br /><br /> <h2><a href="<perch:blog id="postURL" />" rel="bookmark" class="entry-title ucase"><perch:blog id="postTitle" /></a></h2> <div class="row"> <div class="col-md-4"> <perch:if exists="image"><img src="<perch:blog id="image" type="image" width="1500" height="1500" crop="false" />" alt="<perch:blog id="postTitle" />" /></perch:if> </div> <div class="col-md-8"> <div class="description entry-summary"> <perch:blog id="excerpt" type="textarea" textile="true" /> <p><a class="greenmore underline" href="<perch:blog id="postURL" />">Read More...</a></p> </div> </div> </div> </li> </div> </div> <perch:after> </ul> <br /><br /><br /> <perch:if exists="paging"> <div class="paging"> Page <perch:blog id="current_page" /> of <perch:blog id="number_of_pages" /> <perch:blog id="page_links" encode="false" /> <perch:if exists="not_first_page"> <a href="<perch:blog id="prev_url" encode="false" />">Previous</a> </perch:if> <perch:if exists="not_last_page"> <a href="<perch:blog id="next_url" encode="false" />">Next</a> </perch:if> </div> </perch:if> </perch:after>
Which template is that page using?
I am using post_in_list.html
For the post page? Ok, then you should be fine just to remove it from that template, or to add the suppress="true" attribute.
suppress="true"
Ok, thank you
You can remove them from the template.
I removed it from the template and it no longer shows in the blog summary page, but still seems to display in the post page.
Which template is that page using?
I am using post_in_list.html
For the post page? Ok, then you should be fine just to remove it from that template, or to add the
suppress="true"
attribute.Ok, thank you