天下网吧 >> 网吧天地 >> 网吧技术 >> 网吧软件 >> 正文

如何在Discuz 7.1中给通过WAP发布的帖子加标记

  

  Discuz!是康盛创想(Comsenz)公司推出的一款论坛BBS产品,本期教程笔者为大家讲解在Discuz! 7.1下如何给通过WAP发布的帖子加标记。

  如果回复或者主题是通过wap发布的,则在帖子信息中显示出来 “该信息来自手机”。

  效果图: 

  一、修改数据库结构

  在 Discuz 7.1 后台 => 数据库 => 升级,提交如下SQL:

  ALTER TABLE `cdb_posts` ADD `onmobile` TINYINT( 1 ) NOT NULL

  二、修改WAP程序

  打开论坛根目录下 \wap\include\post.inc.php 文件

  找到

  $db->query("INSERT INTO {$tablepre}posts (fid, tid, first, author, authorid, subject, dateline, message, useip, invisible, usesig, htmlon, bbcodeoff, smileyoff, parseurloff, attachment)

  VALUES ('$fid', '$tid', '1', '$discuz_user', '$discuz_uid', '$subject', '$timestamp', '$message', '$onlineip', '$pinvisible', '0', '0', '0', '0', '0', '0')");

  修改为:

  $db->query("INSERT INTO {$tablepre}posts (fid, tid, first, author, authorid, subject, dateline, message, useip, invisible, usesig, htmlon, bbcodeoff, smileyoff, parseurloff, attachment,onmobile)

  VALUES ('$fid', '$tid', '1', '$discuz_user', '$discuz_uid', '$subject', '$timestamp', '$message', '$onlineip', '$pinvisible', '0', '0', '0', '0', '0', '0','1')");

  找到

  $db->query("INSERT INTO {$tablepre}posts (fid, tid, first, author, authorid, dateline, message, useip, invisible, usesig, htmlon, bbcodeoff, smileyoff, parseurloff, attachment)

  VALUES ('$fid', '$tid', '0', '$discuz_user', '$discuz_uid', '$timestamp', '$message', '$onlineip', '$pinvisible', '1', '0', '0', '0', '0', '0')");

  修改为:

  $db->query("INSERT INTO {$tablepre}posts (fid, tid, first, author, authorid, dateline, message, useip, invisible, usesig, htmlon, bbcodeoff, smileyoff, parseurloff, attachment,onmobile)

  VALUES ('$fid', '$tid', '0', '$discuz_user', '$discuz_uid', '$timestamp', '$message', '$onlineip', '$pinvisible', '1', '0', '0', '0', '0', '0','1')");

  保存。

  三、修改模板

  打开论坛目录下 \templates\default\viewthread_node.htm 文件

  找到

  {lang guest} {$pluginhooks[viewthread_postheader][$postcount]}{lang poston} $post[dateline]

  在此段程序之后添加:

  该信息来自手机

  保存,更新缓存。

 

 

 

本文来源:华军资讯 作者:厂商投递

声明
声明:本站所发表的文章、评论及图片仅代表作者本人观点,与本站立场无关。文章是出于传递更多信息之目的。若有来源标注错误或侵犯了您的合法权益,请作者持权属证明与本网联系,我们将及时更正、删除,谢谢。 Email:support@txwb.com,系统开号,技术支持,服务联系微信:_WX_1_本站所有有注明来源为天下网吧或天下网吧论坛的原创作品,各位转载时请注明来源链接!
天下网吧·网吧天下
  • 本周热门
  • 本月热门
  • 阅读排行