custom footer on single pages

Permalink
I'm using Fundamental theme. I have created some single pages that live in application/single-pages. The pages work fine, but the custom-footer is not showing, just the standard footer. The custom footer shows for all other pages apart from single pages. Any ideas how I might resolve this?

Page with custom footer
http://gotimetrekkers.com/
Single page without custom footer
http://gotimetrekkers.com/holidays/destinations/europe/uk...

Thanks
P

 
PJSAndo replied on at Permalink Best Answer Reply
I figured this out.

So for those using the Fundamental theme, if you've customized your footer and you find that the changes don't appear on single pages do the following.

Single pages are wrapped in view.php which is located in /packages/fundamental/themes/fundamental. Open up view.php. At the bottom of the file you'll see
<?php  $this->inc('elements/footer.php');?>

Change this to
[code]
<?php $this->inc('elements/footer-custom.php');?>
{/code]

That should be it! Well, it worked for me :)