PluginProbe
Social Share Buttons / 1.1.2
Social Share Buttons v1.1.2
trunk 0.9 1.0 1.1 1.1.1 1.1.2 1.10 1.11 1.12 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.3 1.30 1.4 1.5 1.6 1.7 1.8 1.9
← All changes | classes/network/simple.php +7 -5 1.11.1.2 View file →
@@ -36,8 +36,9 @@
36 36 class emailNetwork extends mbNetwork
37 37 {
38 38 protected $network = 'email';
39 39 protected $icon = 'fa-envelope';
40 + protected $icon_type = 'fas';
40 41 protected $color = '#5e5e5e';
41 42 protected $forcesamewindow = true;
42 43
43 44 public function __construct()
@@ -52,9 +53,9 @@
52 53 class facebookNetwork extends mbNetwork
53 54 {
54 55 protected $network = 'facebook';
55 56
56 - protected $icon = 'fa-facebook';
57 + protected $icon = 'fa-facebook-f';
57 58 protected $color = '#3b5998';
58 59
59 60 public function __construct()
60 61 {
@@ -74,9 +75,9 @@
74 75
75 76 class linkedinNetwork extends mbNetwork
76 77 {
77 78 protected $network = 'linkedin';
78 - protected $icon = 'fa-linkedin';
79 + protected $icon = 'fa-linkedin-in';
79 80 protected $color = '#007bb6';
80 81
81 82 public function __construct()
82 83 {
@@ -98,8 +99,9 @@
98 99 class printNetwork extends mbNetwork
99 100 {
100 101 protected $network = 'print';
101 102 protected $icon = 'fa-print';
103 + protected $icon_type = 'fas';
102 104 protected $color = '#5e5e5e';
103 105 protected $forcesamewindow = true;
104 106
105 107 public function __construct()
@@ -209,11 +211,10 @@
209 211
210 212 $this->popup = false;
211 213
212 214 $this->label = __('View', 'mbsocial');
213 - $this->profile_url = 'https://youtube.com/user/{profile}';
215 + $this->profile_url = 'https://youtube.com/{profile}';
214 216
215 -
216 217 }
217 218 }
218 219
219 220 class snapchatNetwork extends mbNetwork
@@ -239,8 +240,9 @@
239 240 {
240 241 protected $network = 'rss';
241 242 protected $priority = 'readmore';
242 243 protected $icon = 'fa-rss';
244 + protected $icon_type = 'fas';
243 245 protected $color = '#F99000';
244 246
245 247 protected $share_profile = false;
246 248 // protected $profile_placeholder = '';
@@ -272,9 +274,9 @@
272 274 class vimeoNetwork extends mbNetwork
273 275 {
274 276 protected $network = 'vimeo';
275 277 protected $priority = 'readmore';
276 - protected $icon = 'fa-vimeo';
278 + protected $icon = 'fa-vimeo-v';
277 279 protected $color = '#1ab7ea';
278 280
279 281 public function __construct()
280 282 {