Deleting page footer area

Permalink
Hi gents,

I managed to delete some areas of the "sitewide" footer by deleting divs in the footer.php file. Actually I would like to delete the pagefooter too. It has a name:

Empty page footer area.

Where should I do this? Since this part is not included in the footer.php

Thanks for your help!

Max

 
siton replied on at Permalink Best Answer Reply
siton
Delete areas from the template fie. Your Q is general but i guess you talk about elemental. Inside deafult.php (and also inside left_sidebar etc...) you find this "page footer" area. Remove this lines and thats it.

"warning": If you already put content in this area (block/stacks) this wiil "remove" this content from your view page.

<?php
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('elements/header.php');
?>
<main>
    <?php
    $a = new Area('Main');
    $a->enableGridContainer();
    $a->display($c);
    $a = new Area('Page Footer');
    $a->enableGridContainer();
    $a->display($c);
    ?>
</main>
<?php