Copyright can be hidden in css. the file cannot be deleted because it is ZEND, and it is not recommended to delete the file.
1. How to hide the copyright under the X-Space personal Space
Modify/css/space.css and find the following code:
/* Footer */
# Xspace-footer {text-align: center; margin: 1em 0 0 0 ;}
# Xspace-footer p {margin: 0.3em 0 ;}
# Xspace-copyright {font: 10px Verdana, Arial, Helvetica, sans-serif; margin: 0; padding-bottom: 2em ;}
# Xspace-copyright strong {color: #036; font-weight: bold ;}
# Xspace-copyright em {color: # FF9900; font-weight: bold; font-style: normal ;}
To:
/* Footer */
# Xspace-footer {text-align: center; margin: 1em 0 0 0 ;}
# Xspace-footer p {margin: 0.3em 0 ;}
# Xspace-copyright {font: 10px Verdana, Arial, Helvetica, sans-serif; margin: 0; padding-bottom: 2em; display: none ;}
# Xspace-copyright strong {color: #036; font-weight: bold ;}
# Xspace-copyright em {color: # FF9900; font-weight: bold; font-style: normal ;}
2. How to hide the title of an X-Space personal Space:
Method 1:
Find/include/js/common. js and add the following code.
Function title_powered (str2 ){
Var str1 = document. title;
Var str2 = str1.indexOf ("-powered by X-Space ");
If (str2! =-1 ){
Document. title = document. title. substring (0, str2 );
}
}
Title_powered ();
Method 2:
Document. title = document. title. replace ('-powered by X-space ','');
3. How to hide the copyright of X-Space personal Space management:
Modify admin/spacecp/style.css and find the following code:
. Copyright {font-size: 12px; margin: 0 ;}
Change
. Copyright {display: none ;}
4. You can delete the copyright of the SupeSite website in the template! (Not supported)
The directory is the following files under templates \ default:
Index.html. php
* _Header.html. php
* _Footer.html. php