有關"簡易型版主評語系統"這個Mod

phpBB 2 Style Support
討論的範圍包含版面排列、樣式、配置;外掛問題,請到相關版面依發問格式發表!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
zerocw
星球普通子民
星球普通子民
文章: 14
註冊時間: 2005-12-11 16:11

有關"簡易型版主評語系統"這個Mod

文章 zerocw »

在下成功安裝了這個 " 簡易型版主評語系統 "MOD
但我想將"版主評語"裡的框框改顏色,請問如何做到呢??
((因為框邊顏色太像我討論區的底色了 ))
圖檔
貼了圖後才知道,原來剛好和"竹貓星球"一樣 :-P

是否在這段Code改呢?

代碼: 選擇全部

        if($postrow[$i]['judgment_id'])
        {
                $temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $postrow[$i]['judgment_id']);
                $judgment_user = '<a href="' . $temp_url . '">' . $postrow[$i]['judgment_username'] . '</a>';
                $post_judgment = str_replace("
", "
<br />&nbsp;&nbsp;
", $postrow[$i]['post_judgment']);
                $judgment_table = '<br /><br /><br /><div style="width:30%"><fieldset><legend>' . $lang['Judgment_title'] . '(' . $judgment_user .  ')</legend><span class="gen">' . $lang['Enter_judgment'] . '</span><br />&nbsp;&nbsp;&nbsp;<span class="gen"><font color="red">' . $post_judgment . '</font></span>';
                if( ($userdata['user_id'] == $postrow[$i]['judgment_id'] || $userdata['user_level'] == ADMIN) && $is_auth['auth_mod'] )
                {
                        $temp_url = "judgment.$phpEx?" . POST_POST_URL . "=" . $postrow[$i]['post_id'] . "&sid=" . $userdata['session_id'];
                        $judgment_table .= '<br /><span class="gensmall">[<a href="' . $temp_url . '">' . $lang['Edit'] . '</a>]</span>';
                        $temp_url = "judgment.$phpEx?mode=del&" . POST_POST_URL . "=" . $postrow[$i]['post_id'] . "&sid=" . $userdata['session_id'];
                        $judgment_table .= '&nbsp<span class="gensmall">[<a href="' . $temp_url . '">' . $lang['Delete'] . '</a>]</span>';
                }
                $judgment_table .= '</fieldset></div><br />';
        }
        else
        {
                $judgment_table = '';
        }
請各大大幫幫忙
在此講聲萬二分感謝 :oops:
~倉木麻衣~
竹貓忠實會員
竹貓忠實會員
文章: 1405
註冊時間: 2004-03-21 21:00

文章 ~倉木麻衣~ »

謝絕所有私人訊息詢問外掛相關問題
有問題請直接於版上發表, 集思廣議絕對比專挑特定人士詢問來的好

竹貓禁止發表含破解相關的軟體, 違者砍文
不要跟我講別的地方都可以發, 為什麼竹貓就不行
免費不等於破解, 傻傻的搞不清楚
zerocw
星球普通子民
星球普通子民
文章: 14
註冊時間: 2005-12-11 16:11

文章 zerocw »

謝謝你呀! 板主~~~
其實我有搜尋的,但不知如何找到適合的主提,
所以不停地盲目找文章:P
再次說一聲.....非常感謝 ;-)
週末狂飆
星球普通子民
星球普通子民
文章: 30
註冊時間: 2005-07-24 07:00
來自: 慈善藝術園區
聯繫:

文章 週末狂飆 »

請教各位先進:

弟亦裝置[簡易版主評語]judgment_system_101,是否能修改將版主評語放置到發表人文章之上呢?
因為有些文章較長,一般會員若要看到版主評語必須下拉至底才會看到,時為不便!!也失去了版主評語的意義,希望能得指點將版主評語放在上方(如圖)不知是否能得幫助謝謝~~

圖檔
●我的架設主機作業系統:windows xp
●我的上網方式:東森
●我安裝的程式:Apache + php + MySql
●我的 phpBB2 版本:phpBB-2.0.17
●我的 風格:Macinscott2
●我的 phpBB2 連結網址: 慈善藝術園區
http://www.charity-art.club.tw/
頭像
kkt
竹貓忠實會員
竹貓忠實會員
文章: 625
註冊時間: 2005-06-15 01:37
來自: H.K.
聯繫:

文章 kkt »

週末狂飆, 你可試著打開 viewtopic_body.tpl

找到:

代碼: 選擇全部

 {postrow.JUDGMENT_FIELD} 
然後找到:

代碼: 選擇全部

<span id="spid{postrow.U_POST_ID}">
把 {postrow.JUDGMENT_FIELD} 置於其後.

像這樣:

代碼: 選擇全部

<span id="spid{postrow.U_POST_ID}">{postrow.JUDGMENT_FIELD}
demo: http://www.kktfriend.com/phpBB2/viewtopic.php?t=5091


ps. 以subSilver 為例, 假如你裝有其他外掛, 語法位置可能不相同.
  記著備份你的檔案

.
舊站台經已結朿了, 學生們可到遊戲站玩玩 Flash Game (不必註冊) 免費 Flash Game
在此學到很多架站知識, 永遠多謝:
心靈捕手老師, ~倉木麻衣~, 依夢兒 及 神川小羽各位大大相助
週末狂飆
星球普通子民
星球普通子民
文章: 30
註冊時間: 2005-07-24 07:00
來自: 慈善藝術園區
聯繫:

文章 週末狂飆 »

kkt 寫:週末狂飆, 你可試著打開 viewtopic_body.tpl

找到:

代碼: 選擇全部

 {postrow.JUDGMENT_FIELD} 
然後找到:

代碼: 選擇全部

<span id="spid{postrow.U_POST_ID}">
把 {postrow.JUDGMENT_FIELD} 置於其後.

像這樣:

代碼: 選擇全部

<span id="spid{postrow.U_POST_ID}">{postrow.JUDGMENT_FIELD}
demo: http://www.kktfriend.com/phpBB2/viewtopic.php?t=5091


ps. 以subSilver 為例, 假如你裝有其他外掛, 語法位置可能不相同.
  記著備份你的檔案

.

kkt:

照您的方法用在 (Macinscott2) 風格上試了一下好像放不對???不知如何改可否再請教一下,謝謝~~

我貼出我的C:\AppServ\www\phpBB2\templates\Macinscott2\viewtopic_body.tpl請過目

PS:謝謝您的國旗,一直好喜愛!!!現在又把它新增在我首頁上取代跑馬燈那個(喇叭標誌) 吼吼~~超水的@@

....................................................................................

代碼: 選擇全部

<table width="95%" cellspacing="2" cellpadding="2" border="0">
  <tr> 
	<td align="left" valign="bottom" colspan="2"><a class="maintitle" href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><br />
	  <span class="gensmall"><b>{PAGINATION}</b><br />
	  &nbsp; </span></td>
  </tr>
</table>

<table width="95%" cellspacing="2" cellpadding="2" border="0">
  <tr> 
	<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>&nbsp;&nbsp;&nbsp;<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
	<td align="left" valign="middle" width="50%"><span class="nav">&nbsp;&nbsp;&nbsp;<a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
	  &raquo;  <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
    <td align="right" valign="middle" width="50%"><span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a> &nbsp;</span></td>
  </tr>
</table>
	{POLL_DISPLAY} 
<!-- BEGIN postrow -->
<table width="95%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="3%" align="left"><img src="templates/Macinscott2/images/buttons.gif" width="66" height="23"></td>
    <td width="94%" align="center" background="templates/Macinscott2/images/buttons_bkgd.gif"><span class="cattitle">{postrow.POST_SUBJECT}</span></td>
    <td width="3%" align="right"><img src="templates/Macinscott2/images/buttons_right.gif" width="66" height="23"></td>
  </tr>
</table>
<table class="forumline" width="95%" cellspacing="1" cellpadding="0" border="0">
	<tr align="right">
		<td class="row4" colspan="2" align="center"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="left">&nbsp;<a href="{postrow.U_MINI_POST}"><img src="{postrow.MINI_POST_IMG}" width="12" height="9" alt="{postrow.L_MINI_POST_ALT}" title="{postrow.L_MINI_POST_ALT}" border="0" /></a><span class="postdetails">{L_POSTED}: {postrow.POST_DATE}</span></td>
            <td align="right" valign="center" nowrap="nowrap"> {postrow.JUDGMENT_IMG} {postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}&nbsp;</td>
          </tr>
        </table>		  </td>
	</tr>

	<tr>
		<th class="thTop" nowrap="nowrap">{L_MESSAGE}</th>
	</tr>

	<tr> 
		<td colspan="2" align="left" valign="top" class="{postrow.ROW_CLASS}">
		<table width="100%"  border="0" cellspacing="0" cellpadding="0">
	<tr>
		<td width="150" align="left" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="150">
  <tr>
   <td width="12"><img src="templates/Macinscott2/images/spacer.gif" width="12" height="1" border="0" alt=""></td>
   <td width="125"><img src="templates/Macinscott2/images/spacer.gif" width="125" height="1" border="0" alt=""></td>
   <td><img src="templates/Macinscott2/images/spacer.gif" width="13" height="1" border="0" alt=""></td>
   <td width="10"><img src="templates/Macinscott2/images/spacer.gif" width="1" height="1" border="0" alt=""></td>
  </tr>

  <tr>
     <tr>
   <td><img name="topic_top_left" src="templates/Macinscott2/images/topic_top_left.gif" width="12" height="14" border="0" alt=""></td>
   <td background="templates/Macinscott2/images/topic_top.gif"><img name="topic_top" src="templates/Macinscott2/images/spacer.gif" width="1" height="14" border="0" alt=""></td>
   <td><img name="topic_top_right" src="templates/Macinscott2/images/topic_top_right.gif" width="13" height="14" border="0" alt=""></td>
  </tr>
  <tr>
   <td align="left" valign="top" background="templates/Macinscott2/images/topic_left.gif">&nbsp;</td>
   <td bgcolor="#F2F2F2"><span class="name"><a name="{postrow.U_POST_ID}"></a><b><a href="javascript:emoticon('[b]{postrow.POSTER_NAME}[/b], ')">{postrow.POSTER_NAME}</a></b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}<p align="center">{postrow.POSTER_AVATAR}</p>{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}<br />{postrow.POSTER_ONLINE}<br /><br />{L_POST} #{postrow.POST_NUMBER}</span></td>
   <td width="13" align="left" valign="top" background="templates/Macinscott2/images/topic_right.gif"></td>
  </tr>
  <tr>
   <td align="left" valign="top"><img name="topic_bttm_left" src="templates/Macinscott2/images/topic_bttm_left.gif" width="12" height="13" border="0" alt=""></td>
   <td align="left" valign="top" background="templates/Macinscott2/images/topic_bttm.gif"><img src="templates/Macinscott2/images/spacer.gif" width="1" height="13"></td>
   <td align="left" valign="top"><img name="topic_bttm_right" src="templates/Macinscott2/images/topic_bttm_right.gif" width="13" height="13" border="0" alt=""></td>
  </tr>
</table>
</td>
	<td align="center" valign="top">
   <table width="100%" border="0" cellspacing="0" cellpadding="0">
	<tr>
		<td colspan="2"></td>
	</tr>
	<tr>
				<td colspan="2"><table style="table-layout:fixed"><tr><td style="word-break:break-all"><span class="postbody">{postrow.MESSAGE}{postrow.JUDGMENT_FIELD}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td></tr></table></td>
	</tr>
	</table>
	</td>
		</tr>
	<tr>
		<td class="row4" width="150" align="center" valign="middle">
<a href="#top"><img src="templates/Macinscott2/images/lang_english/back_to_top.gif" border="0" vspace="4"></a></td>
	<td class="row4">
<table cellspacing="0" cellpadding="0" border="0" height="18" width="18">
			<tr> 
				<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!-- 

	if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 && navigator.userAgent.indexOf('6.') == -1 )
		document.write(' {postrow.ICQ_IMG}');
	else
		document.write('</td><td>&nbsp;</td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_IMG}</div><div style="position:absolute;left:3px;top:-1px">{postrow.ICQ_STATUS_IMG}</div></div>');
				
				//--></script><noscript>{postrow.ICQ_IMG}</noscript></td>
	</tr>
	</table>
	</td>
	</tr>
</table>
	</td>
	</tr>

<table width="95%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td height="35" align="left" valign="top" background="templates/Macinscott2/images/shadow_bottom.jpg"><img src="templates/Macinscott2/images/shadow_bttm_left_corner.jpg" width="19" height="35"></td>
    <td align="left" valign="top" background="templates/Macinscott2/images/shadow_bottom.jpg"><img src="templates/Macinscott2/images/shadow_bottom.jpg" width="19" height="35"></td>
    <td align="right" valign="top" background="templates/Macinscott2/images/shadow_bottom.jpg"><img src="templates/Macinscott2/images/shadow_bttm_right_corner.jpg" width="19" height="35"></td>
  </tr>
</table>

	<!-- END postrow -->
	<tr align="center"> 
		<td class="row1" colspan="2" >
		{QUICKREPLY_OUTPUT}
		</td>
	</tr>

<table width="95%" cellspacing="2" cellpadding="2" border="0" align="center">
	<tr align="right"> 
	<td width="10%" align="left" valign="middle" nowrap="NOWRAP">
	<span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>&nbsp;&nbsp;&nbsp;<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
	    <td width="67%" align="left" valign="middle"><span class="nav">&nbsp;&nbsp;&nbsp;<a href="{U_INDEX}" class="nav">{L_INDEX}</a> 
	  &raquo; <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
	    <td width="23%" height="28" valign="middle" nowrap>{S_TOPIC_ADMIN}
	      <table cellspacing="0" cellpadding="0" border="0">
          <tr>

              <td align="right"></td>

          </tr>
      </table></td>
	</tr>
</table>

<table width="95%" cellspacing="2" cellpadding="2" border="0" align="center">
  <tr> 
	<td align="left" valign="top" nowrap="nowrap"><span class="gensmall">{S_WATCH_TOPIC}</span><br />
	<span class="nav">{PAGE_NUMBER}</span>
 </td>
	<td width="100%" align="left" valign="middle" nowrap></td>
	<td align="right" valign="top" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION}</span> 
    </td>
  </tr>
  <tr>
	<td align="left" colspan="3"></td>
  </tr>
</table>

<table width="95%" cellspacing="2" border="0" align="center">
  <tr> 
	<td width="40%" valign="top" nowrap="nowrap" align="left"><p class="gensmall">{L_DISPLAY_POSTS}:<br />
	        <form method="post" action="{S_POST_DAYS_ACTION}">
	  {S_SELECT_POST_DAYS}&nbsp;{S_SELECT_POST_ORDER}&nbsp;
        <input type="submit" value="{L_GO}" class="liteoption" name="submit" />
      </p>	  </td>            </form>
	<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}<span class="gensmall">{S_AUTH_LIST}</span></td>
  </tr>
</table>
●我的架設主機作業系統:windows xp
●我的上網方式:東森
●我安裝的程式:Apache + php + MySql
●我的 phpBB2 版本:phpBB-2.0.17
●我的 風格:Macinscott2
●我的 phpBB2 連結網址: 慈善藝術園區
http://www.charity-art.club.tw/
頭像
kkt
竹貓忠實會員
竹貓忠實會員
文章: 625
註冊時間: 2005-06-15 01:37
來自: H.K.
聯繫:

文章 kkt »

To: 週末狂飆

我沒裝過這風格, 不太肯定位置, 但你可把 {postrow.JUDGMENT_FIELD}

在 <table 與 </table> 之間放放便知道, 衹要備份便可以啦.

ps. 你試放上去那麼你以後對版面位置也自會掌握到, 我也是這樣試試的.
  當然如果是其他大大師長們, 一看便知放那裡. 誰叫我們半桶水, 也衹好摸著石頭過河. 可以的, 試試吧!!


.
舊站台經已結朿了, 學生們可到遊戲站玩玩 Flash Game (不必註冊) 免費 Flash Game
在此學到很多架站知識, 永遠多謝:
心靈捕手老師, ~倉木麻衣~, 依夢兒 及 神川小羽各位大大相助
頭像
hentaibbc
版面管理員
版面管理員
文章: 342
註冊時間: 2005-09-01 18:01

文章 hentaibbc »

{postrow.MESSAGE}{postrow.JUDGMENT_FIELD}{postrow.SIGNATURE}

這三個順序換一下就可以了...

看你要哪個先都可以

MESSAGE=>文章內容
JUDGMENT_FIELD=>評語
SIGNATURE=>個性簽名
週末狂飆
星球普通子民
星球普通子民
文章: 30
註冊時間: 2005-07-24 07:00
來自: 慈善藝術園區
聯繫:

文章 週末狂飆 »

hentaibbc 寫:{postrow.MESSAGE}{postrow.JUDGMENT_FIELD}{postrow.SIGNATURE}

這三個順序換一下就可以了...

看你要哪個先都可以

MESSAGE=>文章內容
JUDGMENT_FIELD=>評語
SIGNATURE=>個性簽名
:-o 原來是這樣~~謝謝 hentaibbc 的指導,也讓我又多學一個觀念了^_^(真是的~~這就像是bbcode的排列觀念嘛@@)

順便也謝謝kkt囉~~
你試放上去那麼你以後對版面位置也自會掌握到, 我也是這樣試試的
對ㄚ我也都是先摸索!!如果不自己先試的話學不到東西,真的沒辦法再來請教,另一方面來說也不會太麻煩或浪費大家的資源和時間心意^_^
●我的架設主機作業系統:windows xp
●我的上網方式:東森
●我安裝的程式:Apache + php + MySql
●我的 phpBB2 版本:phpBB-2.0.17
●我的 風格:Macinscott2
●我的 phpBB2 連結網址: 慈善藝術園區
http://www.charity-art.club.tw/
主題已鎖定

回到「風格問題討論」