Is it possible to place Recent active block with mchat ?
Posted: 13 Jun 2012, 12:26
Did you test it and if so, what was the result?
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
and not S_USER_LOGGED_IN
correct?I need to show mchat and recent active block in table for registered users and only mchat with full width for guest users. Is it possible with ACP permission ? Thanks.Stoker wrote:Anyway, why not use group permissions for this? It can be set in ACP.
<!-- ELSE -->
in the code like :Code: Select all
<!-- IF S_MCHAT_ENABLE and S_MCHAT_ON_INDEX and S_MCHAT_LOCATION and not S_USER_LOGGED_IN --><!-- INCLUDE mchat_body.html -->
<!-- ELSE -->
<table style="text-align: left; width: 100%;" border="0"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="width: 50%;"><!-- IF S_MCHAT_ENABLE and S_MCHAT_ON_INDEX and S_MCHAT_LOCATION and S_USER_LOGGED_IN --><!-- INCLUDE mchat_body.html --><!-- ENDIF --></td>
<td style="width: 50%;"><!-- IF S_TSRAT_ENABLE and S_USER_LOGGED_IN -->
<!-- INCLUDE recent_active_body.html -->
<!-- ENDIF --></td>
</tr>
</tbody>
</table>
<!-- ENDIF -->