Для начала откроем ipb_styles.css и добавим в любое место два класса для гостей:
.post_body_guest { margin: 0 10px 0 10px !important; padding-top: 10px; } .author_info_guest { width: 1px; }
Теперь открываем шаблон Темы > post, найти:
<div class='author_info'>
Заменить на:
<if test="$this->memberData['member_id']"> <div class='author_info'> <else /> <div class='author_info_guest'> </if>
Далее ищем:
{parse template="userInfoPane" group="global" params="$post['author'], $post['post']['pid'], array( 'isTopicView' => true, 'wl_id' => $post['post']['wl_id'] )"}
Заменить на:
<if test="$this->memberData['member_id']"> {parse template="userInfoPane" group="global" params="$post['author'], $post['post']['pid'], array( 'isTopicView' => true, 'wl_id' => $post['post']['wl_id'] )"} </if>
Найти:
<div class='post_body'>
Заменить на:
<if test="$this->memberData['member_id']"><div class='post_body'><else /><div class='post_body_guest'></if>
Теперь гости вашего форума не увидят авторов сообщений.
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.