Appearance
Shortcodes
Shortcodes are reusable content snippets that you can add throughout your site. They can be used in various locations including Content Blocks, Before Content sections, and After Content sections.
Notice Shortcode
The Notice shortcode creates styled notification boxes to highlight important information, warnings, or success messages to your visitors.

Basic Usage
[notice type="info" title="Did you know?" text="This casino offers 24/7 customer support!"]Available Parameters
type (optional)
Controls the visual style and color scheme of the notice box.
Options:
info(default) - Blue styling for informational messageswarning- Red styling for warnings or important alertssuccess- Green styling for positive messages
Example:
[notice type="warning" title="Important" text="This bonus requires a minimum deposit."]title (optional)
The heading text displayed at the top of the notice box.
Example:
[notice type="success" title="Great News!" text="New players get 100% welcome bonus!"]text (required)
The main content of the notice. Supports basic HTML formatting.
Allowed HTML tags:
<strong>or<b>- Bold text<em>or<i>- Italic text<br>- Line breaks
Example:
[notice type="info" text="This casino accepts <strong>Bitcoin</strong> and other cryptocurrencies.<br>Fast withdrawals guaranteed!"]url (optional)
Adds a clickable link at the bottom of the notice box. Use the pipe character | to separate the URL from the link text.
Format: url|Link Text
Examples:
With custom link text:
[notice type="info" title="Learn More" text="Discover our payment methods." url="https://example.com/payments|View All Payment Options"]Using URL as link text:
[notice type="info" text="Visit our site for details." url="https://example.com"]Examples
[notice type="info" title="New Player Bonus" text="Get up to $1000 welcome bonus on your first deposit!" url="https://casino.com/bonus|Claim Bonus Now"][notice type="warning" title="Wagering Requirements" text="This bonus has a <strong>35x wagering requirement</strong>.<br>Please read the terms before claiming."][notice type="success" title="Verified Casino" text="This casino is <strong>licensed and regulated</strong> by the UK Gambling Commission." url="https://casino.com/license|View License"]