View Full Version : Can't get footer to change
Mortain
11-20-2015, 05:24 AM
i can't get the footer to change on my site.
Hall of Famer
11-20-2015, 11:05 AM
Well, you can open the file template.tpl in your theme(main is the default) folder, and find this part:
</td></tr>
<tr><td colspan="2" id="footer">{$footer}</td></tr>
Add HTML to the left or right side of {$footer} will append or prepend your custom footer information to Mysidia's default footer. An example is provided below:
</td></tr>
<tr><td colspan="2" id="footer">
{$footer}
<br>
My own footer information
</td></tr>
Alternatively you can change the file /classes/class_footer.php directly, by modifying this method:
protected function setCredits(){
$mysidia = Registry::get("mysidia");
$this->credits = new Paragraph;
$this->credits->add(new Comment("★ Powered by ", FALSE));
$creditsLink = new Link("http://www.mysidiaadoptables.com");
$creditsLink->setText("Mysidia Adoptables v".Mysidia::version);
$this->credits->add($creditsLink);
$this->credits->add(new Comment("★"));
$this->credits->add(new Comment("Copyright © 2011-2013 Mysidia RPG, Inc. All rights reserved."));
$this->setDivision($this->credits);
}
It is not the desired approach though, and you need to make sure to keep Mysidia's credit information unchanged.
Mortain
11-20-2015, 06:13 PM
I intend to have the "powerd by" part in place. just not the copyright info.
Hall of Famer
11-22-2015, 02:12 AM
I see, in this case, simply remove this line:
$this->credits->add(new Comment("Copyright © 2011-2013 Mysidia RPG, Inc. All rights reserved."));
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.