Livemesh SiteOrigin Widgets - Version 1.4.2

Version Description

  • Added - Compatibility with WordPress 4.6.
  • Added - Comparison table of Lite vs PRO version.
Download this release

Release Info

Developer livemesh
Plugin Icon 128x128 Livemesh SiteOrigin Widgets
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

admin/admin-init.php CHANGED
@@ -167,6 +167,17 @@ class LSOW_Admin {
167
 
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
170
  }
171
 
172
  }
167
 
168
  }
169
 
170
+ if (strpos($screen->id, $this->plugin_slug . '_pro_upgrade') !== false) {
171
+
172
+ // Load scripts and styles for premium upgrade
173
+ wp_register_script('lsow-pro-upgrade-scripts', LSOW_PLUGIN_URL . 'admin/assets/js/premium-upgrade' . $suffix . '.js', array(), LSOW_VERSION, true);
174
+ wp_enqueue_script('lsow-pro-upgrade-scripts');
175
+
176
+ wp_register_style('lsow-pro-upgrade-styles', LSOW_PLUGIN_URL . 'admin/assets/css/premium-upgrade.css', array(), LSOW_VERSION);
177
+ wp_enqueue_style('lsow-pro-upgrade-styles');
178
+
179
+ }
180
+
181
  }
182
 
183
  }
admin/assets/css/premium-upgrade.css ADDED
@@ -0,0 +1,607 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* -------------------- Pricing Plan ------------ */
2
+ .clear:after {
3
+ visibility: hidden;
4
+ display: block;
5
+ font-size: 0;
6
+ content: " ";
7
+ clear: both;
8
+ height: 0; }
9
+
10
+ .clear {
11
+ display: inline-table;
12
+ clear: both; }
13
+
14
+ * html .clear {
15
+ height: 1%; }
16
+
17
+ .clear {
18
+ display: block; }
19
+
20
+ .hide {
21
+ display: none !important; }
22
+
23
+ .flex-wrap {
24
+ display: -webkit-flex;
25
+ display: -ms-flexbox;
26
+ display: flex;
27
+ -webkit-flex-wrap: wrap;
28
+ -ms-flex-wrap: wrap;
29
+ flex-wrap: wrap; }
30
+
31
+ .flex-col {
32
+ display: -webkit-flex;
33
+ display: -ms-flexbox;
34
+ display: flex; }
35
+
36
+ .btn {
37
+ line-height: 20px;
38
+ display: block;
39
+ float: left;
40
+ position: relative;
41
+ overflow: hidden;
42
+ padding: 13px 20px;
43
+ font-size: 0.9375em;
44
+ font-weight: 400;
45
+ text-align: center;
46
+ cursor: pointer;
47
+ text-decoration: none;
48
+ margin: 0;
49
+ border: 0;
50
+ outline: 0;
51
+ border-image-width: 0;
52
+ -webkit-border-radius: 3px;
53
+ -moz-border-radius: 3px;
54
+ border-radius: 3px; }
55
+
56
+ .btn,
57
+ .btn:hover,
58
+ .btn:focus,
59
+ .btn:active {
60
+ color: #fff;
61
+ text-decoration: none; }
62
+
63
+ .btn {
64
+ background-color: #00bcd4; }
65
+
66
+ .btn:hover {
67
+ background-color: #26c6da; }
68
+
69
+ .btn:focus,
70
+ .btn:active {
71
+ background-color: #05a7bd; }
72
+
73
+ .m0 {
74
+ margin: 0 !important; }
75
+
76
+ .mb0 {
77
+ margin-bottom: 0 !important; }
78
+
79
+ .mb1 {
80
+ margin-bottom: 1px !important; }
81
+
82
+ .mb5 {
83
+ margin-bottom: 5px !important; }
84
+
85
+ .mb10 {
86
+ margin-bottom: 10px !important; }
87
+
88
+ .mb15 {
89
+ margin-bottom: 15px !important; }
90
+
91
+ .mb20 {
92
+ margin-bottom: 20px !important; }
93
+
94
+ .mb30 {
95
+ margin-bottom: 30px !important; }
96
+
97
+ .c-wh {
98
+ color: #fff !important; }
99
+
100
+ .c-red {
101
+ color: #da4f49 !important; }
102
+
103
+ .c-mg {
104
+ color: #9e9e9e; }
105
+
106
+ .w100 {
107
+ width: 100% !important; }
108
+
109
+ .bg-cy {
110
+ background-color: #00bcd4; }
111
+
112
+ .bg-gr {
113
+ background-color: #8ac249; }
114
+
115
+ .pricing-content {
116
+ max-width: 1000px;
117
+ margin: 0 auto; }
118
+
119
+ .pricing-content, .pricing-content p {
120
+ font-size: 18px;
121
+ line-height: 1.6; }
122
+
123
+ .pricing-content p:empty {
124
+ display: none; }
125
+
126
+ div.plans-wrapper ul {
127
+ list-style-type: none;
128
+ margin: 0 0 15px 0; }
129
+
130
+ div#plans {
131
+ margin-top: 50px; }
132
+
133
+ div.plans-wrapper {
134
+ width: 100%;
135
+ margin: 0 auto;
136
+ position: relative;
137
+ background: #f5f8f9;
138
+ z-index: 4;
139
+ -webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
140
+ -moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
141
+ box-shadow: 0 0 30px rgba(34, 44, 55, 0.15); }
142
+
143
+ div.plans-wrapper div.plan-intro div.w100 {
144
+ padding: 20px 30px 0 30px;
145
+ position: relative; }
146
+
147
+ div.plans-wrapper div.plan-intro {
148
+ width: 340px;
149
+ float: left;
150
+ padding: 30px 0;
151
+ position: relative;
152
+ z-index: 4; }
153
+
154
+ div.plans-wrapper div.plans {
155
+ width: 100%;
156
+ float: left;
157
+ margin: 0 0 0 -340px;
158
+ position: relative; }
159
+
160
+ div.plans-wrapper div.content-wrapper {
161
+ margin: 0 0 0 340px;
162
+ position: relative; }
163
+
164
+ div.plans-wrapper div.plan {
165
+ width: 50%;
166
+ float: left;
167
+ text-align: center;
168
+ position: relative;
169
+ z-index: 2;
170
+ -webkit-transition: all .5s;
171
+ -moz-transition: all .5s;
172
+ transition: all .5s; }
173
+
174
+ div.plans-wrapper div.plan h3 {
175
+ color: #fff; }
176
+
177
+ div.plans-wrapper div.plan:last-child {
178
+ border-right: 0; }
179
+
180
+ div.plans-wrapper div.plan {
181
+ background: #222c37;
182
+ -webkit-transition: all .25s;
183
+ -moz-transition: all .25s;
184
+ transition: all .25s; }
185
+
186
+ div.plans-wrapper div.plan2,
187
+ div.plans-wrapper div.plan4 {
188
+ background: #2d3741; }
189
+
190
+ div.plans-wrapper div.plan div.w100 {
191
+ position: relative;
192
+ padding: 40px 20px 80px 20px; }
193
+
194
+ div.plans-wrapper div.plan-intro img {
195
+ width: 100%;
196
+ height: auto; }
197
+
198
+ div.plans-wrapper div.plan p {
199
+ font-size: 1.0625em;
200
+ color: #ccc;
201
+ backface-visibility: hidden; }
202
+
203
+ div.plans-wrapper div.plan .price {
204
+ position: relative;
205
+ display: inline-block;
206
+ font-size: 1.875em;
207
+ margin: 0 0 30px 0; }
208
+
209
+ div.plans-wrapper div.plan div.action {
210
+ position: absolute;
211
+ bottom: 30px;
212
+ left: 30px;
213
+ right: 30px;
214
+ text-align: center; }
215
+
216
+ div.plans-wrapper div.plan div.action .btn {
217
+ width: 100%;
218
+ vertical-align: top; }
219
+
220
+ div.compare-wrapper {
221
+ width: 100%;
222
+ margin: 0 auto;
223
+ background: #ececec;
224
+ position: relative; }
225
+
226
+ div.compare-wrapper div.benefits {
227
+ width: 340px;
228
+ float: left; }
229
+
230
+ div.compare-wrapper div.plans {
231
+ width: 100%;
232
+ float: left;
233
+ margin: 0 0 0 -340px;
234
+ position: relative; }
235
+
236
+ div.compare-wrapper div.content-wrapper {
237
+ margin: 0 0 0 340px;
238
+ position: relative; }
239
+
240
+ div.compare-wrapper div.plan {
241
+ width: 50%;
242
+ float: left;
243
+ padding: 30px 0 0 0;
244
+ text-align: center;
245
+ background: #f5f8f9; }
246
+
247
+ div.compare-wrapper div.plan.even {
248
+ background: #ececec; }
249
+
250
+ div.compare-wrapper div.tooltip {
251
+ padding: 20px;
252
+ background: #fff;
253
+ position: absolute;
254
+ border-bottom: #37BF91 5px solid;
255
+ top: 48px;
256
+ left: 10px;
257
+ right: 10px;
258
+ font-weight: 300;
259
+ z-index: 999;
260
+ text-align: left;
261
+ -webkit-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
262
+ -moz-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
263
+ box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3); }
264
+
265
+ div.compare-wrapper div.tooltip:before {
266
+ content: '';
267
+ display: block;
268
+ position: absolute;
269
+ top: -19px;
270
+ right: 21px;
271
+ z-index: 18;
272
+ border: transparent 10px solid;
273
+ border-bottom-color: #fff; }
274
+
275
+ div.compare-wrapper div.tooltip p {
276
+ font-size: 1em;
277
+ margin: 0; }
278
+
279
+ div.compare-wrapper div.action {
280
+ padding: 30px;
281
+ background: #f0f3f4; }
282
+
283
+ div.compare-wrapper div.plan.even div.action {
284
+ background: #e7e7e7; }
285
+
286
+ div.compare-wrapper div.action .btn {
287
+ width: 100%;
288
+ vertical-align: top; }
289
+
290
+ div.compare-wrapper div.benefits h4 {
291
+ margin: 0;
292
+ padding: 30px;
293
+ background: #f5f8f9;
294
+ position: relative;
295
+ z-index: 3; }
296
+
297
+ div.compare-wrapper div.benefits ul {
298
+ list-style: none !important;
299
+ margin: 0 !important;
300
+ padding: 0 !important;
301
+ position: relative;
302
+ z-index: 4; }
303
+
304
+ div.compare-wrapper div.benefits ul li {
305
+ height: 50px;
306
+ padding: 0 30px !important;
307
+ margin: 0 !important;
308
+ text-align: left;
309
+ font-size: 0.9375em;
310
+ font-weight: 400;
311
+ position: relative;
312
+ background: #f5f8f9; }
313
+
314
+ div.compare-wrapper div.benefits ul li div.text {
315
+ vertical-align: middle;
316
+ display: table-cell;
317
+ height: 50px; }
318
+
319
+ div.compare-wrapper div.benefits ul li:nth-child(odd) {
320
+ background: #ececec; }
321
+
322
+ div.compare-wrapper div.benefits ul li:before {
323
+ display: none; }
324
+
325
+ div.compare-wrapper div.benefits ul li span.dashicons-editor-help {
326
+ line-height: 22px;
327
+ display: block;
328
+ position: absolute;
329
+ top: 5px;
330
+ right: 30px;
331
+ cursor: pointer;
332
+ text-align: center;
333
+ color: #9e9e9e;
334
+ font-size: 32px;
335
+ line-height: 1; }
336
+
337
+ div.compare-wrapper div.benefits ul li span.dashicons-editor-help:before {
338
+ font-size: 85%; }
339
+
340
+ div.compare-wrapper div.plan h4 {
341
+ color: #222c37;
342
+ margin: 0 0 30px 0; }
343
+
344
+ div.compare-wrapper div.plan ul {
345
+ width: 100%;
346
+ margin: 0 !important;
347
+ padding: 0 !important;
348
+ list-style: none !important; }
349
+
350
+ div.compare-wrapper div.plan ul li {
351
+ position: relative;
352
+ height: 50px;
353
+ line-height: 20px;
354
+ padding: 15px 20px !important;
355
+ margin: 0 !important;
356
+ text-align: center;
357
+ font-size: 0.9375em; }
358
+
359
+ div.compare-wrapper div.plan ul li:nth-child(odd) {
360
+ background: rgba(0, 0, 0, 0.02); }
361
+
362
+ div.compare-wrapper div.plan ul li:before {
363
+ display: none; }
364
+
365
+ div.compare-wrapper div.plan ul li span.dashicons-editor-help {
366
+ font-size: 24px;
367
+ vertical-align: top;
368
+ line-height: 1;
369
+ color: #9e9e9e;
370
+ margin: 0 0 0 2px;
371
+ cursor: pointer; }
372
+
373
+ div.compare-wrapper div.plan ul li span.pay {
374
+ font-weight: 700; }
375
+
376
+ div.compare-wrapper div.plan ul li div.tooltip:before {
377
+ right: 50%;
378
+ margin: 0 -10px 0 0; }
379
+
380
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
381
+ color: #da4f49; }
382
+
383
+ div.compare-wrapper div.plan1 ul li div.dashicons-yes {
384
+ color: #8ac249; }
385
+
386
+ div.compare-wrapper div.plan2 ul li div.dashicons-yes {
387
+ color: #00bcd4; }
388
+
389
+ div.compare-wrapper div.plan3 ul li div.dashicons-yes {
390
+ color: #37BF91; }
391
+
392
+ div.compare-wrapper div.plan4 ul li div.dashicons-yes {
393
+ color: #009688; }
394
+
395
+ div.compare-wrapper .dashicons {
396
+ font-size: 28px;
397
+ line-height: 1;
398
+ width: auto;
399
+ height: auto; }
400
+
401
+ div.compare-wrapper div.plan1 ul li div.tooltip {
402
+ border-color: #8ac249; }
403
+
404
+ div.compare-wrapper div.plan2 ul li div.tooltip {
405
+ border-color: #00bcd4; }
406
+
407
+ div.compare-wrapper div.plan3 ul li div.tooltip {
408
+ border-color: #37BF91; }
409
+
410
+ div.compare-wrapper div.plan4 ul li div.tooltip {
411
+ border-color: #009688; }
412
+
413
+ div.compare-wrapper div.plan ul li .m {
414
+ display: none; }
415
+
416
+ @media only screen and (min-width: 150px) and (max-width: 1380px) {
417
+ div#plans {
418
+ margin-bottom: 40px; }
419
+
420
+ div.plans-wrapper div.plan-intro {
421
+ display: none; }
422
+
423
+ div.plans-wrapper div.plans {
424
+ margin: 0; }
425
+
426
+ div.plans-wrapper div.content-wrapper {
427
+ margin: 0; }
428
+
429
+ div.compare-wrapper {
430
+ background: transparent; }
431
+
432
+ div.compare-wrapper div.benefits {
433
+ width: 100%;
434
+ margin: 0 0 30px 0; }
435
+
436
+ div.compare-wrapper div.benefits h4 {
437
+ padding: 0;
438
+ background: transparent;
439
+ font-size: 2em;
440
+ line-height: 1em;
441
+ font-weight: 100;
442
+ color: #222c37; }
443
+
444
+ div.compare-wrapper div.benefits ul {
445
+ display: none; }
446
+
447
+ div.compare-wrapper div.plans {
448
+ margin: 0; }
449
+
450
+ div.compare-wrapper div.content-wrapper {
451
+ margin: 0; }
452
+
453
+ div.compare-wrapper div.plan h4 {
454
+ color: #fff;
455
+ margin: 0;
456
+ padding: 15px 20px;
457
+ background: #222c37; }
458
+
459
+ div.compare-wrapper div.plan {
460
+ width: 100%;
461
+ padding: 0;
462
+ margin: 0 0 15px 0;
463
+ text-align: left;
464
+ background: #f5f8f9 !important; }
465
+
466
+ div.compare-wrapper div.plan ul {
467
+ width: 100%;
468
+ margin: 0;
469
+ display: -webkit-flex;
470
+ display: -ms-flexbox;
471
+ display: flex;
472
+ -webkit-flex-wrap: wrap;
473
+ -ms-flex-wrap: wrap;
474
+ flex-wrap: wrap; }
475
+
476
+ div.compare-wrapper div.plan ul li {
477
+ width: 50%;
478
+ height: auto;
479
+ float: left;
480
+ line-height: 20px;
481
+ padding: 15px 20px 15px 40px !important;
482
+ text-align: left;
483
+ display: -webkit-flex;
484
+ display: -ms-flexbox;
485
+ display: flex; }
486
+
487
+ div.compare-wrapper div.plan ul li:nth-child(odd) {
488
+ background: transparent; }
489
+
490
+ div.compare-wrapper div.plan ul li:nth-child(2),
491
+ div.compare-wrapper div.plan ul li:nth-child(3),
492
+ div.compare-wrapper div.plan ul li:nth-child(6),
493
+ div.compare-wrapper div.plan ul li:nth-child(7),
494
+ div.compare-wrapper div.plan ul li:nth-child(10),
495
+ div.compare-wrapper div.plan ul li:nth-child(11),
496
+ div.compare-wrapper div.plan ul li:nth-child(14),
497
+ div.compare-wrapper div.plan ul li:nth-child(15),
498
+ div.compare-wrapper div.plan ul li:nth-child(18),
499
+ div.compare-wrapper div.plan ul li:nth-child(19),
500
+ div.compare-wrapper div.plan ul li:nth-child(22),
501
+ div.compare-wrapper div.plan ul li:nth-child(23) {
502
+ background: rgba(0, 0, 0, 0.02); }
503
+
504
+ div.compare-wrapper div.plan ul li span.message {
505
+ display: none; }
506
+
507
+ div.compare-wrapper div.plan ul li .m {
508
+ display: inline-block; }
509
+
510
+ div.compare-wrapper div.plan ul li div.dashicons-yes,
511
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
512
+ position: absolute;
513
+ top: 13px;
514
+ left: 8px; }
515
+
516
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
517
+ top: 16px; }
518
+
519
+ div.compare-wrapper div.plan ul li span.m-message {
520
+ display: inline-block; }
521
+
522
+ div.compare-wrapper div.action {
523
+ padding: 15px;
524
+ background: #e7e7e7; }
525
+
526
+ div.compare-wrapper div.plan.even div.action {
527
+ background: #e7e7e7; }
528
+
529
+ div.compare-wrapper div.action .btn {
530
+ width: auto; } }
531
+ @media only screen and (min-width: 150px) and (max-width: 1023px) {
532
+ div#plans {
533
+ padding-left: 30px;
534
+ padding-right: 30px; }
535
+
536
+ div.plans-wrapper div.plan {
537
+ width: 50%; }
538
+
539
+ div#compare {
540
+ padding-left: 30px;
541
+ padding-right: 30px; } }
542
+ @media only screen and (min-width: 150px) and (max-width: 767px) {
543
+ div#plans {
544
+ padding-left: 20px;
545
+ padding-right: 20px; }
546
+
547
+ div.plans-wrapper {
548
+ background: #fff;
549
+ -webkit-box-shadow: none;
550
+ -moz-box-shadow: none;
551
+ box-shadow: none; }
552
+
553
+ div.plans-wrapper div.plan {
554
+ width: 100%;
555
+ margin: 0 0 15px 0;
556
+ -webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
557
+ -moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
558
+ box-shadow: 0 0 30px rgba(34, 44, 55, 0.15); }
559
+
560
+ div.plans-wrapper div.plan div.icon {
561
+ display: none; }
562
+
563
+ div.plans-wrapper div.plan p.text {
564
+ height: auto !important; }
565
+
566
+ div#compare {
567
+ padding-left: 20px;
568
+ padding-right: 20px; }
569
+
570
+ div.compare-wrapper div.plan ul li {
571
+ width: 100%; }
572
+
573
+ div.compare-wrapper div.plan ul li:nth-child(2),
574
+ div.compare-wrapper div.plan ul li:nth-child(3),
575
+ div.compare-wrapper div.plan ul li:nth-child(6),
576
+ div.compare-wrapper div.plan ul li:nth-child(7),
577
+ div.compare-wrapper div.plan ul li:nth-child(10),
578
+ div.compare-wrapper div.plan ul li:nth-child(11),
579
+ div.compare-wrapper div.plan ul li:nth-child(14),
580
+ div.compare-wrapper div.plan ul li:nth-child(15),
581
+ div.compare-wrapper div.plan ul li:nth-child(18),
582
+ div.compare-wrapper div.plan ul li:nth-child(19),
583
+ div.compare-wrapper div.plan ul li:nth-child(22),
584
+ div.compare-wrapper div.plan ul li:nth-child(23) {
585
+ background: transparent; }
586
+
587
+ div.compare-wrapper div.plan ul li:nth-child(even) {
588
+ background: rgba(0, 0, 0, 0.02) !important; }
589
+
590
+ div.faq-wrapper div.g12 {
591
+ padding-bottom: 15px !important; }
592
+
593
+ div.faq-wrapper div.g4 {
594
+ width: 100%;
595
+ padding-bottom: 0;
596
+ padding-top: 0; } }
597
+ @media only screen and (min-width: 150px) and (max-width: 479px) {
598
+ div#plans {
599
+ padding-left: 15px;
600
+ padding-right: 15px; }
601
+
602
+ div#compare {
603
+ padding-left: 15px;
604
+ padding-right: 15px; } }
605
+ /* ------- END: Pricing Plan --------- */
606
+
607
+ /*# sourceMappingURL=premium-upgrade.css.map */
admin/assets/css/premium-upgrade.css.map ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 3,
3
+ "mappings": "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",
4
+ "sources": ["premium-upgrade.scss"],
5
+ "names": [],
6
+ "file": "premium-upgrade.css"
7
+ }
admin/assets/css/premium-upgrade.scss ADDED
@@ -0,0 +1,699 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* -------------------- Pricing Plan ------------ */
2
+
3
+ .clear:after {
4
+ visibility: hidden;
5
+ display: block;
6
+ font-size: 0;
7
+ content: " ";
8
+ clear: both;
9
+ height: 0;
10
+ }
11
+
12
+ .clear {
13
+ display: inline-table;
14
+ clear: both;
15
+ }
16
+
17
+ * html .clear {
18
+ height: 1%;
19
+ }
20
+
21
+ .clear {
22
+ display: block;
23
+ }
24
+
25
+ .hide {
26
+ display: none !important;
27
+ }
28
+
29
+ .flex-wrap {
30
+ display: -webkit-flex;
31
+ display: -ms-flexbox;
32
+ display: flex;
33
+ -webkit-flex-wrap: wrap;
34
+ -ms-flex-wrap: wrap;
35
+ flex-wrap: wrap;
36
+ }
37
+
38
+ .flex-col {
39
+ display: -webkit-flex;
40
+ display: -ms-flexbox;
41
+ display: flex;
42
+ }
43
+
44
+ .btn {
45
+ line-height: 20px;
46
+ display: block;
47
+ float: left;
48
+ position: relative;
49
+ overflow: hidden;
50
+ padding: 13px 20px;
51
+ font-size: 0.9375em;
52
+ font-weight: 400;
53
+ text-align: center;
54
+ cursor: pointer;
55
+ text-decoration: none;
56
+ margin: 0;
57
+ border: 0;
58
+ outline: 0;
59
+ border-image-width: 0;
60
+ -webkit-border-radius: 3px;
61
+ -moz-border-radius: 3px;
62
+ border-radius: 3px;
63
+ }
64
+
65
+ .btn,
66
+ .btn:hover,
67
+ .btn:focus,
68
+ .btn:active {
69
+ color: #fff;
70
+ text-decoration: none;
71
+ }
72
+
73
+ .btn {
74
+ background-color: #00bcd4;
75
+ }
76
+
77
+ .btn:hover {
78
+ background-color: #26c6da;
79
+ }
80
+
81
+ .btn:focus,
82
+ .btn:active {
83
+ background-color: #05a7bd;
84
+ }
85
+
86
+ .m0 {
87
+ margin: 0 !important;
88
+ }
89
+
90
+ .mb0 {
91
+ margin-bottom: 0 !important;
92
+ }
93
+
94
+ .mb1 {
95
+ margin-bottom: 1px !important;
96
+ }
97
+
98
+ .mb5 {
99
+ margin-bottom: 5px !important;
100
+ }
101
+
102
+ .mb10 {
103
+ margin-bottom: 10px !important;
104
+ }
105
+
106
+ .mb15 {
107
+ margin-bottom: 15px !important;
108
+ }
109
+
110
+ .mb20 {
111
+ margin-bottom: 20px !important;
112
+ }
113
+
114
+ .mb30 {
115
+ margin-bottom: 30px !important;
116
+ }
117
+
118
+ .c-wh {
119
+ color: #fff !important;
120
+ }
121
+ .c-red {
122
+ color: #da4f49 !important;
123
+ }
124
+ .c-mg {
125
+ color: #9e9e9e;
126
+ }
127
+ .w100 {
128
+ width: 100% !important;
129
+ }
130
+
131
+ .bg-cy {
132
+ background-color: #00bcd4;
133
+ }
134
+
135
+ .bg-gr {
136
+ background-color: #8ac249;
137
+ }
138
+
139
+ .pricing-content {
140
+ max-width: 1000px;
141
+ margin: 0 auto;
142
+ }
143
+ .pricing-content, .pricing-content p {
144
+ font-size: 18px;
145
+ line-height: 1.6;
146
+ }
147
+ .pricing-content p:empty {
148
+ display: none;
149
+ }
150
+
151
+ div.plans-wrapper ul {
152
+ list-style-type: none;
153
+ margin: 0 0 15px 0;
154
+ }
155
+
156
+ div#plans {
157
+ margin-top: 50px;
158
+ }
159
+
160
+ div.plans-wrapper {
161
+ width: 100%;
162
+ margin: 0 auto;
163
+ position: relative;
164
+ background: #f5f8f9;
165
+ z-index: 4;
166
+ -webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
167
+ -moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
168
+ box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
169
+ }
170
+
171
+ div.plans-wrapper div.plan-intro div.w100 {
172
+ padding: 20px 30px 0 30px;
173
+ position: relative;
174
+ }
175
+
176
+ div.plans-wrapper div.plan-intro {
177
+ width: 340px;
178
+ float: left;
179
+ padding: 30px 0;
180
+ position: relative;
181
+ z-index: 4;
182
+ }
183
+
184
+ div.plans-wrapper div.plans {
185
+ width: 100%;
186
+ float: left;
187
+ margin: 0 0 0 -340px;
188
+ position: relative;
189
+ }
190
+
191
+ div.plans-wrapper div.content-wrapper{
192
+ margin: 0 0 0 340px;
193
+ position: relative;
194
+ }
195
+
196
+ div.plans-wrapper div.plan {
197
+ width: 50%;
198
+ float: left;
199
+ text-align: center;
200
+ position: relative;
201
+ z-index: 2;
202
+ -webkit-transition: all .5s;
203
+ -moz-transition: all .5s;
204
+ transition: all .5s;
205
+ }
206
+
207
+ div.plans-wrapper div.plan h3 {
208
+ color: #fff;
209
+ }
210
+
211
+ div.plans-wrapper div.plan:last-child {
212
+ border-right: 0;
213
+ }
214
+
215
+ div.plans-wrapper div.plan {
216
+ background: #222c37;
217
+ -webkit-transition: all .25s;
218
+ -moz-transition: all .25s;
219
+ transition: all .25s;
220
+ }
221
+
222
+ div.plans-wrapper div.plan2,
223
+ div.plans-wrapper div.plan4 {
224
+ background: #2d3741;
225
+ }
226
+
227
+ div.plans-wrapper div.plan div.w100 {
228
+ position: relative;
229
+ padding: 40px 20px 80px 20px;
230
+ }
231
+
232
+ div.plans-wrapper div.plan-intro img {
233
+ width: 100%;
234
+ height: auto;
235
+ }
236
+
237
+ div.plans-wrapper div.plan p {
238
+ font-size: 1.0625em;
239
+ color: #ccc;
240
+ backface-visibility: hidden;
241
+ }
242
+
243
+ div.plans-wrapper div.plan .price {
244
+ position: relative;
245
+ display: inline-block;
246
+ font-size: 1.875em;
247
+ margin: 0 0 30px 0;
248
+ }
249
+
250
+ div.plans-wrapper div.plan div.action {
251
+ position: absolute;
252
+ bottom: 30px;
253
+ left: 30px;
254
+ right: 30px;
255
+ text-align: center;
256
+ }
257
+
258
+ div.plans-wrapper div.plan div.action .btn {
259
+ width: 100%;
260
+ vertical-align: top;
261
+ }
262
+
263
+ div.compare-wrapper {
264
+ width: 100%;
265
+ margin: 0 auto;
266
+ background: #ececec;
267
+ position: relative;
268
+ }
269
+
270
+ div.compare-wrapper div.benefits {
271
+ width: 340px;
272
+ float: left;
273
+ }
274
+
275
+ div.compare-wrapper div.plans {
276
+ width: 100%;
277
+ float: left;
278
+ margin: 0 0 0 -340px;
279
+ position: relative;
280
+ }
281
+
282
+ div.compare-wrapper div.content-wrapper{
283
+ margin: 0 0 0 340px;
284
+ position: relative;
285
+ }
286
+
287
+ div.compare-wrapper div.plan {
288
+ width: 50%;
289
+ float: left;
290
+ padding: 30px 0 0 0;
291
+ text-align: center;
292
+ background: #f5f8f9;
293
+ }
294
+
295
+ div.compare-wrapper div.plan.even {
296
+ background: #ececec;
297
+ }
298
+
299
+ div.compare-wrapper div.tooltip {
300
+ padding: 20px;
301
+ background: #fff;
302
+ position: absolute;
303
+ border-bottom: #37BF91 5px solid;
304
+ top: 48px;
305
+ left: 10px;
306
+ right: 10px;
307
+ font-weight: 300;
308
+ z-index: 999;
309
+ text-align: left;
310
+ -webkit-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
311
+ -moz-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
312
+ box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
313
+ }
314
+
315
+ div.compare-wrapper div.tooltip:before {
316
+ content: '';
317
+ display: block;
318
+ position: absolute;
319
+ top: -19px;
320
+ right: 21px;
321
+ z-index: 18;
322
+ border: transparent 10px solid;
323
+ border-bottom-color: #fff;
324
+ }
325
+
326
+ div.compare-wrapper div.tooltip p {
327
+ font-size: 1em;
328
+ margin: 0;
329
+ }
330
+
331
+ div.compare-wrapper div.action {
332
+ padding: 30px;
333
+ background: #f0f3f4;
334
+ }
335
+
336
+ div.compare-wrapper div.plan.even div.action {
337
+ background: #e7e7e7;
338
+ }
339
+
340
+ div.compare-wrapper div.action .btn {
341
+ width: 100%;
342
+ vertical-align: top;
343
+ }
344
+
345
+ div.compare-wrapper div.benefits h4 {
346
+ margin: 0;
347
+ padding: 30px;
348
+ background: #f5f8f9;
349
+ position: relative;
350
+ z-index: 3;
351
+ }
352
+
353
+ div.compare-wrapper div.benefits ul {
354
+ list-style: none !important;
355
+ margin: 0 !important;
356
+ padding: 0 !important;
357
+ position: relative;
358
+ z-index: 4;
359
+ }
360
+
361
+ div.compare-wrapper div.benefits ul li {
362
+ height: 50px;
363
+ padding: 0 30px !important;
364
+ margin: 0 !important;
365
+ text-align: left;
366
+ font-size: 0.9375em;
367
+ font-weight: 400;
368
+ position: relative;
369
+ background: #f5f8f9;
370
+ }
371
+
372
+ div.compare-wrapper div.benefits ul li div.text {
373
+ vertical-align: middle;
374
+ display: table-cell;
375
+ height: 50px;
376
+ }
377
+
378
+ div.compare-wrapper div.benefits ul li:nth-child(odd) {
379
+ background: #ececec;
380
+ }
381
+
382
+ div.compare-wrapper div.benefits ul li:before {
383
+ display: none;
384
+ }
385
+
386
+ div.compare-wrapper div.benefits ul li span.dashicons-editor-help {
387
+ line-height: 22px;
388
+ display: block;
389
+ position: absolute;
390
+ top: 5px;
391
+ right: 30px;
392
+ cursor: pointer;
393
+ text-align: center;
394
+ color: #9e9e9e;
395
+ font-size: 32px;
396
+ line-height: 1;
397
+ }
398
+
399
+ div.compare-wrapper div.benefits ul li span.dashicons-editor-help:before {
400
+ font-size: 85%;
401
+ }
402
+
403
+ div.compare-wrapper div.plan h4 {
404
+ color: #222c37;
405
+ margin: 0 0 30px 0;
406
+ }
407
+
408
+ div.compare-wrapper div.plan ul {
409
+ width: 100%;
410
+ margin: 0 !important;
411
+ padding: 0 !important;
412
+ list-style: none !important;
413
+ }
414
+
415
+ div.compare-wrapper div.plan ul li {
416
+ position: relative;
417
+ height: 50px;
418
+ line-height: 20px;
419
+ padding: 15px 20px !important;
420
+ margin: 0 !important;
421
+ text-align: center;
422
+ font-size: 0.9375em;
423
+ }
424
+
425
+ div.compare-wrapper div.plan ul li:nth-child(odd) {
426
+ background: rgba(0, 0, 0, 0.02);
427
+ }
428
+
429
+ div.compare-wrapper div.plan ul li:before {
430
+ display: none;
431
+ }
432
+
433
+ div.compare-wrapper div.plan ul li span.dashicons-editor-help {
434
+ font-size: 24px;
435
+ vertical-align: top;
436
+ line-height: 1;
437
+ color: #9e9e9e;
438
+ margin: 0 0 0 2px;
439
+ cursor: pointer;
440
+ }
441
+
442
+ div.compare-wrapper div.plan ul li span.pay {
443
+ font-weight: 700;
444
+ }
445
+
446
+ div.compare-wrapper div.plan ul li div.tooltip:before {
447
+ right: 50%;
448
+ margin: 0 -10px 0 0;
449
+ }
450
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
451
+ color: #da4f49;
452
+ }
453
+ div.compare-wrapper div.plan1 ul li div.dashicons-yes {
454
+ color: #8ac249;
455
+ }
456
+
457
+ div.compare-wrapper div.plan2 ul li div.dashicons-yes {
458
+ color: #00bcd4;
459
+ }
460
+
461
+ div.compare-wrapper div.plan3 ul li div.dashicons-yes {
462
+ color: #37BF91;
463
+ }
464
+
465
+ div.compare-wrapper div.plan4 ul li div.dashicons-yes {
466
+ color: #009688;
467
+ }
468
+
469
+ div.compare-wrapper .dashicons {
470
+ font-size: 28px;
471
+ line-height: 1;
472
+ width: auto;
473
+ height: auto;
474
+ }
475
+
476
+ div.compare-wrapper div.plan1 ul li div.tooltip {
477
+ border-color: #8ac249;
478
+ }
479
+
480
+ div.compare-wrapper div.plan2 ul li div.tooltip {
481
+ border-color: #00bcd4;
482
+ }
483
+
484
+ div.compare-wrapper div.plan3 ul li div.tooltip {
485
+ border-color: #37BF91;
486
+ }
487
+
488
+ div.compare-wrapper div.plan4 ul li div.tooltip {
489
+ border-color: #009688;
490
+ }
491
+
492
+ div.compare-wrapper div.plan ul li .m {
493
+ display: none;
494
+ }
495
+
496
+
497
+ @media only screen and (min-width:150px) and (max-width:1380px) {
498
+ div#plans {
499
+ margin-bottom: 40px;
500
+ }
501
+ div.plans-wrapper div.plan-intro {
502
+ display: none;
503
+ }
504
+ div.plans-wrapper div.plans {
505
+ margin: 0;
506
+ }
507
+ div.plans-wrapper div.content-wrapper{
508
+ margin: 0;
509
+ }
510
+ div.compare-wrapper {
511
+ background: transparent;
512
+ }
513
+ div.compare-wrapper div.benefits {
514
+ width: 100%;
515
+ margin: 0 0 30px 0;
516
+ }
517
+ div.compare-wrapper div.benefits h4 {
518
+ padding: 0;
519
+ background: transparent;
520
+ font-size: 2em;
521
+ line-height: 1em;
522
+ font-weight: 100;
523
+ color: #222c37;
524
+ }
525
+ div.compare-wrapper div.benefits ul {
526
+ display: none;
527
+ }
528
+ div.compare-wrapper div.plans {
529
+ margin: 0;
530
+ }
531
+ div.compare-wrapper div.content-wrapper{
532
+ margin: 0;
533
+ }
534
+ div.compare-wrapper div.plan h4 {
535
+ color: #fff;
536
+ margin: 0;
537
+ padding: 15px 20px;
538
+ background: #222c37;
539
+ }
540
+ div.compare-wrapper div.plan {
541
+ width: 100%;
542
+ padding: 0;
543
+ margin: 0 0 15px 0;
544
+ text-align: left;
545
+ background: #f5f8f9 !important;
546
+ }
547
+ div.compare-wrapper div.plan ul {
548
+ width: 100%;
549
+ margin: 0;
550
+ display: -webkit-flex;
551
+ display: -ms-flexbox;
552
+ display: flex;
553
+ -webkit-flex-wrap: wrap;
554
+ -ms-flex-wrap: wrap;
555
+ flex-wrap: wrap;
556
+ }
557
+ div.compare-wrapper div.plan ul li {
558
+ width: 50%;
559
+ height: auto;
560
+ float: left;
561
+ line-height: 20px;
562
+ padding: 15px 20px 15px 40px !important;
563
+ text-align: left;
564
+ display: -webkit-flex;
565
+ display: -ms-flexbox;
566
+ display: flex;
567
+ }
568
+ div.compare-wrapper div.plan ul li:nth-child(odd) {
569
+ background: rgba(0, 0, 0, 0.0);
570
+ }
571
+ div.compare-wrapper div.plan ul li:nth-child(2),
572
+ div.compare-wrapper div.plan ul li:nth-child(3),
573
+ div.compare-wrapper div.plan ul li:nth-child(6),
574
+ div.compare-wrapper div.plan ul li:nth-child(7),
575
+ div.compare-wrapper div.plan ul li:nth-child(10),
576
+ div.compare-wrapper div.plan ul li:nth-child(11),
577
+ div.compare-wrapper div.plan ul li:nth-child(14),
578
+ div.compare-wrapper div.plan ul li:nth-child(15),
579
+ div.compare-wrapper div.plan ul li:nth-child(18),
580
+ div.compare-wrapper div.plan ul li:nth-child(19),
581
+ div.compare-wrapper div.plan ul li:nth-child(22),
582
+ div.compare-wrapper div.plan ul li:nth-child(23) {
583
+ background: rgba(0, 0, 0, 0.02);
584
+ }
585
+ div.compare-wrapper div.plan ul li span.message {
586
+ display: none;
587
+ }
588
+ div.compare-wrapper div.plan ul li .m {
589
+ display: inline-block;
590
+ }
591
+ div.compare-wrapper div.plan ul li div.dashicons-yes,
592
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
593
+ position: absolute;
594
+ top: 13px;
595
+ left: 8px;
596
+ }
597
+ div.compare-wrapper div.plan ul li div.dashicons-no-alt {
598
+ top: 16px;
599
+ }
600
+ div.compare-wrapper div.plan ul li span.m-message {
601
+ display: inline-block;
602
+ }
603
+ div.compare-wrapper div.action {
604
+ padding: 15px;
605
+ background: #e7e7e7;
606
+ }
607
+ div.compare-wrapper div.plan.even div.action {
608
+ background: #e7e7e7;
609
+ }
610
+ div.compare-wrapper div.action .btn {
611
+ width: auto;
612
+ }
613
+ }
614
+
615
+ @media only screen and (min-width:150px) and (max-width:1023px) {
616
+
617
+ div#plans {
618
+ padding-left: 30px;
619
+ padding-right: 30px;
620
+ }
621
+ div.plans-wrapper div.plan {
622
+ width: 50%;
623
+ }
624
+ div#compare {
625
+ padding-left: 30px;
626
+ padding-right: 30px;
627
+ }
628
+ }
629
+
630
+ @media only screen and (min-width:150px) and (max-width:767px) {
631
+ div#plans {
632
+ padding-left: 20px;
633
+ padding-right: 20px;
634
+ }
635
+ div.plans-wrapper {
636
+ background: #fff;
637
+ -webkit-box-shadow: none;
638
+ -moz-box-shadow: none;
639
+ box-shadow: none;
640
+ }
641
+ div.plans-wrapper div.plan {
642
+ width: 100%;
643
+ margin: 0 0 15px 0;
644
+ -webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
645
+ -moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
646
+ box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
647
+ }
648
+ div.plans-wrapper div.plan div.icon {
649
+ display: none;
650
+ }
651
+ div.plans-wrapper div.plan p.text {
652
+ height: auto !important;
653
+ }
654
+ div#compare {
655
+ padding-left: 20px;
656
+ padding-right: 20px;
657
+ }
658
+ div.compare-wrapper div.plan ul li {
659
+ width: 100%;
660
+ }
661
+ div.compare-wrapper div.plan ul li:nth-child(2),
662
+ div.compare-wrapper div.plan ul li:nth-child(3),
663
+ div.compare-wrapper div.plan ul li:nth-child(6),
664
+ div.compare-wrapper div.plan ul li:nth-child(7),
665
+ div.compare-wrapper div.plan ul li:nth-child(10),
666
+ div.compare-wrapper div.plan ul li:nth-child(11),
667
+ div.compare-wrapper div.plan ul li:nth-child(14),
668
+ div.compare-wrapper div.plan ul li:nth-child(15),
669
+ div.compare-wrapper div.plan ul li:nth-child(18),
670
+ div.compare-wrapper div.plan ul li:nth-child(19),
671
+ div.compare-wrapper div.plan ul li:nth-child(22),
672
+ div.compare-wrapper div.plan ul li:nth-child(23) {
673
+ background: rgba(0, 0, 0, 0.0);
674
+ }
675
+ div.compare-wrapper div.plan ul li:nth-child(even) {
676
+ background: rgba(0, 0, 0, 0.02) !important;
677
+ }
678
+ div.faq-wrapper div.g12 {
679
+ padding-bottom: 15px !important;
680
+ }
681
+ div.faq-wrapper div.g4 {
682
+ width: 100%;
683
+ padding-bottom: 0;
684
+ padding-top: 0;
685
+ }
686
+ }
687
+
688
+ @media only screen and (min-width:150px) and (max-width:479px) {
689
+ div#plans {
690
+ padding-left: 15px;
691
+ padding-right: 15px;
692
+ }
693
+ div#compare {
694
+ padding-left: 15px;
695
+ padding-right: 15px;
696
+ }
697
+ }
698
+
699
+ /* ------- END: Pricing Plan --------- */
admin/assets/js/premium-upgrade.js ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+
3
+ $(document).ready(function() {
4
+
5
+ /* ==== COMPARE PLANS TOOLTIP =======*/
6
+
7
+ $('.compare-wrapper ul li span.dashicons-editor-help').on('click', function(){
8
+
9
+ var $tooltip = $(this).closest('li').find('.tooltip');
10
+
11
+ if($tooltip.hasClass('hide')){
12
+ $('.compare-wrapper .tooltip').addClass('hide');
13
+ $tooltip.removeClass('hide');
14
+ }
15
+ else {
16
+ $tooltip.addClass('hide');
17
+ }
18
+
19
+ });
20
+
21
+ $('html').bind('click', function(e) {
22
+
23
+ if($(e.target).closest('.compare-wrapper ul li span.dashicons-editor-help').length == 0 && $(e.target).closest('.tooltip').length == 0){
24
+ $('.compare-wrapper .tooltip').addClass('hide');
25
+ }
26
+
27
+ });
28
+
29
+ });
30
+
31
+ })(jQuery);
admin/assets/js/premium-upgrade.min.js ADDED
@@ -0,0 +1 @@
 
1
+ !function(e){e(document).ready(function(){e(".compare-wrapper ul li span.dashicons-editor-help").on("click",function(){var l=e(this).closest("li").find(".tooltip");l.hasClass("hide")?(e(".compare-wrapper .tooltip").addClass("hide"),l.removeClass("hide")):l.addClass("hide")}),e("html").bind("click",function(l){0==e(l.target).closest(".compare-wrapper ul li span.dashicons-editor-help").length&&0==e(l.target).closest(".tooltip").length&&e(".compare-wrapper .tooltip").addClass("hide")})})}(jQuery);
admin/views/documentation.php CHANGED
@@ -1249,6 +1249,13 @@ else {
1249
  <!-- Updates panel -->
1250
  <div id="updates-panel" class="panel-left">
1251
 
 
 
 
 
 
 
 
1252
  <h4>1.4.1</h4>
1253
 
1254
  <ul>
1249
  <!-- Updates panel -->
1250
  <div id="updates-panel" class="panel-left">
1251
 
1252
+ <h4>1.4.2</h4>
1253
+
1254
+ <ul>
1255
+ <li>Added - Compatibility with WordPress 4.6.</li>
1256
+ <li>Added - Additional information regarding PRO version.</li>
1257
+ </ul>
1258
+
1259
  <h4>1.4.1</h4>
1260
 
1261
  <ul>
admin/views/premium-upgrade.php CHANGED
@@ -15,6 +15,392 @@ $plugin = get_plugin_data(LSOW_PLUGIN_FILE);
15
 
16
  <h2 class="notices"></h2>
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  <img style="max-width:100%;padding-top: 50px;" class="dashboard-image" src="http://portfoliotheme.org/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/why-premium.jpg" alt="Why Choose Premium">
19
 
20
  <div class="button-wrap">
15
 
16
  <h2 class="notices"></h2>
17
 
18
+
19
+ <div class="pricing-content clear">
20
+ <div id="plans" class="content-wrapper clear">
21
+ <div class="plans-wrapper clear">
22
+ <div class="plan-intro">
23
+ <div class="w100 clear"><img src="http://portfoliotheme.org/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/logo-light-1.png" class="mb30">
24
+ <p>A huge collection of Premium widgets for SiteOrigin Page Builder. Building a beautiful website is as easy as drag and drop.</p></div>
25
+ </div>
26
+ <div class="plans">
27
+ <div class="content-wrapper flex-wrap">
28
+ <div class="plan plan1 even flex-col">
29
+ <div class="w100 clear"><h3>Lite</h3>
30
+ <p class="mb20 text">All the great features and widgets you need to get started on creating a beautiful website.</p>
31
+ <h4 class="b c-wh price">FREE</h4>
32
+ <div class="action clear"><a href="https://wordpress.org/plugins/livemesh-siteorigin-widgets/" class="btn bg-gr center" title="Livemesh SiteOrigin Widgets Download">Download now</a></div>
33
+ </div>
34
+ </div>
35
+ <div class="plan plan2 flex-col">
36
+ <div class="w100 clear"><h3>Premium</h3>
37
+ <p class="mb20 text">More features and additional widgets to build a professional website without switching your WP theme.</p>
38
+ <h4 class="b price c-wh">$39</h4>
39
+ <div class="action clear"><a href="https://gumroad.com/l/kGTBN" class="btn center bg-cy">Purchase Now</a></div>
40
+ </div>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ <div class="pricing-content clear">
48
+ <div id="compare" class="content-wrapper pt0 clear">
49
+ <div class="compare-wrapper clear">
50
+ <div class="benefits"><h4>Compare features</h4>
51
+ <ul>
52
+ <li><span class="help dashicons dashicons-editor-help"></span>
53
+ <div class="text">Premium quality Widgets</div>
54
+ <div class="tooltip hide">
55
+ <div><p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</div>
56
+ </div>
57
+ </li>
58
+ <li><span class="help dashicons dashicons-editor-help"></span>
59
+ <div class="text">Page Builder Elements</div>
60
+ <div class="tooltip hide">
61
+ <div><p>Large collection of plugin widgets with their multiple styles are page builder elements that provide ALL the tools you need to come up with a dream website of yours by just drag, drop and configure. &nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/">Live Demo</a></p></div>
62
+ </div>
63
+ </li>
64
+ <li><span class="help dashicons dashicons-editor-help"></span>
65
+ <div class="text">Dark Version</div>
66
+ <div class="tooltip hide">
67
+ <div><p>The plugin comes with dark versions for the bundled widgets.</p></div>
68
+ </div>
69
+ </li>
70
+ <li><span class="help dashicons dashicons-editor-help"></span>
71
+ <div class="text">Posts/Portfolio Grid</div>
72
+ <div class="tooltip hide">
73
+ <div><p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
74
+ </div>
75
+ </li>
76
+ <li><span class="help dashicons dashicons-editor-help"></span>
77
+ <div class="text">Demo Site Replication</div>
78
+ <div class="tooltip hide">
79
+ <div><p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p></div>
80
+ </div>
81
+ </li>
82
+ <li><span class="help dashicons dashicons-editor-help"></span>
83
+ <div class="text">Grids with AJAX Pagination</div>
84
+ <div class="tooltip hide">
85
+ <div><p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
86
+ </div>
87
+ </li>
88
+ <li><span class="help dashicons dashicons-editor-help"></span>
89
+ <div class="text">Advanced Grid with Lazy Load</div>
90
+ <div class="tooltip hide">
91
+ <div><p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
92
+ </div>
93
+ </li>
94
+ <li><span class="help dashicons dashicons-editor-help"></span>
95
+ <div class="text">Lightbox Support</div>
96
+ <div class="tooltip hide">
97
+ <div><p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
98
+ </div>
99
+ </div>
100
+ </li>
101
+ <li><span class="help dashicons dashicons-editor-help"></span>
102
+ <div class="text">Custom Fonts</div>
103
+ <div class="tooltip hide">
104
+ <div><p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
105
+ </div>
106
+ </div>
107
+ </li>
108
+ <li><span class="help dashicons dashicons-editor-help"></span>
109
+ <div class="text">Advanced Image Slider</div>
110
+ <div class="tooltip hide">
111
+ <div><p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/livemesh-sliders/">Live Demo</a></p>
112
+ </div>
113
+ </div>
114
+ </li>
115
+ <li><span class="help dashicons dashicons-editor-help"></span>
116
+ <div class="text">Image Gallery</div>
117
+ <div class="tooltip hide">
118
+ <div><p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/image-gallery/">Live Demo</a></p></div>
119
+ </div>
120
+ </li>
121
+ <li><span class="help dashicons dashicons-editor-help"></span>
122
+ <div class="text">YouTube/Vimeo Video Gallery</div>
123
+ <div class="tooltip hide">
124
+ <div><p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/video-gallery/">Live Demo</a></p></div>
125
+ </div>
126
+ </li>
127
+ <li><span class="help dashicons dashicons-editor-help"></span>
128
+ <div class="text">Advanced Image Carousel</div>
129
+ <div class="tooltip hide">
130
+ <div><p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/gallery-carousel/">Live Demo</a></p></div>
131
+ </div>
132
+ </li>
133
+ <li><span class="help dashicons dashicons-editor-help"></span>
134
+ <div class="text">YouTube/Vimeo Video Carousel</div>
135
+ <div class="tooltip hide">
136
+ <div><p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.&nbsp;<a target="_blank" href="http://portfoliotheme.org/siteorigin-widgets/gallery-carousel/">Live Demo</a></p></div>
137
+ </div>
138
+ </li>
139
+ <li><span class="help dashicons dashicons-editor-help"></span>
140
+ <div class="text">Dedicated Support Forum</div>
141
+ <div class="tooltip hide">
142
+ <div><p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p></div>
143
+ </div>
144
+ </li>
145
+ <li><span class="help dashicons dashicons-editor-help"></span>
146
+ <div class="text">Priority Support</div>
147
+ <div class="tooltip hide">
148
+ <div><p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p></div>
149
+ </div>
150
+ </li>
151
+ </ul>
152
+ </div>
153
+ <div class="plans">
154
+ <div class="content-wrapper">
155
+ <div class="plan plan1 even"><h4>Lite</h4>
156
+ <ul>
157
+ <li>
158
+ <div class="dashicons dashicons-yes"></div>
159
+ <span class="m-feature m">Premium quality Widgets</span>
160
+ <div class="tooltip hide">
161
+ <p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</p>
162
+ </div>
163
+ </li>
164
+ <li>
165
+ <div class="dashicons dashicons-yes m"></div>
166
+ <span class="m-feature m">Page Builder Elements</span>
167
+ <div class="m-tooltip hide"><p>Essential widgets include Services, Team, Testimonials, Clients, Hero Headers, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p></div>
168
+ <span class="message">Essentials</span> <span class="help dashicons dashicons-editor-help"></span>
169
+ <div class="tooltip hide">
170
+ <p>Essential widgets include Services, Team, Testimonials, Clients, Hero Headers, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p>
171
+ </div>
172
+ </li>
173
+ <li>
174
+ <div class="dashicons dashicons-yes"></div>
175
+ <span class="m-feature m">Dark Version</span>
176
+ <div class="tooltip hide">
177
+ <p>Both Lite and Premium versions include dark versions for the bundled widgets.</p>
178
+ </div>
179
+ </li>
180
+ <li>
181
+ <div class="dashicons dashicons-yes m"></div>
182
+ <span class="m-feature m">Posts/Portfolio Grid</span>
183
+ <div class="m-tooltip hide"><p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p></div>
184
+ <span class="message">Basic</span> <span class="help dashicons dashicons-editor-help"></span>
185
+ <div class="tooltip hide">
186
+ <p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p>
187
+ </div>
188
+ </li>
189
+ <li>
190
+ <div class="dashicons dashicons-no-alt"></div>
191
+ <span class="m-feature m">Demo Site Replication</span>
192
+ <div class="tooltip hide">
193
+ <p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
194
+ </div>
195
+ </li>
196
+ <li>
197
+ <div class="dashicons dashicons-no-alt"></div>
198
+ <span class="m-feature m">Grids with AJAX Pagination</span>
199
+ <div class="tooltip hide">
200
+ <p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
201
+ </div>
202
+ </li>
203
+ <li>
204
+ <div class="dashicons dashicons-no-alt"></div>
205
+ <span class="m-feature m">Advanced Grid with Lazy Load</span>
206
+ <div class="tooltip hide">
207
+ <p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
208
+ </div>
209
+ </li>
210
+ <li>
211
+ <div class="dashicons dashicons-no-alt"></div>
212
+ <span class="m-feature m">Lightbox Support</span>
213
+ <div class="tooltip hide">
214
+ <p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
215
+ </div>
216
+ </li>
217
+ <li>
218
+ <div class="dashicons dashicons-no-alt"></div>
219
+ <span class="m-feature m">Custom Fonts</span>
220
+ <div class="tooltip hide">
221
+ <p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
222
+ </div>
223
+ </li>
224
+ <li>
225
+ <div class="dashicons dashicons-no-alt"></div>
226
+ <span class="m-feature m">Advanced Image Slider</span>
227
+ <div class="tooltip hide">
228
+ <p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
229
+ </div>
230
+ </li>
231
+ <li>
232
+ <div class="dashicons dashicons-no-alt"></div>
233
+ <span class="m-feature m">Image Gallery</span>
234
+ <div class="tooltip hide">
235
+ <p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
236
+ </div>
237
+ </li>
238
+ <li>
239
+ <div class="dashicons dashicons-no-alt"></div>
240
+ <span class="m-feature m">YouTube/Vimeo Video Gallery</span>
241
+ <div class="tooltip hide">
242
+ <p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
243
+ </div>
244
+ </li>
245
+ <li>
246
+ <div class="dashicons dashicons-no-alt"></div>
247
+ <span class="m-feature m">Advanced Image Carousel</span>
248
+ <div class="tooltip hide">
249
+ <p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
250
+ </div>
251
+ </li>
252
+ <li>
253
+ <div class="dashicons dashicons-no-alt"></div>
254
+ <span class="m-feature m">YouTube/Vimeo Video Carousel</span>
255
+ <div class="tooltip hide">
256
+ <p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
257
+ </div>
258
+ </li>
259
+ <li>
260
+ <div class="dashicons dashicons-no-alt"></div>
261
+ <span class="m-feature m">Dedicated Support Forum</span>
262
+ <div class="tooltip hide">
263
+ <p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
264
+ </div>
265
+ </li>
266
+ <li>
267
+ <div class="dashicons dashicons-no-alt"></div>
268
+ <span class="m-feature m">Priority Support</span>
269
+ <div class="tooltip hide">
270
+ <p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
271
+ </div>
272
+ </li>
273
+ </ul>
274
+ <div class="action clear"><a href="https://wordpress.org/plugins/livemesh-siteorigin-widgets/" class="btn bg-gr center" title="Livemesh SiteOrigin Widgets Download">Download now</a></div>
275
+ </div>
276
+ <div class="plan plan2"><h4>PRO</h4>
277
+ <ul>
278
+ <li>
279
+ <div class="dashicons dashicons-yes"></div>
280
+ <span class="m-feature m">Premium quality Widgets</span>
281
+ <div class="tooltip hide">
282
+ <p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</p>
283
+ </div>
284
+ </li>
285
+ <li>
286
+ <div class="dashicons dashicons-yes m"></div>
287
+ <span class="m-feature m">Page Builder Elements</span>
288
+ <div class="m-tooltip hide"><p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced widgets, functions and customizations detailed below.</p></div>
289
+ <span class="message">Professional</span> <span class="help dashicons dashicons-editor-help"></span>
290
+ <div class="tooltip hide">
291
+ <p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced widgets, functions and customizations detailed below.</p>
292
+ </div>
293
+ </li>
294
+ <li>
295
+ <div class="dashicons dashicons-yes"></div>
296
+ <span class="m-feature m">Dark Version</span>
297
+ <div class="tooltip hide">
298
+ <p>Both Lite and Premium versions include dark versions for the bundled widgets.</p>
299
+ </div>
300
+ </li>
301
+ <li>
302
+ <div class="dashicons dashicons-yes m"></div>
303
+ <span class="m-feature m">Posts/Portfolio Grid</span>
304
+ <div class="m-tooltip hide"><p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc.</p></div>
305
+ <span class="message">Advanced</span> <span class="help dashicons dashicons-editor-help"></span>
306
+ <div class="tooltip hide">
307
+ <p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc.</p>
308
+ </div>
309
+ </li>
310
+ <li>
311
+ <div class="dashicons dashicons-yes"></div>
312
+ <span class="m-feature m">Demo Site Replication</span>
313
+ <div class="tooltip hide">
314
+ <p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
315
+ </div>
316
+ </li>
317
+ <li>
318
+ <div class="dashicons dashicons-yes"></div>
319
+ <span class="m-feature m">Grids with AJAX Pagination</span>
320
+ <div class="tooltip hide">
321
+ <p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
322
+ </div>
323
+ </li>
324
+ <li>
325
+ <div class="dashicons dashicons-yes"></div>
326
+ <span class="m-feature m">Advanced Grid with Lazy Load</span>
327
+ <div class="tooltip hide">
328
+ <p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
329
+ </div>
330
+ </li>
331
+ <li>
332
+ <div class="dashicons dashicons-yes"></div>
333
+ <span class="m-feature m">Lightbox Support</span>
334
+ <div class="tooltip hide">
335
+ <p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
336
+ </div>
337
+ </li>
338
+ <li>
339
+ <div class="dashicons dashicons-yes"></div>
340
+ <span class="m-feature m">Custom Fonts</span>
341
+ <div class="tooltip hide">
342
+ <p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
343
+ </div>
344
+ </li>
345
+ <li>
346
+ <div class="dashicons dashicons-yes"></div>
347
+ <span class="m-feature m">Advanced Image Slider</span>
348
+ <div class="tooltip hide">
349
+ <p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
350
+ </div>
351
+ </li>
352
+ <li>
353
+ <div class="dashicons dashicons-yes"></div>
354
+ <span class="m-feature m">Image Gallery</span>
355
+ <div class="tooltip hide">
356
+ <p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
357
+ </div>
358
+ </li>
359
+ <li>
360
+ <div class="dashicons dashicons-yes"></div>
361
+ <span class="m-feature m">YouTube/Vimeo Video Gallery</span>
362
+ <div class="tooltip hide">
363
+ <p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
364
+ </div>
365
+ </li>
366
+ <li>
367
+ <div class="dashicons dashicons-yes"></div>
368
+ <span class="m-feature m">Advanced Image Carousel</span>
369
+ <div class="tooltip hide">
370
+ <p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
371
+ </div>
372
+ </li>
373
+ <li>
374
+ <div class="dashicons dashicons-yes"></div>
375
+ <span class="m-feature m">YouTube/Vimeo Video Carousel</span>
376
+ <div class="tooltip hide">
377
+ <p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
378
+ </div>
379
+ </li>
380
+ <li>
381
+ <div class="dashicons dashicons-yes"></div>
382
+ <span class="m-feature m">Dedicated Support Forum</span>
383
+ <div class="tooltip hide">
384
+ <p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
385
+ </div>
386
+ </li>
387
+ <li>
388
+ <div class="dashicons dashicons-yes"></div>
389
+ <span class="m-feature m">Priority Support</span>
390
+ <div class="tooltip hide">
391
+ <p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
392
+ </div>
393
+ </li>
394
+ </ul>
395
+ <div class="action clear"><a href="https://gumroad.com/l/kGTBN" class="btn center bg-cy">Purchase Now</a></div>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </div>
400
+ </div>
401
+
402
+ </div>
403
+
404
  <img style="max-width:100%;padding-top: 50px;" class="dashboard-image" src="http://portfoliotheme.org/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/why-premium.jpg" alt="Why Choose Premium">
405
 
406
  <div class="button-wrap">
livemesh-so-widgets.php CHANGED
@@ -7,7 +7,7 @@
7
  * Author URI: http://portfoliotheme.org/
8
  * License: GPL3
9
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
10
- * Version: 1.4.1
11
  * Text Domain: livemesh-so-widgets
12
  * Domain Path: languages
13
  *
@@ -92,7 +92,7 @@ if (!class_exists('Livemesh_SiteOrigin_Widgets')) :
92
 
93
  // Plugin version
94
  if (!defined('LSOW_VERSION')) {
95
- define('LSOW_VERSION', '1.4.1');
96
  }
97
 
98
  // Plugin Folder Path
7
  * Author URI: http://portfoliotheme.org/
8
  * License: GPL3
9
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
10
+ * Version: 1.4.2
11
  * Text Domain: livemesh-so-widgets
12
  * Domain Path: languages
13
  *
92
 
93
  // Plugin version
94
  if (!defined('LSOW_VERSION')) {
95
+ define('LSOW_VERSION', '1.4.2');
96
  }
97
 
98
  // Plugin Folder Path
readme.txt CHANGED
@@ -4,8 +4,8 @@ Plugin URI: http://portfoliotheme.org/siteorigin-widgets
4
  Contributors: livemesh
5
  Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin addons, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
6
  Requires at least: 4.1
7
- Tested up to: 4.5.3
8
- Stable Tag: 1.4.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -13,7 +13,9 @@ A collection of premium quality widgets for use in any widgetized area or in Sit
13
 
14
  == Description ==
15
 
16
- Livemesh SiteOrigin widgets features premium, easy to use yet highly functional widgets that can be used in a page builder like SiteOrigin or in any widgetized area of your site.
 
 
17
 
18
  <a href="https://wordpress.org/plugins/so-widgets-bundle/" alt="SiteOrigin Widgets Bundle" target="_blank">SiteOrigin Widgets Bundle</a> plugin must be activated to use this plugin. After you activate the required plugins, enable our widgets by going to Plugins > SiteOrigin Widgets in your WordPress admin.
19
 
@@ -110,6 +112,10 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
110
 
111
  == Changelog ==
112
 
 
 
 
 
113
  = 1.4.1 =
114
  * Fixed - Display of titles for widgets
115
  * Fixed - Check for page id when displaying posts/pages in a grid to avoid infinite loop
4
  Contributors: livemesh
5
  Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin addons, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
6
  Requires at least: 4.1
7
+ Tested up to: 4.6
8
+ Stable Tag: 1.4.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
13
 
14
  == Description ==
15
 
16
+ Livemesh SiteOrigin widgets features huge collection of premium, easy to use yet highly functional widgets that can be used in a page builder like <a href="https://wordpress.org/plugins/siteorigin-panels/" rel="nofollow">SiteOrigin</a> or in any widgetized area of your site. This is really a premium plugin that you can get for free.
17
+
18
+ This plugin comes with widgets for just about everything you need to build a professional website without switching to a premium theme - hero headers, services, team profiles, statistics, testimonials, clients list, portfolio/posts grid, carousels, varieties of tabs, accordions, buttons, icon lists, pricing plan and much more in the <a href="http://portfoliotheme.org/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Premium Version">PRO version</a>. All the widgets that help turn your free theme into a premium one with just a few clicks. Every premium page builder element you need is available for easy drag and drop into your page by just activating this plugin.
19
 
20
  <a href="https://wordpress.org/plugins/so-widgets-bundle/" alt="SiteOrigin Widgets Bundle" target="_blank">SiteOrigin Widgets Bundle</a> plugin must be activated to use this plugin. After you activate the required plugins, enable our widgets by going to Plugins > SiteOrigin Widgets in your WordPress admin.
21
 
112
 
113
  == Changelog ==
114
 
115
+ = 1.4.2 =
116
+ * Added - Compatibility with WordPress 4.6.
117
+ * Added - Comparison table of Lite vs PRO version.
118
+
119
  = 1.4.1 =
120
  * Fixed - Display of titles for widgets
121
  * Fixed - Check for page id when displaying posts/pages in a grid to avoid infinite loop