Posted by CTAT on

Is there any way to change the details shown in the page footer.  My site does not have a members-only section but the e-voice standard t&c reference this. 

I would like to replace the page footer items with those suitable for my site.  I have seen some other e-voice sites have managed to do this but I cannot see where this is described in the documentation.

2: Re: Page footer problems (response to 1)
Posted by Joe Oldak on

I have it on the To Do list to make the privacy and terms pages easy to override in the site settings - at the moment it's a bit fiddly to change these.

Your best current option is to create your own Privacy/Terms pages in the CMS, then create links to them in the Extra Footer HTML field in the theme options.

If you then want to also hide the standard footer links you could do this with a snippet of CSS in the Raw Header HTML field. Something like this would do it:

<style>
#footerLinks {
  display: none;
}
</style>

Good luck!

Joe