[BBCODE] Guests Only BBCode

Mixed forum with phpBB code snippets
Guides and styles

[BBCODE] Guests Only BBCode

Post by Stoker »

Guests Only BBCode

The Guests Only BBCode allows you to post content ONLY visible for guests.
Inspired by Cabot

BBCode usage:

Code: Select all

[guests]{TEXT}[/guests]
HTML replacement:

Code: Select all

<xsl:choose>
	<xsl:when test="$S_USER_LOGGED_IN">
	</xsl:when>
	<xsl:otherwise>
		<span style="color:red;font-weight:bold;">{TEXT}</span>
	</xsl:otherwise>
</xsl:choose>
Help line:

Code: Select all

This BBCode allows you to display content for guests only: [guests]Guest only content[/guests]
Last edited by Stoker on 06 May 2025, 09:05, edited 2 times in total.
Reason: -