1、允許匿名評(píng)論,注釋掉batch.comment.php中的
?if(empty($_SCONFIG['allowguest'])) {
???????? //hszdz:jsmessage('error', 'no_login', geturl('action/login'));
?}這個(gè)方法,后來(lái)發(fā)現(xiàn)有"允許匿名評(píng)論"的選項(xiàng)
2、tag比較混亂,用固定下拉選擇框:修改xspace/admin/spaceap/common.js的addMouseEvent部分
var inputname=inputs[i].name;
??? ??? if(inputname=='tagname'){
??? ??? ??? if(inputs[i].style.display!='none'){??? ??? ???
??? ??? ??? ??? inputs[i].style.display='none';
??? ??? ??? ??? var hack = document.getElementById('tagnametips');??? ??? ??? ???
??? ??? ??? ??? hack.innerHTML="<select name='tagname' id='tagname'><option value='情感' selected>情感</option><option value='論文'>論文</option><option value='心理'>心理</option><option value='寫作'>寫作</option></select>";
??? ??? ??? ??? hack.className='';
??? ??? ??? ??? hack.style.display='block';??? ??? ??? ???
??? ??? ??? }
??? ??? }
3、
CODE:
/*頁(yè)腳*/
#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; }
修改為:
CODE:
/*頁(yè)腳*/
#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; }
不會(huì)改的話,下載我的CSS吧,地址是:
刪除X-Space個(gè)人空間標(biāo)題方法:
找到/include/js/common.js再里面加入以下代碼
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();
方法二:
CODE:
document.title = document.title.replace(' - powered by X-Space', '');
刪除X-Space個(gè)人空間管理版權(quán)方法:
修改admin/spacecp/style.css找到以下代碼:
CODE:
.copyright { font-size: 12px; margin: 0; }
改為
CODE:
.copyright { display:none; }
?if(empty($_SCONFIG['allowguest'])) {
???????? //hszdz:jsmessage('error', 'no_login', geturl('action/login'));
?}這個(gè)方法,后來(lái)發(fā)現(xiàn)有"允許匿名評(píng)論"的選項(xiàng)
2、tag比較混亂,用固定下拉選擇框:修改xspace/admin/spaceap/common.js的addMouseEvent部分
var inputname=inputs[i].name;
??? ??? if(inputname=='tagname'){
??? ??? ??? if(inputs[i].style.display!='none'){??? ??? ???
??? ??? ??? ??? inputs[i].style.display='none';
??? ??? ??? ??? var hack = document.getElementById('tagnametips');??? ??? ??? ???
??? ??? ??? ??? hack.innerHTML="<select name='tagname' id='tagname'><option value='情感' selected>情感</option><option value='論文'>論文</option><option value='心理'>心理</option><option value='寫作'>寫作</option></select>";
??? ??? ??? ??? hack.className='';
??? ??? ??? ??? hack.style.display='block';??? ??? ??? ???
??? ??? ??? }
??? ??? }
3、
刪除X-Space SuperSite 個(gè)人空間下方版權(quán)方法
修改/css/space.css找到以下代碼:CODE:
/*頁(yè)腳*/
#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; }
修改為:
CODE:
/*頁(yè)腳*/
#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; }
不會(huì)改的話,下載我的CSS吧,地址是:
刪除X-Space個(gè)人空間標(biāo)題方法:
找到/include/js/common.js再里面加入以下代碼
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();
方法二:
CODE:
document.title = document.title.replace(' - powered by X-Space', '');
刪除X-Space個(gè)人空間管理版權(quán)方法:
修改admin/spacecp/style.css找到以下代碼:
CODE:
.copyright { font-size: 12px; margin: 0; }
改為
CODE:
.copyright { display:none; }