Creating A New Page Without Default Page Header And Footer.

Hi,



I want to create a new page that dose not use the header and footer from the default page layout. Is the a way of ding this in the Layouts menu?



Fergus

Well easiest way is to target this page like



{if $dispatch == 'products.view&product_id=12'} {/if}





and add a custom css like



.tygh-header.clearfix {
display: none;
}
.tygh-footer.clearfix {
display: none;
}




Fotis

Thanks Fotis.



Presumably there is no way this can be achieved from the Layout Editor?



Fergus

[quote name='GusM' timestamp='1402607126' post='185634']

Presumably there is no way this can be achieved from the Layout Editor?

[/quote]



If you do not want to change core files, you can add HTML block with smarty support with few javascript strings which will hide footer and header fot the specific page.