Rossen .be technology, photography and life ^W computers

Changing the footer of a default Plone 4 site

For changing the footer, go into the ZMI. Here you find the footer template in the following folder:

<site_root>/portal_view_customizations

Edit the plone.footer file to something like:

<div metal:define-macro="portal_footer"
  i18n:domain="plone"
  class="row">
  <div class="position-0 width-full cell">
    <div id="portal-footer">
      <p>
      Designed by <b>G Rossen</b> | <a href="http://rossen.be">r o s s e n . be</a>
      </p>
    </div>
  </div>
</div>

This should change your footer to the above text.