配合d4開發的 出售部份內容代碼 [sell=??] 出售內容 [/sell]
同時開發了使用 [sell=??] 代碼 亦可檢查及限制出售價格
4.0 及 4.1 適用
========================================
基於大部份人也是升級論壇 而舊有的出售帖也失效
所以做了這程式 只要有人進入該主題帖 而主題帖是有出售代碼
程式會自動將這主題帖 補回整套完整的出售價格代碼
https://discuz.dismall.com/viewthread.php?tid=224069
========================================
#############################################
#
# 插件作者:別問我是誰
#
# 插件名稱:出售內容 [sell=??] 出售內容 [/sell]
#
# 適用版本:Discuz! 4.0.0 & Discuz! 4.1.0
#
# 相關修改:無需升級數據庫,修改 13 份文件
#
# 最後更新:2006-1-17 22:15
#
# 本人發佈的所有插件 歡迎轉載 齊來分享
#
#############################################
=============== 程序說明 ==================
將現時的出售 需要付費才可進入查看主題
改為以往使用的 可進入觀看帖子
[sell=??] 出售內容 [/sell] 付費後查看內容
將出售的內容隱藏 需付費後才可查看
使用方法有兩個 1. 填入出售的價格 2. 使用代碼
只需選其中一項 程式會完成整段出售代碼
============= 本程式最大優點 =====================
就算內容用了 [sell=??] 出售內容 [/sell] 這代碼
程式亦可作檢查 是否超出你用戶組的最高出售價格
若是超出 程式會將這價格改為您用戶組的最高出售價格
============================================
除了 misc.php 加入一次數據庫查詢檢查是否己付費
其它全部檔案 絕對沒有增加數據庫查詢
並在 include/newreply.inc.php 這文件
在有出售的帖子內 並減少一次數據庫查詢
每篇主題內只可有一次出售 再多也是無效
就等於在同一帖放置多個 [hide] 一樣道理
回覆不可出售 因為這是修改版插件 不是新插件
============================================
出售按鈕製作 在 第4樓
============================================
無需升級數據庫 只需修改檔案
( 修改前請先備份以下檔案 )
( 用後有什麼問題 可將備份檔案上傳恢復正常 )
修改前注意 你要有修改過 hide 對附件隱藏
https://discuz.dismall.com/viewthread.php?tid=201256
============= 修改文件 =====================
viewthread.php
misc.php
post.php
blog.php
topicadmin.php
include/editpost.inc.php
include/newreply.inc.php
include/newthread.inc.php
include/printable.inc.php
include/threadpay.inc.php
include/discuzcode.func.php
templates/default/post_editpost.htm
templates/default/viewthread.htm ( 所有風格有這份檔 viewthread.htm 亦要修改 )
以下這份 修正兩個原程式錯誤
templates/default/viewthread_printable.htm
( 修改上傳完成 緊記 更新緩存 )
完成後 只要進入以前有出售的帖內 按進編輯
再提交一次 程式會將舊有的出售轉換為現在新的
=============== 開 始 安 裝 ===================
blog.php 找
- $blog['karma'] = karmaimg($blog['rate'], $blog['ratetimes']);
复制代码
之下加入
- $blog['message'] = preg_replace("/\[sell=\d*\](.+?)\[\/sell\]/is", "**** 付費信息,已經隱藏 ****", $blog['message']);
复制代码
再找
- $blogtopic['karma'] = karmaimg($blogtopic['rate'], $blogtopic['ratetimes']);
复制代码
之下加入
- if(preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $blogtopic['message']))){
- $blogtopic['message'] = preg_replace("/\[sell=\d*\](.+?)\[\/sell\]/is", "**** 付費信息,已經隱藏 ****", $blogtopic['message']);
- }
复制代码
============================================
viewthread.php 找
- if($thread['price'] > 0) {
- if($maxchargespan && $timestamp - $thread['dateline'] >= $maxchargespan * 3600) {
- $db->query("UPDATE {$tablepre}threads SET price='0' WHERE tid='$tid'");
- $thread['price'] = 0;
- } else {
- if(!$discuz_uid) {
- showmessage('group_nopermission', NULL, 'NOPERM');
- } elseif(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
- $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
- if(!$db->num_rows($query)) {
- require_once DISCUZ_ROOT.'./include/threadpay.inc.php';
- exit();
- }
- }
- }
- }
复制代码
改為
- $pricepay = $thread['price'];
- if($thread['price'] > 0) {
- if($maxchargespan) {
- $daynow = intval(($timestamp - $thread[dateline])/3600);
- $paytimes = $maxchargespan - $daynow;
- } else {
- $paytimes = "不限";
- }
- if($maxchargespan && $timestamp - $thread['dateline'] >= $maxchargespan * 3600) {
- $db->query("UPDATE {$tablepre}threads SET price='-2' WHERE tid='$tid'");
- showmessage("本主題自發表起已超過最長出售時限,重新進入可免費查看。","viewthread.php?tid=$tid");
- } else {
- if(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
- $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
- if(!$db->num_rows($query)) {
- $nopay = 1;
- if($pay == 'pay') {
- require_once DISCUZ_ROOT.'./include/threadpay.inc.php';
- exit();
- }
- }
- }
- }
- }
复制代码
-------- 若你安裝了以下 - 沒有安裝不用理會 --------------
后台设置用户组是否拥有买卖贴免付费权限
https://discuz.dismall.com/viewthread.php?tid=218142
將以前 viewthread.php 修改過的還原
以上找 $nopay = 1;
改為 - $nopay = $issellfree ? 0 : 1;
复制代码
============================================
misc.php 找
- } elseif($action == 'pay') {
复制代码
之下加入
- $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
- if($db->num_rows($query)) {
- showmessage("您已經付過費,不用再付。","viewthread.php?tid=$tid");
- }
复制代码
============================================
post.php 找
- if(empty($bbcodeoff) && !$allowhidecode && preg_match("/\[hide=?\d*\].+?\[\/hide\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))) {
- showmessage('post_hide_nopermission');
- }
复制代码
之下加入
- if($maxprice == 0 && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))) {
- showmessage("抱歉!您的用戶組不可發表出售,請返回。");
- }
复制代码
若您有安裝本人提供的每區獨立設定可否出售 以上不用修改 改為修改以下
找
- if($forum['allowsell'] == '0' && $price) {
- showmessage('post_forum_sell_nopermission');
- }
复制代码
之下加入
- if($forum['allowsell'] == '0' && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))) {
- showmessage("抱歉!您的用戶組不可發表出售,請返回。");
- }
复制代码
============================================
topicadmin.php 找 ( 以下是刪除主題後將付費記錄刪除 )
- $db->query("DELETE FROM {$tablepre}polls WHERE tid IN ($moderatetids)");
复制代码
之下加入
- $db->query("DELETE FROM {$tablepre}paymentlog WHERE tid IN ($moderatetids)");
复制代码
再找 ( 以下是強制退款後將付費記錄刪除 )
- $db->query("UPDATE {$tablepre}paymentlog SET amount='0', netamount='0' WHERE tid='$tid'");
复制代码
改為
- $db->query("DELETE FROM {$tablepre}paymentlog WHERE tid='$tid'");
复制代码
再找 ( 以下是合併主題後將付費記錄刪除 )
- $db->query("DELETE FROM {$tablepre}polls WHERE tid='$othertid'");
复制代码
之下加入
- $db->query("DELETE FROM {$tablepre}paymentlog WHERE tid='$othertid'");
复制代码
============================================
include/threadpay.inc.php 找
- $post['dateline'] = gmdate("$dateformat $timeformat", $post['dateline'] + $timeoffset * 3600);;
复制代码
改為 這句有錯 $timeoffset * 3600);; <-- 多了一個 ; 所以順手改回正確
- $post['dateline'] = gmdate("$dateformat $timeformat", $post['dateline'] + $timeoffset * 3600);
- $post['message'] = preg_replace("/\[sell=\d*\](.+?)\[\/sell\]/is", "**** 付費信息,已經隱藏 ****", $post['message']);
复制代码
============================================
include/newthread.inc.php 找
- $price = $maxprice ? ($price <= $maxprice ? $price : $maxprice) : 0;
复制代码
改為
- //----------------------------- 檢查最高售價開始 --------------------------------
- if($price){
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message="[sell=".$price."]".$message."[/sell]";
- }elseif(preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))){
- if(!$price && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\2", $message);
- $price = isset($postsell) ? (float)$postsell : '';
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }elseif(!$price && preg_match("/\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\1", $message);
- $price = isset($postsell) ? (float)$postsell : '';
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }elseif(!$price && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]*/ies", "\\2", $message);
- $price = isset($postsell) ? (float)$postsell : '';
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }elseif(!$price && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/ies", "\\1", $message);
- $price = isset($postsell) ? (float)$postsell : '';
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }
- }
- //----------------------------- 檢查最高售價結束 --------------------------------
复制代码
============================================
include/newreply.inc.php 找
- if(empty($thread)) {
- showmessage('thread_nonexistence');
- } elseif($thread['price'] > 0) {
- if(!$discuz_uid) {
- showmessage('group_nopermission', NULL, 'NOPERM');
- } elseif(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
- $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
- if(!$db->num_rows($query)) {
- showmessage('undefined_action', NULL, 'HALTED');
- }
- }
- }
复制代码
改為 ( 以上數據庫查詢已無用,可將它減去 )
- if(empty($thread)) {
- showmessage('thread_nonexistence');
- }
复制代码
再找
- $message = preg_replace("/\[hide=\d*\](.+?)\[\/hide\]/is", "[b]$language[post_hidden][/b]", $message);
复制代码
之下加入
- $message = preg_replace("/\[sell=\d*\](.+?)\[\/sell\]/is", "[b]**** 付費信息,已經隱藏 ****[/b]", $message);
复制代码
再找
- require_once DISCUZ_ROOT.'./include/forum.func.php';
复制代码
之下加入
- if(preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))) {
- showmessage('抱歉!回覆不可使用出售代碼,請返回修改。');
- }
复制代码
============================================
include/editpost.inc.php 找
- $price = $thread['price'] < 0 ?
- ($isorigauthor || !$price ? -1 : $price) :
- ($maxprice ? ($price <= $maxprice ? ($price > 0 ? $price : 0) : $maxprice) : ($isorigauthor ? 0 : $thread['price']));
复制代码
改為
- //-----------------------------檢查最高售價開始--------------------------------
- if($price != '-1' || $price != '-2') {
- if($price > 0 && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- if(preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))){
- if($price > 0 && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\2", $message);
- }elseif($price > 0 && preg_match("/\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\1", $message);
- }elseif($price > 0 && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]*/ies", "\\2", $message);
- }elseif($price > 0 && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/ies", "\\1", $message);
- }
- $postsell = isset($postsell) ? (float)$postsell : '';
- if($thread['price'] != $postsell){
- $price = $postsell;
- }
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }
- }elseif(!$price && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- if(preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))){
- if(!$price && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\2", $message);
- }elseif(!$price && preg_match("/\[sell=\d*\].+?\[\/sell\]\s*(.+?)\s*/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\](.*)/ies", "\\1", $message);
- }elseif(!$price && preg_match("/\s*(.+?)\s*\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\s*(.+?)\s*\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]*/ies", "\\2", $message);
- }elseif(!$price && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $postsell = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/ies", "\\1", $message);
- }
- $price = isset($postsell) ? (float)$postsell : '';
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", '\[sell='.$price.'\]\\2\[\/sell\]', $message);
- }
- }elseif($price > 0 && !preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- if($price > $maxprice) {
- $price = $maxprice;
- }
- $message = "[sell=".$price."]".$message."[/sell]";
- }
- }
- //-----------------------------檢查最高售價結束--------------------------------
复制代码
再找
- if($subject == '' && $message == '') {
复制代码
之上加入 ( 緊記加在上面 )
- if($postnumber > 1 && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", preg_replace("/(\[code\].*\[\/code\])/is", '', $message))){
- showmessage('抱歉!回覆不可使用出售代碼,請返回修改。');
- }
复制代码
============================================
include/discuzcode.func.php 找
- global $discuzcodes, $credits, $tid, $discuz_uid, $highlight, $maxsmilies, $db, $tablepre, $ishide;
复制代码
改為
- global $discuzcodes, $credits, $tid, $discuz_uid, $highlight, $maxsmilies, $db, $tablepre, $ishide, $nopay, $pricepay, $paytimes;
复制代码
再找
- if(!$bbcodeoff && $allowimgcode) {
复制代码
之上加入 ( 緊記加在上面 )
- //--------------------- 出售內容開始 -------------------------
- if($pricepay && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- if($pricepay == '-1' && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "<fieldset style="padding: 5px;width:97%;border:1px solid ".BORDERCOLOR."" align="center"><legend> <span class='outertxt'>出 售 無 效</span> </legend><table align='center' border='0' width='97%' cellspacing='6' cellpadding='0'><tr><td>本主題被 [強制退款],所有付費者已得到退款。</td></tr></table></fieldset><br><br>\\2", $message);
- }elseif($pricepay == '-2' && preg_match("/\[sell=\d*\].+?\[\/sell\]/is", $message)) {
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "<br><TABLE cellPadding='3' cellSpacing='1' width='97%' align='center' class='tableborder'><TR><TD class='header' align='center'>超 過 出 售 時 限<TR><TD align='center' class='altbg2'><table border='0' width='100%' cellspacing='3' cellpadding='0'><tr align='center'><td>編號 : <input type='text' value='$tid' size='8'></td><td>價格 : <input type='text' value='0' size='6'></td><td>出售時限己過期 : <input type='text' value='0' size='6'> 小時</td><td><a href='misc.php?action=viewpayments&tid=$tid'>[ 付費名單 ]</a></td></tr><tr><td colspan='4'><FIELDSET style='width:100%;border:1px double ".BORDERCOLOR."'><LEGEND> <span class='outertxt'>感 謝 所 有 己 付 費 者</span> </LEGEND><br> 本主題自發表起已超過最長出售時限,現已免費查看。<br><br></FIELDSET></td></tr></table></td></tr></table><br>\\2", $message);
- }else{
- if($nopay == '1') {
- if(!$discuz_uid) {
- $paymessage = "非論壇會員無權購買,請 [ <a href='logging.php?action=login'>登陸</a> ] 或者 [ <a href='register.php'>註冊</a> ]。";
- }else{
- $paymessage = "請付費查看本帖出售內容 <a href="viewthread.php?tid=$tid&pay=pay">[ 我要付費 ]</a>";
- }
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "<br><TABLE cellPadding='3' cellSpacing='1' width='97%' align='center' class='tableborder'><TR><TD class='header' align='center'>收 費 單<TR><TD align='center' class='altbg2'><table border='0' width='100%' cellspacing='3' cellpadding='0'><tr align='center'><td>編號 : <input type='text' value='$tid' size='8'></td><td>價格 : <input type='text' value='$pricepay' size='6'></td><td>出售時限剩餘 : <input type='text' value='$paytimes' size='6'> 小時</td><td><a href='misc.php?action=viewpayments&tid=$tid'>[ 付費名單 ]</a></td></tr><tr><td colspan='4'><FIELDSET style='width:100%;border:1px double ".BORDERCOLOR."'><LEGEND> <span class='outertxt'>收 費 單</span> </LEGEND><br> $paymessage<br><br></FIELDSET></td></tr></table></td></tr></table><br>", $message);
- }else{
- $message = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "<br><TABLE cellPadding='3' cellSpacing='1' width='97%' align='center' class='tableborder'><TR><TD class='header' align='center'>付 費 証 明<TR><TD align='center' class='altbg2'><table border='0' width='100%' cellspacing='3' cellpadding='0'><tr align='center'><td>編號 : <input type='text' value='$tid' size='8'></td><td>價格 : <input type='text' value='$pricepay' size='6'></td><td>出售時限剩餘 : <input type='text' value='$paytimes' size='6'> 小時</td><td><a href='misc.php?action=viewpayments&tid=$tid'>[ 付費名單 ]</a></td></tr><tr><td colspan='4'><FIELDSET style='width:100%;border:1px double ".BORDERCOLOR."'><LEGEND> <span class='outertxt'>感 謝 您 的 付 費</span> </LEGEND><br> 您可以查看以下內容。如發現非法騙財、可以向 版主投訴。<br> 經查証騙財、會被強制退款,將全數款項退還所有已付費者。<br><br></FIELDSET></td></tr></table></td></tr></table><br>\\2", $message);
- }
- }
- }
- //--------------------- 出售內容結束 -------------------------
复制代码
============================================
include/printable.inc.php 找
- while($post = $db->fetch_array($query)) {
复制代码
之下加入
- if($nopay){
- $post['message'] = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "**** 付費信息,已經隱藏 ****", $post['message']);
- }
复制代码
( 以下是將 可打印版本 在無權查看時不顯示內容 )
再找
- if($post['attachment']) {
复制代码
改為
- if($post['attachment'] && !$nopay && !$ishide) {
复制代码
============================================
templates/default/post_editpost.htm 找
- <!--{if $maxprice}-->
- <tr>
- <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
- <td class="altbg2">
- <!--{if $thread['price'] == -1 || $thread['freecharge']}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]" disabled> <span class="smalltxt">{$extcredits[$creditstrans][unit]}
- <!--{if $thread['price'] == -1}-->({lang post_price_refunded})<!--{else}-->({lang post_price_free})<!--{/if}-->
- </span></td>
- <!--{else}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]"> <span class="smalltxt">{$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->{lang post_price_charge_comment}<!--{/if}-->)</span></td>
- <!--{/if}-->
- </tr>
- <!--{/if}-->
复制代码
改為
- <!--{if $maxprice && $postnumber == '1'}-->
- <tr>
- <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
- <td class="altbg2">
- <!--{if $thread['price'] == -1 || $thread['price'] == -2 || $thread['freecharge']}-->
- <input type="hidden" name="price" value="$thread[price]">
- <input type="text" size="6" value="0" disabled> <span class="smalltxt">{$extcredits[$creditstrans][unit]}
- <!--{if $thread['price'] == -1}-->({lang post_price_refunded})<!--{else}-->({lang post_price_free})<!--{/if}-->
- </span></td>
- <!--{else}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]"> <span class="smalltxt">{$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->{lang post_price_charge_comment}<!--{/if}-->)</span></td>
- <!--{/if}-->
- </tr>
- <!--{/if}-->
复制代码
若您有安裝本人提供的每區獨立設定可否出售 以上不用修改 改為修改以下
找
- <!--{if $maxprice && $postnumber == '1'}-->
- <tr>
- <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
- <td class="altbg2">
- <!--{if $thread['price'] == -1 || $thread['freecharge']}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]" disabled> <span class="smalltxt">{$extcredits[$creditstrans][unit]}
- <!--{if $thread['price'] == -1}-->({lang post_price_refunded})<!--{else}-->({lang post_price_free})<!--{/if}-->
- </span></td>
- <!--{else}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]"> <span class="smalltxt">
- <!--{if $forum['allowsell']}-->
- {$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->{lang post_price_charge_comment}<!--{/if}-->)</span>
- <!--{else}-->
- {lang post_thisforum_sell_nopermission}
- <!--{/if}-->
- <!--{/if}-->
- </td></tr>
- <!--{/if}-->
复制代码
改為
- <!--{if $maxprice && $postnumber == '1'}-->
- <tr>
- <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
- <td class="altbg2">
- <!--{if $thread['price'] == -1 || $thread['price'] == -2 || $thread['freecharge']}-->
- <input type="hidden" name="price" value="$thread[price]">
- <input type="text" size="6" value="0" disabled> <span class="smalltxt">{$extcredits[$creditstrans][unit]}
- <!--{if $thread['price'] == -1}-->({lang post_price_refunded})<!--{else}-->({lang post_price_free})<!--{/if}-->
- </span></td>
- <!--{else}-->
- <input type="text" name="price" size="6" value="$thread[pricedisplay]"> <span class="smalltxt">
- <!--{if $forum['allowsell']}-->
- {$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->{lang post_price_charge_comment}<!--{/if}-->)</span></td>
- <!--{else}-->
- {lang post_thisforum_sell_nopermission}
- <!--{/if}-->
- <!--{/if}-->
- </tr>
- <!--{/if}-->
复制代码
再拉到最底再找
- <input type="hidden" name="pid" value="$pid">
复制代码
之下加入
- <input type="hidden" name="postnumber" value="$postnumber">
复制代码
============================================
templates/default/viewthread.htm 找
- <!--{if $thread['price'] > 0}--> <a href="misc.php?action=viewpayments&tid=$tid">{lang price_thread} {$extcredits[$creditstrans][title]} <span class="bold">$thread[price]</span> {$extcredits[$creditstrans][unit]}</a> <!--{/if}-->
复制代码
改為
- <!--{if $thread['price'] > 0}--> <a href="misc.php?action=viewpayments&tid=$tid">{lang price_thread} {$extcredits[$creditstrans][title]} <span class="bold">$thread[price]</span> {$extcredits[$creditstrans][unit]}</a>
- <!--{if $forum['ismoderator'] && $thread['authorid'] != $discuz_uid}--> <a href="misc.php?action=pay&tid=$tid">友情付費</a><!--{/if}-->
- <!--{/if}-->
复制代码
再找
- <!--{if $ishide && $post['attachments'] && !$post['attachment']}-->
复制代码
改為
- <!--{if ($ishide || $nopay) && $post['attachments'] && !$post['attachment']}-->
复制代码
再找
- <!--{if $forum['ismoderator'] || $post['authorid'] == $discuz_uid}--> <a href="post.php?action=edit&fid=$fid&tid=$tid&pid=$post[pid]&page=$page&extra=$extra"><img src="{IMGDIR}/edit.gif" border="0" align="absmiddle" alt="{lang edit_post}"></a><!--{/if}-->
复制代码
改為
- <!--{if $forum['ismoderator'] || $post['authorid'] == $discuz_uid}--> <a href="post.php?action=edit&fid=$fid&tid=$tid&pid=$post[pid]&page=$page&extra=$extra&postnumber=$post[number]"><img src="{IMGDIR}/edit.gif" border="0" align="absmiddle" alt="{lang edit_post}"></a><!--{/if}-->
复制代码
============================================
templates/default/viewthread_printable.htm
找 ( 這修改是原程式的錯誤 不會轉為論壇設定的語言 )
- <meta http-equiv="Content-Type" content="text/html; charset={CHARSET}">
复制代码
改為
- <meta http-equiv="Content-Type" content="text/html; charset=$charset">
复制代码
再找 ( 這修改是 可打印版本 顯示圖片真實地址 )
- {lang attach_img}: <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <b>$attach[filename]</b> ($attach[dateline], $attach[attachsize]) / {lang attach_download_count} $attach[downloads]<br>{$boardurl}attachment.php?aid=$attach[aid]<br><br><img src="$attachurl/$attach[attachment]" border="0" onload="if(this.width>screen.width*0.8) this.width=screen.width*0.8">
复制代码
改為
- {lang attach_img}: <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <b>$attach[filename]</b> ($attach[dateline], $attach[attachsize]) / {lang attach_download_count} $attach[downloads]<br>{$boardurl}attachment.php?aid=$attach[aid]<br><br><img src="attachment.php?aid=$attach[aid]" border="0" onload="if(this.width>screen.width*0.8) this.width=screen.width*0.8">
复制代码
============================================
~ 完 ~
============================================
后台设置用户组是否拥有买卖贴免付费权限
https://discuz.dismall.com/thread-218142-1-1.html
若有安裝過以上 免付款權插件 請把以上 viewthread.php 修改的還原
改為跟以下修改 viewthread.php 找
改為
- $nopay = $issellfree ? 0 : 1;
复制代码
[ 本帖最后由 別問我是誰 于 2006-5-29 02:15 编辑 ] |