Widget Demos
UI Components
Marketing
Content Display
Navigation
Notifications
Visual Effects
Interactive
Layout
Marketing
Share Buttons Widget
Social sharing buttons for content. Supports 8 platforms (Facebook, Twitter, LinkedIn, Pinterest, WhatsApp, Telegram, Reddit, Email) plus copy link. Configurable layouts, native brand colors, and popup windows.
Default Share Buttons
Standard horizontal layout with labels.
Code
<?php echo ShareButtonsWidget::widget([
'url' => Yii::$app->request->absoluteUrl,
'title' => $model->title,
]); ?>Live Demo
Icon-Only Buttons
Brand Colors
Buttons with native platform brand colors.
Code
<?php echo ShareButtonsWidget::widget([
'useNativeColors' => true,
]); ?>Live Demo
With Copy Link
Include a copy-to-clipboard button.
Code
<?php echo ShareButtonsWidget::widget([
'showCopyLink' => true,
'platforms' => ['facebook', 'twitter', 'email'],
]); ?>Live Demo
Vertical Layout
Stacked vertical button layout.
Code
<?php echo ShareButtonsWidget::widget([
'layout' => 'vertical',
]); ?>Live Demo
Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
url | string | current page | URL to share |
title | string | page title | Title/text to share |
platforms | array | ['facebook', 'twitter', 'linkedin', 'whatsapp'] | Platforms to show |
showLabels | bool | true | Show text labels |
showCopyLink | bool | false | Include copy link button |
layout | string | horizontal | Layout: horizontal, vertical |
size | string | md | Size: sm, md, lg |
useNativeColors | bool | false | Use platform brand colors |
usePopup | bool | true | Open in popup windows |