Forum

Thread tagged as: Question

Blog Post Date

How do I stop the date and author displaying in the Blog posts?

Helen Forrest

Helen Forrest 0 points

  • 3 years ago
Rachel Andrew

Rachel Andrew 394 points
Perch Support

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>
Drew McLellan

Drew McLellan 2638 points
Perch Support

Which template is that page using?

I am using post_in_list.html

Drew McLellan

Drew McLellan 2638 points
Perch Support

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