- Совместимость с XenForo
- 2.2.x
- 2.3.x
Шаблон: post_macros
Ключ модификации: thread_disallow_self_reply
Тип поиска: Простая замена
Найти:
Заменить:
В определённых разделах:
Шаблон: post_macros
Ключ модификации: node_self_reply_restrict
Тип поиска: Простая замена
Найти:
Заменить:
!in_array($thread.node_id, [x, y]) - где x и y измените на id узлов, на которых хотите это видеть
Ключ модификации: thread_disallow_self_reply
Тип поиска: Простая замена
Найти:
Код:
<xf:if is="$thread.canReply() OR $thread.canReplyPreReg()">
Код:
<xf:if is="($thread.canReply() OR $thread.canReplyPreReg()) AND $post.User.user_id != $xf.visitor.user_id">
Шаблон: post_macros
Ключ модификации: node_self_reply_restrict
Тип поиска: Простая замена
Найти:
Код:
<xf:if is="$thread.canReply() OR $thread.canReplyPreReg()">
Код:
<xf:if is="($thread.canReply() OR $thread.canReplyPreReg()) AND ($post.User.user_id != $xf.visitor.user_id OR !in_array($thread.node_id, [x, y]))">