Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Questions and Supports (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=18)
-   -   Can't get footer to change (http://www.mysidiaadoptables.com/forum/showthread.php?t=4900)

Mortain 11-20-2015 05:24 AM

Can't get footer to change
 
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:

PHP Code:

</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:


PHP Code:

</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:

PHP Code:

    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:

PHP Code:

$this->credits->add(new Comment("Copyright © 2011-2013 Mysidia RPG, Inc. All rights reserved.")); 



All times are GMT -5. The time now is 03:11 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.