Elxis CMS Forum

Support => FAQs => Topic started by: eliasan on December 28, 2006, 16:25:39

Title: How do I modify the footer of my web site?
Post by: eliasan on December 28, 2006, 16:25:39
The footer of your web site is controlled by the:
/includes/footer.php file.

Everything you put in this file is displayed at the bottom of all pages, if your current template has the following line: <?php include_once( $GLOBALS['mosConfig_absolute_path'] . '/includes/footer.php' ); ?>

Not all templates have this line.
Title: Re: How do I modify the footer of my web site?
Post by: Reza Faghihi on March 16, 2007, 01:42:04
ok you can also use this module it shows your site name in footer and also if you want more please post here and describe i can write module for you and publish it in community

[old attachment deleted by admin]
Title: Re: How do I modify the footer of my web site?
Post by: manou on October 20, 2010, 01:33:46
The footer of your web site is controlled by the:
/includes/footer.php file.

Everything you put in this file is displayed at the bottom of all pages, if your current template has the following line: <?php include_once( $GLOBALS['mosConfig_absolute_path'] . '/includes/footer.php' ); ?>

Not all templates have this line.

Hello all.
I am new to Elxis and i appreciate all the hard work and efforts you have put in this project.
I am using Elxis to design a website and as far as i can see the templates i am using don't have the above line. What is the procedure of changing the footer of these templates (e.g. Ks-red, RedBlack, its-elxis3).

Thank you.
Title: Re: How do I modify the footer of my web site?
Post by: rentasite on October 20, 2010, 01:54:28

Which template are you trying to modify?
Title: Re: How do I modify the footer of my web site?
Post by: speck on October 20, 2010, 09:23:05
Hi manou

the line in question is
<?php include_once( $mosConfig_absolute_path.'/includes/footer.php'); ?> or similar
and you find it few line before the end of every template in EDC.

The footer php contains the elxis copyright.

In the template you can add some few html code with your text:
example:
<div id="footer">
your html code and text
<?php include_once( $mosConfig_absolute_path.'/includes/footer.php'); ?>
</div>

If u don't want elxis copyright in the footer of your site, you can delete the php line contains footer.php, even if elxis.org appreciates that his footer remain, as the copyrights of whom has developed the template (they are free and i think that can be a nice thanks to authors as for elxis.org)