PHPFusion 9.x.x
------------------------
Open: theme_functions_include.php
Located here:
public_html/includes/
Line: 160
Change this:
function showcopyright($class = "", $nobreak = FALSE) {
$link_class = $class ? " class='$class' " : "";
$copyright = "Powered by PHPFusion. Copyright ".date("Y")." PHP Fusion Inc. ";
$copyright .= $nobreak ? "" : "
n";
$license = "Released as free software without warranties under GNU Affero GPL v3.";
/*if (fusion_get_settings('license') == 'epal') {
$license = "Published without warranties under EPAL.";
}*/
return $copyright.$license;
}
To This:
function showcopyright() {
}
OR
To This:
function showcopyright($class = "", $nobreak = FALSE) {
return ;
}
==================================================
To change site (footer) logo:
Login to Admin -> Settings -> Main
At the bottom; replace site logo with your logo
images/blank.png
Created : 2022-01-17 01:03:04, Last Modified : 2022-01-18 11:43:19