Xenforo - New Post Button in Post | BESK.SU - программирование без границ (c) 2025

Xenforo New Post Button in Post

TrafficBoy

Инквизитор
Команда форума
Admin
Credits
1,337
Compatible XF Versions 2.0, 2.1

New Post Button in Post
In Xenforo 2, you can add a new topic button when reading a topic.

Как увидеть ссылки? | How to see hidden links?Setup;
ACP --> Template --> thread_view and find:

Код:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
Replace with the code below:

[HIDE=3]
Код:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
<xf:pageaction if="$forum.canCreateThread()">
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write">
{{ phrase('post_thread') }}
</xf:button>
</xf:pageaction>
[/HIDE]
 
Сверху