Notifications

Cookie Consent Widget

Feature Docs

GDPR-compliant cookie consent banner. Supports bar, box, and floating positions. Allows users to accept all, decline, or customize cookie preferences.

Bottom Bar

Full-width bar at the bottom of the page.

Widget appears only if consent not yet given.
Code
<?php echo CookieConsentWidget::widget([ 'position' => 'bottom', 'layout' => 'bar', ]); ?>
Live Demo

Top Bar

Fixed bar at the top of the page.

Code
<?php echo CookieConsentWidget::widget([ 'position' => 'top', 'layout' => 'bar', ]); ?>
Live Demo

Additional cookie consent demos hidden to prevent multiple banners.

Floating Box

Floating consent box in the corner.

Code
<?php echo CookieConsentWidget::widget([ 'position' => 'floating', 'layout' => 'box', ]); ?>
Live Demo

Additional cookie consent demos hidden to prevent multiple banners.

Configuration Options

OptionTypeDefaultDescription
positionstringbottomPosition: bottom, top, floating
layoutstringbarLayout: bar, box