关于升级 Discuz! X1.5 Release 20110121 版后非默认风格的情况下,主题左侧会员资料不显示的可以参考
演示地址:http://0762sq.cn/thread-239374-1-1.html
说明:(修正本身就是无錯的,这是站长自行修改过 viewthread_node 后的方案)
修改 ./template/风格模板/forum/viewthread_node.htm
找到

  • <dl ><!--{eval @eval('echo
    "'.$customauthorinfo[2].'";');}--></dl>

改為

  • <dl >{$post[custominfo][menu]}</dl>

找到

  • <!--{if $_G['setting']['bannedmessages'] & 2 &&
    (($post['authorid'] && !$post['username']) || ($post['groupid']
    == 4 || $post['groupid'] == 5) || ($post['status'] & 1))}-->

改為

  • <!--{if $_G['setting']['bannedmessages'] & 2 &&
    ($post['memberstatus'] == '-1' || ($post['authorid'] &&
    !$post['username']) || ($post['groupid'] == 4 || $post['groupid'] == 5)
    || ($post['status'] & 1))}-->

找到

  • <!--{if $customauthorinfo[1]}--><dl class="pil
    cl"><!--{eval @eval('echo
    "'.$customauthorinfo[1].'";');}--></dl><!--{/if}-->

改為

  • <!--{if $post[custominfo][left]}--><dl class="pil
    cl">{$post[custominfo][left]}</dl><!--{/if}-->

找到

  • <!--{if $post['signature'] &&
    ($_G['setting']['bannedmessages'] & 4 && (($post['authorid']
    && !$post['username']) || ($post['groupid'] == 4 ||
    $post['groupid'] == 5) || ($post['status'] & 1)))}-->

改為

<!--{if $post['signature'] &&
($_G['setting']['bannedmessages'] & 4 &&
($post['memberstatus'] == '-1' || ($post['authorid'] &&
!$post['username']) || ($post['groupid'] == 4 || $post['groupid'] == 5)
|| ($post['status'] & 1)))}-->