Support Thread dot menu move

bl4d30r

Registered
  • Thread starter
  • Banned
  • #1
Hello,

I use the calendar add-on from AndyB.
The function "Add to Calendar" is very hidden in its own thread (Via the points menu and calendar menu).
How can I place this button differently?



6mBkVb.jpg
 

XenForo

Administrative
How can I place this button differently?
Did you check the plugin settings carefully?
Create a new template modification:
Code:
Find: <xf:if is="$thread.canWatch()">
Replace:
<xf:if is="{$thread.user_id} == {$xf.visitor.user_id} AND {{ $xf.visitor.hasPermission('calendar', 'addRemoveOwn') }}">
<xf:button href="{{ link('threads/calendar-menu', $thread) }}" class="button--link">
{{ phrase('calendar_calendar_menu') }}
</xf:button>
<xf:elseif is="{{ $xf.visitor.hasPermission('calendar', 'addRemoveAll') }}" />
<xf:button href="{{ link('threads/calendar-menu', $thread) }}" class="button--link">
{{ phrase('calendar_calendar_menu') }}
</xf:button>
</xf:if>
$0
 
Back
Top Bottom