¿como modificar enlaces en el footer del script ArticleSetup cms?


07 de Mayo del 2020
Se algo de html y css pero nada en absoluto de programación (javascript, php, etc) 
he intentado hacerlo directamente en el html, incluso eliminando los 2 archivos php y no hace nada ¿alguien sabe como hacerlo?, gracias.

/htdocs/footer.php

<?php

// Setup this page's template information
$footer = new Template($sidebardir."templates/".$template."/footer.tpl");

$footer->set("lefttext", '<a href="http://www.articlesetup.com">Article Script</a>
- Powered By <a href="http://www.articlesynergy.com">Article Marketing</a>');

$footer->set("righttext", '&copy; 2011 - '.$sitetitle.'');
$footer->set("statcode", stripslashes($statcode));

// Outputs the footer template

echo $footer->output();

?>

/htdocs/author/footer.php

<div class="clear"></div>


<!-- FOOTER -->
<div id="footer">
<div class="left"><p><a href="#">Free Article Script</a> - Powered By <a href="#">Article Marketing</a></p></div>
<div class="right"><p>&copy; 2011 - ArticleSetup.com</p></div>
</div>


</div>

<?php echo $statcode; ?>

</body>
</html>