charafweb
Проверенные
- Сообщения
- 20
- Реакции
- 28
- Баллы
- 5,510
Hi,
This is how to add a button to create a new topic in the category of current viewed thread & restore Reply button at the same time:
1- Appearance > Styles > (YourStyle) > Templates
Edit Template: thread_view and add this somewhere:
Thanks for reading
This is how to add a button to create a new topic in the category of current viewed thread & restore Reply button at the same time:
1- Appearance > Styles > (YourStyle) > Templates
Edit Template: thread_view and add this somewhere:
Код:
<xen:if is="{$canReply}">
<xen:topctrl>
<a href="{xen:link 'threads/reply', $thread}" class="callToAction"><span>{xen:phrase reply_to_thread}</span></a>
<a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a>
</xen:topctrl>
</xen:if>
Thanks for reading