Discuz! 修改当日发帖【时间】颜色问题
{eval $days=date('Y-n-j',time());}
<!--{if $thread[dateline]==$days}-->
<font color="#FF0000">$thread[dateline]</font>
<!--{else}-->
$thread[dateline]
<!--{/if}-->
你好,这个论坛我还没用过。我在网上给你找的答案,仅供参考吧:
这是给加alt 和title ,你说的H1 不用添加的 因为一个页面就一个H1 如果用户发帖带H1 那不符合要求 ,。
第一步:用FlashFXP FTP工具打开FTP空间,再根目录路径/htdocs/template/default/forum/找到discuzcodehtm文件,下载后用sublime text3打开,
第二步:在sublime text3中搜索如下字段CTRL+F搜索<img{if $attach['price'] && $_G['forum_attachmentdown'],找到后在它的src="{STATICURL}image/common/nonegif" 在这段代码后面加上如下代码:alt="$_G[forum_thread][subject]" title="$attach[description]"这样就会自动获得alt属性为标题,title为描述,图中2处位置都要添加代码。
解释:
$_G[forum_thread][subject] 文章标题$_G[setting][sitename] 网站名称$attach[imgalt] 名称
title="$attach[description]"描述(发帖时插入填写的描述)
保存后上传到原来的位置替换源文件discuzcodehtm,再到discuz管理后台刷新缓存,按住F12用工具查看添加状况。
pre_forum_typeoptionvar 分类信息项目数据表
字段名----数据类型----默认值----允许非空----备注
sortid smallint(6) unsigned 0 NO 分类信息id
tid mediumint(8) unsigned 0 NO 分类信息数据对应帖子id
fid mediumint(8) unsigned 0 NO 分类信息数据对应帖子板块id
按照对应的库表 导入数据即可
发帖页模版改一下就可以了
template \ 当前模版 \ forum \ post_editor_optionhtm
把里面的 hiddenreplies 这个控件
<input type="checkbox" name="hiddenreplies" id="hiddenreplies" class="pc"{if $thread['hiddenreplies']} checked="checked"{/if} value="1">
改成
<input type="checkbox" name="hiddenreplies" id="hiddenreplies" class="pc" checked="checked" value="1">
0条评论