On the forum index I have tabbed all the statistics and who is online. This all works well and without any problems.
But now I would like to do the same with who is online/forum permissions in viewforum_body.html
But I think something isn't quite right with the "if" status. Members who have the correct permissions will see the tabs, but if members are not allowed to view the who's online then the forum permissions tab will not be displayed correctly.
But now I would like to do the same with who is online/forum permissions in viewforum_body.html
But I think something isn't quite right with the "if" status. Members who have the correct permissions will see the tabs, but if members are not allowed to view the who's online then the forum permissions tab will not be displayed correctly.
Code:
<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT --><!-- DEFINE $SHOW_PANEL = 'statistics' --><!-- ELSE --><!-- DEFINE $SHOW_PANEL = 'online-list' --><!-- ENDIF --><div class="tabs-container tab-stat-block"><div id="tabs" class="tabs sub-panels" data-show-panel="{$SHOW_PANEL}" role="tablist"><ul><!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE --><li id="online-list-tab" class="tab"><a href="#tabs" data-subpanel="online-list" role="tab" aria-controls="online-list">{L_WHO_IS_ONLINE}</a></li><!-- ENDIF --><!-- IF S_IS_POSTABLE and rules|length --><li id="statistics-tab" class="tab"><a href="#tabs" data-subpanel="statistics" role="tab" aria-controls="statistics">{L_FORUM_PERMISSIONS}</a></li><!-- ENDIF --><!-- EVENT tabbed_stat_block_tablist_append --></ul></div></div><!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE --><fieldset id="online-list" class="fields2 tab-stat-block"> <div class="panel bg3"><div class="stat-block online-list-tab"><h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3><p>{LOGGED_IN_USER_LIST}</p></div></div></fieldset><!-- ENDIF --><!-- IF S_IS_POSTABLE and rules|length --><fieldset id="statistics" class="fields2 tab-stat-block"> <div class="panel bg3"><div class="stat-block statistics-tab"><h3>{L_FORUM_PERMISSIONS}</h3><p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p></div></div></fieldset><!-- ENDIF --> </div></div>Statistics: Posted by bennybernaer — Tue Jan 23, 2024 8:35 am