Discuz触屏版不能显示分类信息bug修复如下
DZ X3.2 版本触屏版不能显示分类信息,这个问题论坛中不少人也提到了,但是官方一直不解决。
问题修复如下:
1. 打开 template\\default\\touch\\forum\\viewthread.htm 找到
<!–{if $post['first'] && $threadsortshow}–>
<!–{if $post['first'] && $threadsort && $threadsortshow}–>
<!–{if $post['first'] && $threadsortshow}–>
更改为:
<!–{if $post['first'] && $threadsort && $threadsortshow}–>
这样就能正常显示分类信息了。
继续美化一下
找到
找到
$option[title]: <!–{if $option['value']}–>$option[value] $option[unit]<!–{else}–><span class="grey">–</span><!–{/if}–>
更改为:
<p style="margin-bottom:5px;"><span class="grey"><em> $option[title]</em></span> <!–{if $option['value']}–>$option[value] $option[unit]<!–{else}–><span class="grey">–</span><!–{/if}–></p>
就这样,分类信息就完美显示了