Version Description
- Fix: Google Plus icon, buttons, social count removed.
- Fix: Social icons advanced settings not applied properly.
- Fix: Refine UI for social icon settings
- Fix: Refine UI for location rules settings
- New: Added post id selection sub category for post type location rule.
- New: Added ID to class names for share buttons and template rows.
Download this release
Release Info
Developer | vaakash |
Plugin | WP Socializer |
Version | 4.1.5 |
Comparing to | |
See all releases |
Code changes from version 4.1.4 to 4.1.5
- admin/css/style.css +22 -8
- admin/images/banners/floating-sharebar.svg +9 -19
- admin/images/banners/follow-bar.svg +9 -19
- admin/images/banners/mobile-sharebar.svg +9 -19
- admin/images/banners/share-buttons.svg +32 -31
- admin/images/banners/text-sharebar.svg +11 -21
- admin/images/banners/widgets.svg +70 -62
- admin/js/script.js +2 -2
- admin/mobile_sharebar.php +3 -0
- core/lists.php +0 -10
- core/location_rules.php +2 -2
- core/share_counter.php +1 -46
- core/templates.php +5 -3
- readme.txt +12 -6
- services/google_plus.php +0 -255
- services/social_icons.php +60 -29
- wpsr.php +2 -3
admin/css/style.css
CHANGED
@@ -57,10 +57,12 @@ h1.wpsr_title a i{
|
|
57 |
margin: 0;
|
58 |
}
|
59 |
|
60 |
-
|
|
|
|
|
|
|
61 |
.page_card {
|
62 |
-
|
63 |
-
float: left;
|
64 |
display: block;
|
65 |
height: 300px;
|
66 |
background-color: #fff;
|
@@ -654,7 +656,7 @@ h1.wpsr_title a i{
|
|
654 |
border-top:1px solid #f1f1f1;
|
655 |
position: relative;
|
656 |
}
|
657 |
-
.loc_group_wrap:before
|
658 |
content: counter( group-counter );
|
659 |
counter-increment: group-counter;
|
660 |
display: inline-block;
|
@@ -663,12 +665,23 @@ h1.wpsr_title a i{
|
|
663 |
background: #fff;
|
664 |
padding: 0 10px;
|
665 |
left: -5px;
|
666 |
-
border: 1px solid #
|
667 |
border-radius: 50%;
|
668 |
height: 28px;
|
669 |
text-align: center;
|
670 |
line-height: 28px;
|
671 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
.loc_group_wrap:last-child{
|
673 |
margin: 0;
|
674 |
}
|
@@ -880,6 +893,10 @@ h1.wpsr_title a i{
|
|
880 |
border: 1px dashed #ccc;
|
881 |
padding: 15px 15px 5px 15px;
|
882 |
}
|
|
|
|
|
|
|
|
|
883 |
.mini_section_select{
|
884 |
width: 100%;
|
885 |
text-align: left;
|
@@ -1473,9 +1490,6 @@ select[name="ft_status"]{
|
|
1473 |
.cfacebook{
|
1474 |
color: #29487d;
|
1475 |
}
|
1476 |
-
.cgoogleplus{
|
1477 |
-
color: #db483b;
|
1478 |
-
}
|
1479 |
.cred{
|
1480 |
color: red;
|
1481 |
}
|
57 |
margin: 0;
|
58 |
}
|
59 |
|
60 |
+
.admin_pages_list{
|
61 |
+
display: flex;
|
62 |
+
flex-wrap: wrap;
|
63 |
+
}
|
64 |
.page_card {
|
65 |
+
flex-basis: 22%;
|
|
|
66 |
display: block;
|
67 |
height: 300px;
|
68 |
background-color: #fff;
|
656 |
border-top:1px solid #f1f1f1;
|
657 |
position: relative;
|
658 |
}
|
659 |
+
.loc_group_wrap:before{
|
660 |
content: counter( group-counter );
|
661 |
counter-increment: group-counter;
|
662 |
display: inline-block;
|
665 |
background: #fff;
|
666 |
padding: 0 10px;
|
667 |
left: -5px;
|
668 |
+
border: 1px solid #dfdfdf;
|
669 |
border-radius: 50%;
|
670 |
height: 28px;
|
671 |
text-align: center;
|
672 |
line-height: 28px;
|
673 |
}
|
674 |
+
.loc_group_wrap:after{
|
675 |
+
content: 'or';
|
676 |
+
display: inline-block;
|
677 |
+
background: #fff;
|
678 |
+
padding: 0 10px;
|
679 |
+
border-radius: 50%;
|
680 |
+
height: 30px;
|
681 |
+
text-align: center;
|
682 |
+
line-height: 30px;
|
683 |
+
font-weight: bold;
|
684 |
+
}
|
685 |
.loc_group_wrap:last-child{
|
686 |
margin: 0;
|
687 |
}
|
893 |
border: 1px dashed #ccc;
|
894 |
padding: 15px 15px 5px 15px;
|
895 |
}
|
896 |
+
.mini_btn_list.list_selected span{
|
897 |
+
border-right: 1px solid rgba(255, 255, 255, 0.29);
|
898 |
+
padding-right: 10px;
|
899 |
+
}
|
900 |
.mini_section_select{
|
901 |
width: 100%;
|
902 |
text-align: left;
|
1490 |
.cfacebook{
|
1491 |
color: #29487d;
|
1492 |
}
|
|
|
|
|
|
|
1493 |
.cred{
|
1494 |
color: red;
|
1495 |
}
|
admin/images/banners/floating-sharebar.svg
CHANGED
@@ -27,8 +27,8 @@
|
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="3.959798"
|
30 |
-
inkscape:cx="
|
31 |
-
inkscape:cy="
|
32 |
inkscape:document-units="px"
|
33 |
inkscape:current-layer="layer2"
|
34 |
showgrid="false"
|
@@ -46,7 +46,7 @@
|
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
-
<dc:title
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
@@ -151,7 +151,7 @@
|
|
151 |
transform="scale(0.26458333)" />
|
152 |
<path
|
153 |
inkscape:connector-curvature="0"
|
154 |
-
style="display:inline;opacity:1;fill:#
|
155 |
d="m 22.818044,42.367876 v 1.887739 0.33383 3.214791 c -0.0097,0.07138 -0.01654,0.143949 -0.01654,0.218075 v 0.61805 c 0,0.883777 0.711474,1.595253 1.595251,1.595253 h 1.135848 c 0.111964,0 0.221258,-0.01185 0.326595,-0.03359 h 2.413289 0.626319 1.887223 v -1.887739 -0.45062 -3.608049 c 0,-1.045723 -0.841497,-1.887739 -1.887223,-1.887739 H 25.21531 24.70578 Z"
|
156 |
id="rect5195-7" />
|
157 |
<path
|
@@ -159,20 +159,10 @@
|
|
159 |
d="m 28.835241,35.769157 c -0.146882,0.06531 -0.304957,0.109328 -0.470818,0.129037 0.169349,-0.101379 0.299198,-0.261971 0.360433,-0.453539 -0.158399,0.094 -0.333749,0.162209 -0.520535,0.199031 -0.149478,-0.15929 -0.362542,-0.25889 -0.598315,-0.25889 -0.45265,0 -0.819652,0.367001 -0.819652,0.819732 0,0.06416 0.0072,0.126688 0.02125,0.186793 -0.681285,-0.03427 -1.285359,-0.360516 -1.68967,-0.856477 -0.07056,0.121004 -0.110952,0.261809 -0.110952,0.412172 0,0.284361 0.144692,0.535303 0.36465,0.682262 -0.134311,-0.0046 -0.260754,-0.04121 -0.371302,-0.102596 -8e-5,0.0031 -8e-5,0.0069 -8e-5,0.0104 0,0.397093 0.282572,0.728326 0.657604,0.803758 -0.06878,0.01872 -0.141206,0.02873 -0.215984,0.02873 -0.05288,0 -0.104221,-0.0054 -0.154263,-0.01479 0.104382,0.325642 0.407068,0.562713 0.765716,0.569291 -0.280543,0.219873 -0.63392,0.350935 -1.018036,0.350935 -0.0661,0 -0.131391,-0.0039 -0.195545,-0.01155 0.362866,0.232697 0.793698,0.368303 1.256568,0.368303 1.507832,0 2.332269,-1.249025 2.332269,-2.332269 0,-0.03551 -7.13e-4,-0.07093 -0.0023,-0.10617 0.160101,-0.115335 0.299116,-0.259776 0.408934,-0.42418 z"
|
160 |
inkscape:connector-curvature="0"
|
161 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.08110549" />
|
162 |
-
<
|
163 |
-
id="
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
id="path5306"
|
168 |
-
d="m 19.6671,25.7867 c -0.0075,1.7935 0,3.5869 0.0076,5.3803 3.0067,0.098 6.0208,0.0527 9.0275,0.098 -1.3262,6.6689 -10.3989,8.8315 -15.199,4.4761 C 8.5674,31.9206 8.801,23.5412 13.9327,19.992 c 3.5869,-2.8635 8.6884,-2.1552 12.2752,0.324 1.4092,-1.3036 2.7278,-2.6977 4.0013,-4.1445 -2.984,-2.3812 -6.6462,-4.0767 -10.5421,-3.8958 -8.1307,-0.2713 -15.6059,6.8497 -15.7415,14.9805 -0.52,6.6462 3.8506,13.1644 10.0222,15.5155 6.1489,2.3661 14.031,0.7535 17.957,-4.77 2.5922,-3.4889 3.1498,-7.98 2.8484,-12.1999 -5.0338,-0.0377 -10.0599,-0.0302 -15.0861,-0.0151 z"
|
169 |
-
inkscape:connector-curvature="0"
|
170 |
-
style="fill:#ffffff;fill-opacity:1" />
|
171 |
-
<path
|
172 |
-
id="path5308"
|
173 |
-
d="m 49.0704,25.7641 c -0.0151,-1.4996 -0.0226,-3.0067 -0.0301,-4.5062 -1.4996,0 -2.9916,0 -4.4836,0 -0.0151,1.4996 -0.0301,2.9991 -0.0377,4.5062 -1.5071,0.0075 -3.0067,0.0151 -4.5062,0.0302 0,1.4995 0,2.9915 0,4.4836 1.4995,0.0151 3.0066,0.0302 4.5062,0.0452 0.0151,1.4996 0.0151,2.9991 0.0302,4.4987 1.4996,0 2.9916,0 4.4911,0 0.0075,-1.4996 0.015,-2.9991 0.0301,-4.5062 1.5071,-0.0151 3.0067,-0.0226 4.5062,-0.0377 0,-1.4921 0,-2.9916 0,-4.4836 -1.4995,-0.0151 -3.0066,-0.0151 -4.5062,-0.0302 z"
|
174 |
-
inkscape:connector-curvature="0"
|
175 |
-
style="fill:#ffffff;fill-opacity:1" />
|
176 |
-
</g>
|
177 |
</g>
|
178 |
</svg>
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="3.959798"
|
30 |
+
inkscape:cx="-27.341989"
|
31 |
+
inkscape:cy="81.333944"
|
32 |
inkscape:document-units="px"
|
33 |
inkscape:current-layer="layer2"
|
34 |
showgrid="false"
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
+
<dc:title />
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
151 |
transform="scale(0.26458333)" />
|
152 |
<path
|
153 |
inkscape:connector-curvature="0"
|
154 |
+
style="display:inline;opacity:1;fill:#cb2027;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
155 |
d="m 22.818044,42.367876 v 1.887739 0.33383 3.214791 c -0.0097,0.07138 -0.01654,0.143949 -0.01654,0.218075 v 0.61805 c 0,0.883777 0.711474,1.595253 1.595251,1.595253 h 1.135848 c 0.111964,0 0.221258,-0.01185 0.326595,-0.03359 h 2.413289 0.626319 1.887223 v -1.887739 -0.45062 -3.608049 c 0,-1.045723 -0.841497,-1.887739 -1.887223,-1.887739 H 25.21531 24.70578 Z"
|
156 |
id="rect5195-7" />
|
157 |
<path
|
159 |
d="m 28.835241,35.769157 c -0.146882,0.06531 -0.304957,0.109328 -0.470818,0.129037 0.169349,-0.101379 0.299198,-0.261971 0.360433,-0.453539 -0.158399,0.094 -0.333749,0.162209 -0.520535,0.199031 -0.149478,-0.15929 -0.362542,-0.25889 -0.598315,-0.25889 -0.45265,0 -0.819652,0.367001 -0.819652,0.819732 0,0.06416 0.0072,0.126688 0.02125,0.186793 -0.681285,-0.03427 -1.285359,-0.360516 -1.68967,-0.856477 -0.07056,0.121004 -0.110952,0.261809 -0.110952,0.412172 0,0.284361 0.144692,0.535303 0.36465,0.682262 -0.134311,-0.0046 -0.260754,-0.04121 -0.371302,-0.102596 -8e-5,0.0031 -8e-5,0.0069 -8e-5,0.0104 0,0.397093 0.282572,0.728326 0.657604,0.803758 -0.06878,0.01872 -0.141206,0.02873 -0.215984,0.02873 -0.05288,0 -0.104221,-0.0054 -0.154263,-0.01479 0.104382,0.325642 0.407068,0.562713 0.765716,0.569291 -0.280543,0.219873 -0.63392,0.350935 -1.018036,0.350935 -0.0661,0 -0.131391,-0.0039 -0.195545,-0.01155 0.362866,0.232697 0.793698,0.368303 1.256568,0.368303 1.507832,0 2.332269,-1.249025 2.332269,-2.332269 0,-0.03551 -7.13e-4,-0.07093 -0.0023,-0.10617 0.160101,-0.115335 0.299116,-0.259776 0.408934,-0.42418 z"
|
160 |
inkscape:connector-curvature="0"
|
161 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.08110549" />
|
162 |
+
<path
|
163 |
+
id="path5074"
|
164 |
+
d="m 28.861167,46.218863 c 0,1.096206 -0.888167,1.984373 -1.984373,1.984373 -0.204838,0 -0.401676,-0.03121 -0.58731,-0.08882 0.08081,-0.132025 0.201637,-0.348065 0.246446,-0.520098 0.02401,-0.09282 0.123223,-0.472088 0.123223,-0.472088 0.06481,0.123222 0.253648,0.228043 0.454485,0.228043 0.598513,0 1.029794,-0.550504 1.029794,-1.234633 0,-0.655323 -0.5353,-1.145816 -1.22343,-1.145816 -0.856161,0 -1.311447,0.574509 -1.311447,1.201026 0,0.291255 0.155229,0.653724 0.402476,0.768945 0.0376,0.0176 0.05761,0.0096 0.06641,-0.02641 0.0064,-0.0272 0.04001,-0.162431 0.05521,-0.224843 0.0048,-0.02 0.0024,-0.0376 -0.0136,-0.05681 -0.08082,-0.100019 -0.146428,-0.282453 -0.146428,-0.452886 0,-0.437682 0.331262,-0.860961 0.896168,-0.860961 0.487292,0 0.828956,0.332062 0.828956,0.807351 0,0.536902 -0.271251,0.908971 -0.624117,0.908971 -0.194436,0 -0.340864,-0.16083 -0.293655,-0.358467 0.05601,-0.236045 0.164031,-0.490492 0.164031,-0.660924 0,-0.152029 -0.08162,-0.279253 -0.251248,-0.279253 -0.199237,0 -0.359268,0.205639 -0.359268,0.481691 0,0.176033 0.05921,0.294455 0.05921,0.294455 0,0 -0.196037,0.830557 -0.232044,0.985786 -0.04001,0.171232 -0.02401,0.412877 -0.0072,0.569707 -0.737738,-0.288854 -1.261037,-1.00739 -1.261037,-1.848348 0,-1.096206 0.888167,-1.984373 1.984373,-1.984373 1.096207,0 1.984374,0.888167 1.984374,1.984373 z"
|
165 |
+
inkscape:connector-curvature="0"
|
166 |
+
style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:0.0080015" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
</g>
|
168 |
</svg>
|
admin/images/banners/follow-bar.svg
CHANGED
@@ -35,8 +35,8 @@
|
|
35 |
inkscape:pageopacity="0.0"
|
36 |
inkscape:pageshadow="2"
|
37 |
inkscape:zoom="2.8"
|
38 |
-
inkscape:cx="
|
39 |
-
inkscape:cy="
|
40 |
inkscape:document-units="px"
|
41 |
inkscape:current-layer="layer3"
|
42 |
showgrid="false"
|
@@ -54,7 +54,7 @@
|
|
54 |
<dc:format>image/svg+xml</dc:format>
|
55 |
<dc:type
|
56 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
57 |
-
<dc:title
|
58 |
</cc:Work>
|
59 |
</rdf:RDF>
|
60 |
</metadata>
|
@@ -93,7 +93,7 @@
|
|
93 |
cy="26.212648"
|
94 |
r="6.283854" />
|
95 |
<circle
|
96 |
-
style="display:inline;opacity:1;fill:#
|
97 |
id="path5900-5-0"
|
98 |
cx="27.214287"
|
99 |
cy="41.2561"
|
@@ -108,20 +108,10 @@
|
|
108 |
d="m 30.464729,24.742235 c -0.19071,0.0848 -0.395953,0.14195 -0.611304,0.16754 0.21988,-0.13163 0.388475,-0.34014 0.467981,-0.58887 -0.205663,0.12205 -0.433335,0.21061 -0.675856,0.25842 -0.19408,-0.20682 -0.47072,-0.33614 -0.776845,-0.33614 -0.587715,0 -1.064226,0.47651 -1.064226,1.06433 0,0.0833 0.0094,0.16449 0.02759,0.24253 -0.884573,-0.0445 -1.668895,-0.46809 -2.193847,-1.11204 -0.09162,0.15711 -0.144059,0.33993 -0.144059,0.53516 0,0.36921 0.187866,0.69503 0.473457,0.88584 -0.174388,-0.006 -0.33856,-0.0535 -0.482093,-0.13321 -1.05e-4,0.004 -1.05e-4,0.009 -1.05e-4,0.0135 0,0.51558 0.366888,0.94565 0.853825,1.04359 -0.0893,0.0243 -0.183339,0.0373 -0.280431,0.0373 -0.06866,0 -0.135319,-0.007 -0.200293,-0.0192 0.135529,0.42281 0.528533,0.73062 0.994197,0.73916 -0.364254,0.28548 -0.823074,0.45565 -1.321806,0.45565 -0.08582,0 -0.170596,-0.005 -0.253893,-0.015 0.471141,0.30213 1.030528,0.4782 1.631512,0.4782 1.957751,0 3.02819,-1.62172 3.02819,-3.02819 0,-0.0461 -9.26e-4,-0.0921 -0.003,-0.13785 0.207874,-0.14975 0.388369,-0.33729 0.530955,-0.55075 z"
|
109 |
inkscape:connector-curvature="0"
|
110 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.10530637" />
|
111 |
-
<
|
112 |
-
id="
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
id="path5306"
|
117 |
-
d="m 19.6671,25.7867 c -0.0075,1.7935 0,3.5869 0.0076,5.3803 3.0067,0.098 6.0208,0.0527 9.0275,0.098 -1.3262,6.6689 -10.3989,8.8315 -15.199,4.4761 C 8.5674,31.9206 8.801,23.5412 13.9327,19.992 c 3.5869,-2.8635 8.6884,-2.1552 12.2752,0.324 1.4092,-1.3036 2.7278,-2.6977 4.0013,-4.1445 -2.984,-2.3812 -6.6462,-4.0767 -10.5421,-3.8958 -8.1307,-0.2713 -15.6059,6.8497 -15.7415,14.9805 -0.52,6.6462 3.8506,13.1644 10.0222,15.5155 6.1489,2.3661 14.031,0.7535 17.957,-4.77 2.5922,-3.4889 3.1498,-7.98 2.8484,-12.1999 -5.0338,-0.0377 -10.0599,-0.0302 -15.0861,-0.0151 z"
|
118 |
-
inkscape:connector-curvature="0"
|
119 |
-
style="fill:#ffffff;fill-opacity:1" />
|
120 |
-
<path
|
121 |
-
id="path5308"
|
122 |
-
d="m 49.0704,25.7641 c -0.0151,-1.4996 -0.0226,-3.0067 -0.0301,-4.5062 -1.4996,0 -2.9916,0 -4.4836,0 -0.0151,1.4996 -0.0301,2.9991 -0.0377,4.5062 -1.5071,0.0075 -3.0067,0.0151 -4.5062,0.0302 0,1.4995 0,2.9915 0,4.4836 1.4995,0.0151 3.0066,0.0302 4.5062,0.0452 0.0151,1.4996 0.0151,2.9991 0.0302,4.4987 1.4996,0 2.9916,0 4.4911,0 0.0075,-1.4996 0.015,-2.9991 0.0301,-4.5062 1.5071,-0.0151 3.0067,-0.0226 4.5062,-0.0377 0,-1.4921 0,-2.9916 0,-4.4836 -1.4995,-0.0151 -3.0066,-0.0151 -4.5062,-0.0302 z"
|
123 |
-
inkscape:connector-curvature="0"
|
124 |
-
style="fill:#ffffff;fill-opacity:1" />
|
125 |
-
</g>
|
126 |
</g>
|
127 |
</svg>
|
35 |
inkscape:pageopacity="0.0"
|
36 |
inkscape:pageshadow="2"
|
37 |
inkscape:zoom="2.8"
|
38 |
+
inkscape:cx="44.179213"
|
39 |
+
inkscape:cy="117.17048"
|
40 |
inkscape:document-units="px"
|
41 |
inkscape:current-layer="layer3"
|
42 |
showgrid="false"
|
54 |
<dc:format>image/svg+xml</dc:format>
|
55 |
<dc:type
|
56 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
57 |
+
<dc:title />
|
58 |
</cc:Work>
|
59 |
</rdf:RDF>
|
60 |
</metadata>
|
93 |
cy="26.212648"
|
94 |
r="6.283854" />
|
95 |
<circle
|
96 |
+
style="display:inline;opacity:1;fill:#cb2027;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
97 |
id="path5900-5-0"
|
98 |
cx="27.214287"
|
99 |
cy="41.2561"
|
108 |
d="m 30.464729,24.742235 c -0.19071,0.0848 -0.395953,0.14195 -0.611304,0.16754 0.21988,-0.13163 0.388475,-0.34014 0.467981,-0.58887 -0.205663,0.12205 -0.433335,0.21061 -0.675856,0.25842 -0.19408,-0.20682 -0.47072,-0.33614 -0.776845,-0.33614 -0.587715,0 -1.064226,0.47651 -1.064226,1.06433 0,0.0833 0.0094,0.16449 0.02759,0.24253 -0.884573,-0.0445 -1.668895,-0.46809 -2.193847,-1.11204 -0.09162,0.15711 -0.144059,0.33993 -0.144059,0.53516 0,0.36921 0.187866,0.69503 0.473457,0.88584 -0.174388,-0.006 -0.33856,-0.0535 -0.482093,-0.13321 -1.05e-4,0.004 -1.05e-4,0.009 -1.05e-4,0.0135 0,0.51558 0.366888,0.94565 0.853825,1.04359 -0.0893,0.0243 -0.183339,0.0373 -0.280431,0.0373 -0.06866,0 -0.135319,-0.007 -0.200293,-0.0192 0.135529,0.42281 0.528533,0.73062 0.994197,0.73916 -0.364254,0.28548 -0.823074,0.45565 -1.321806,0.45565 -0.08582,0 -0.170596,-0.005 -0.253893,-0.015 0.471141,0.30213 1.030528,0.4782 1.631512,0.4782 1.957751,0 3.02819,-1.62172 3.02819,-3.02819 0,-0.0461 -9.26e-4,-0.0921 -0.003,-0.13785 0.207874,-0.14975 0.388369,-0.33729 0.530955,-0.55075 z"
|
109 |
inkscape:connector-curvature="0"
|
110 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.10530637" />
|
111 |
+
<path
|
112 |
+
id="path5074"
|
113 |
+
d="m 29.916819,41.615178 c 0,1.461609 -1.184224,2.645833 -2.645833,2.645833 -0.273118,0 -0.535568,-0.04161 -0.783081,-0.118423 0.107753,-0.176033 0.26885,-0.464087 0.328595,-0.693464 0.03201,-0.123757 0.164298,-0.629452 0.164298,-0.629452 0.08642,0.164297 0.338197,0.304058 0.605981,0.304058 0.798017,0 1.373059,-0.734006 1.373059,-1.646178 0,-0.873765 -0.713734,-1.527756 -1.631241,-1.527756 -1.141549,0 -1.748597,0.766012 -1.748597,1.601369 0,0.38834 0.206972,0.871632 0.536634,1.025261 0.05014,0.02347 0.07681,0.0128 0.08855,-0.03521 0.0085,-0.03627 0.05334,-0.216574 0.07361,-0.29979 0.0064,-0.02667 0.0032,-0.05014 -0.01814,-0.07575 -0.107754,-0.133359 -0.195237,-0.376605 -0.195237,-0.603848 0,-0.583577 0.441683,-1.14795 1.194892,-1.14795 0.649723,0 1.105276,0.44275 1.105276,1.07647 0,0.715869 -0.361669,1.211962 -0.832157,1.211962 -0.259249,0 -0.454486,-0.21444 -0.391541,-0.477957 0.07468,-0.314726 0.218708,-0.65399 0.218708,-0.881233 0,-0.202705 -0.108821,-0.372337 -0.334997,-0.372337 -0.26565,0 -0.479024,0.274185 -0.479024,0.642255 0,0.234711 0.07895,0.392607 0.07895,0.392607 0,0 -0.261383,1.10741 -0.309392,1.314382 -0.05334,0.22831 -0.03201,0.550504 -0.0096,0.75961 -0.983652,-0.385139 -1.681384,-1.343187 -1.681384,-2.464465 0,-1.46161 1.184224,-2.645834 2.645833,-2.645834 1.46161,0 2.645834,1.184224 2.645834,2.645834 z"
|
114 |
+
inkscape:connector-curvature="0"
|
115 |
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.01066868" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
</g>
|
117 |
</svg>
|
admin/images/banners/mobile-sharebar.svg
CHANGED
@@ -27,10 +27,10 @@
|
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="2.8"
|
30 |
-
inkscape:cx="
|
31 |
inkscape:cy="68.113673"
|
32 |
inkscape:document-units="px"
|
33 |
-
inkscape:current-layer="
|
34 |
showgrid="false"
|
35 |
units="px"
|
36 |
inkscape:window-width="1920"
|
@@ -46,7 +46,7 @@
|
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
-
<dc:title
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
@@ -86,7 +86,7 @@
|
|
86 |
x="16.404167"
|
87 |
y="45.867416" />
|
88 |
<rect
|
89 |
-
style="opacity:1;fill:#
|
90 |
id="rect7559-7-8"
|
91 |
width="7.1437507"
|
92 |
height="7.1437507"
|
@@ -116,21 +116,6 @@
|
|
116 |
d="m 21.625239,48.773367 c -0.116973,0.05201 -0.242859,0.08707 -0.374945,0.102762 0.134864,-0.08074 0.238272,-0.208627 0.287037,-0.361187 -0.126144,0.07486 -0.265787,0.129178 -0.414539,0.158503 -0.119039,-0.126854 -0.288717,-0.206173 -0.476481,-0.206173 -0.360477,0 -0.652747,0.29227 -0.652747,0.652812 0,0.05109 0.0058,0.10089 0.01692,0.148756 -0.542556,-0.02729 -1.023623,-0.287104 -1.345605,-0.682074 -0.05619,0.09636 -0.08836,0.208497 -0.08836,0.328243 0,0.226456 0.115228,0.426299 0.290397,0.543333 -0.106962,-0.0037 -0.207657,-0.03282 -0.295694,-0.0817 -6.5e-5,0.0024 -6.5e-5,0.0055 -6.5e-5,0.0083 0,0.316233 0.225033,0.580019 0.523698,0.64009 -0.05478,0.0149 -0.112452,0.02288 -0.172004,0.02288 -0.04211,0 -0.083,-0.0043 -0.122851,-0.01178 0.08313,0.259333 0.324178,0.44813 0.609795,0.453367 -0.223416,0.175101 -0.504835,0.279475 -0.810735,0.279475 -0.05264,0 -0.104636,-0.0031 -0.155726,-0.0092 0.288976,0.185314 0.632078,0.293306 1.000695,0.293306 1.200794,0 1.857352,-0.994688 1.857352,-1.857353 0,-0.02828 -5.65e-4,-0.05649 -0.0018,-0.08455 0.127501,-0.09185 0.238209,-0.206878 0.325664,-0.337804 z"
|
117 |
inkscape:connector-curvature="0"
|
118 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.0645901" />
|
119 |
-
<g
|
120 |
-
id="g5310"
|
121 |
-
transform="matrix(0.07509734,0,0,0.07509734,25.517067,47.697382)"
|
122 |
-
style="display:inline;opacity:1;fill:#fffbfa;fill-opacity:1">
|
123 |
-
<path
|
124 |
-
id="path5306"
|
125 |
-
d="m 19.6671,25.7867 c -0.0075,1.7935 0,3.5869 0.0076,5.3803 3.0067,0.098 6.0208,0.0527 9.0275,0.098 -1.3262,6.6689 -10.3989,8.8315 -15.199,4.4761 C 8.5674,31.9206 8.801,23.5412 13.9327,19.992 c 3.5869,-2.8635 8.6884,-2.1552 12.2752,0.324 1.4092,-1.3036 2.7278,-2.6977 4.0013,-4.1445 -2.984,-2.3812 -6.6462,-4.0767 -10.5421,-3.8958 -8.1307,-0.2713 -15.6059,6.8497 -15.7415,14.9805 -0.52,6.6462 3.8506,13.1644 10.0222,15.5155 6.1489,2.3661 14.031,0.7535 17.957,-4.77 2.5922,-3.4889 3.1498,-7.98 2.8484,-12.1999 -5.0338,-0.0377 -10.0599,-0.0302 -15.0861,-0.0151 z"
|
126 |
-
inkscape:connector-curvature="0"
|
127 |
-
style="fill:#fffbfa;fill-opacity:1" />
|
128 |
-
<path
|
129 |
-
id="path5308"
|
130 |
-
d="m 49.0704,25.7641 c -0.0151,-1.4996 -0.0226,-3.0067 -0.0301,-4.5062 -1.4996,0 -2.9916,0 -4.4836,0 -0.0151,1.4996 -0.0301,2.9991 -0.0377,4.5062 -1.5071,0.0075 -3.0067,0.0151 -4.5062,0.0302 0,1.4995 0,2.9915 0,4.4836 1.4995,0.0151 3.0066,0.0302 4.5062,0.0452 0.0151,1.4996 0.0151,2.9991 0.0302,4.4987 1.4996,0 2.9916,0 4.4911,0 0.0075,-1.4996 0.015,-2.9991 0.0301,-4.5062 1.5071,-0.0151 3.0067,-0.0226 4.5062,-0.0377 0,-1.4921 0,-2.9916 0,-4.4836 -1.4995,-0.0151 -3.0066,-0.0151 -4.5062,-0.0302 z"
|
131 |
-
inkscape:connector-curvature="0"
|
132 |
-
style="fill:#fffbfa;fill-opacity:1" />
|
133 |
-
</g>
|
134 |
<path
|
135 |
id="path6891"
|
136 |
d="m 34.599273,49.97468 c -0.262373,0 -1.61413,-1.006368 -1.61413,-1.006368 v -0.110577 c 0,-0.137013 0.120371,-0.248211 0.268955,-0.248211 h 2.69035 c 0.148717,0 0.269089,0.111198 0.269089,0.248211 l -0.0021,0.124105 c 0,0 -1.337114,0.99284 -1.612114,0.99284 z m 0,0.341289 c 0.287628,0 1.612114,-0.961814 1.612114,-0.961814 l 0.0021,1.489261 c 0,0.137012 -0.120372,0.248211 -0.269089,0.248211 h -2.690349 c -0.148449,0 -0.268954,-0.111199 -0.268954,-0.248211 l 0.0021,-1.489261 c -1.34e-4,0 1.349607,0.961814 1.61198,0.961814 z"
|
@@ -183,6 +168,11 @@
|
|
183 |
width="24.077303"
|
184 |
id="rect6825-0-1-6-5"
|
185 |
style="display:inline;opacity:1;fill:#d6d6d6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.19037014;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
|
|
|
|
|
|
|
|
|
186 |
</g>
|
187 |
<g
|
188 |
inkscape:groupmode="layer"
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="2.8"
|
30 |
+
inkscape:cx="16.691864"
|
31 |
inkscape:cy="68.113673"
|
32 |
inkscape:document-units="px"
|
33 |
+
inkscape:current-layer="layer6"
|
34 |
showgrid="false"
|
35 |
units="px"
|
36 |
inkscape:window-width="1920"
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
+
<dc:title />
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
86 |
x="16.404167"
|
87 |
y="45.867416" />
|
88 |
<rect
|
89 |
+
style="opacity:1;fill:#cb2027;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.19804454;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
90 |
id="rect7559-7-8"
|
91 |
width="7.1437507"
|
92 |
height="7.1437507"
|
116 |
d="m 21.625239,48.773367 c -0.116973,0.05201 -0.242859,0.08707 -0.374945,0.102762 0.134864,-0.08074 0.238272,-0.208627 0.287037,-0.361187 -0.126144,0.07486 -0.265787,0.129178 -0.414539,0.158503 -0.119039,-0.126854 -0.288717,-0.206173 -0.476481,-0.206173 -0.360477,0 -0.652747,0.29227 -0.652747,0.652812 0,0.05109 0.0058,0.10089 0.01692,0.148756 -0.542556,-0.02729 -1.023623,-0.287104 -1.345605,-0.682074 -0.05619,0.09636 -0.08836,0.208497 -0.08836,0.328243 0,0.226456 0.115228,0.426299 0.290397,0.543333 -0.106962,-0.0037 -0.207657,-0.03282 -0.295694,-0.0817 -6.5e-5,0.0024 -6.5e-5,0.0055 -6.5e-5,0.0083 0,0.316233 0.225033,0.580019 0.523698,0.64009 -0.05478,0.0149 -0.112452,0.02288 -0.172004,0.02288 -0.04211,0 -0.083,-0.0043 -0.122851,-0.01178 0.08313,0.259333 0.324178,0.44813 0.609795,0.453367 -0.223416,0.175101 -0.504835,0.279475 -0.810735,0.279475 -0.05264,0 -0.104636,-0.0031 -0.155726,-0.0092 0.288976,0.185314 0.632078,0.293306 1.000695,0.293306 1.200794,0 1.857352,-0.994688 1.857352,-1.857353 0,-0.02828 -5.65e-4,-0.05649 -0.0018,-0.08455 0.127501,-0.09185 0.238209,-0.206878 0.325664,-0.337804 z"
|
117 |
inkscape:connector-curvature="0"
|
118 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.0645901" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
<path
|
120 |
id="path6891"
|
121 |
d="m 34.599273,49.97468 c -0.262373,0 -1.61413,-1.006368 -1.61413,-1.006368 v -0.110577 c 0,-0.137013 0.120371,-0.248211 0.268955,-0.248211 h 2.69035 c 0.148717,0 0.269089,0.111198 0.269089,0.248211 l -0.0021,0.124105 c 0,0 -1.337114,0.99284 -1.612114,0.99284 z m 0,0.341289 c 0.287628,0 1.612114,-0.961814 1.612114,-0.961814 l 0.0021,1.489261 c 0,0.137012 -0.120372,0.248211 -0.269089,0.248211 h -2.690349 c -0.148449,0 -0.268954,-0.111199 -0.268954,-0.248211 l 0.0021,-1.489261 c -1.34e-4,0 1.349607,0.961814 1.61198,0.961814 z"
|
168 |
width="24.077303"
|
169 |
id="rect6825-0-1-6-5"
|
170 |
style="display:inline;opacity:1;fill:#d6d6d6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.19037014;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
171 |
+
<path
|
172 |
+
id="path5074"
|
173 |
+
d="m 28.974562,49.677346 c 0,0.876964 -0.710534,1.587497 -1.587499,1.587497 -0.163871,0 -0.321341,-0.02497 -0.469848,-0.07106 0.06465,-0.10562 0.161309,-0.278452 0.197156,-0.416078 0.01921,-0.07426 0.09858,-0.37767 0.09858,-0.37767 0.05185,0.09858 0.202918,0.182434 0.363588,0.182434 0.478811,0 0.823836,-0.440402 0.823836,-0.987705 0,-0.524258 -0.428241,-0.916652 -0.978745,-0.916652 -0.684929,0 -1.049158,0.459607 -1.049158,0.96082 0,0.233004 0.124183,0.522979 0.321981,0.615155 0.03008,0.01408 0.04609,0.0077 0.05313,-0.02113 0.0051,-0.02176 0.03201,-0.129944 0.04417,-0.179873 0.0038,-0.016 0.0019,-0.03008 -0.01088,-0.04545 -0.06466,-0.08001 -0.117142,-0.225962 -0.117142,-0.362309 0,-0.350145 0.265009,-0.688768 0.716934,-0.688768 0.389834,0 0.663166,0.26565 0.663166,0.64588 0,0.429522 -0.217001,0.727177 -0.499294,0.727177 -0.155549,0 -0.272692,-0.128664 -0.234924,-0.286774 0.04481,-0.188836 0.131224,-0.392393 0.131224,-0.528738 0,-0.121624 -0.0653,-0.223403 -0.200998,-0.223403 -0.15939,0 -0.287415,0.164511 -0.287415,0.385353 0,0.140826 0.04737,0.235564 0.04737,0.235564 0,0 -0.156829,0.664444 -0.185635,0.788628 -0.03201,0.136985 -0.01921,0.330301 -0.0058,0.455765 -0.590191,-0.231083 -1.00883,-0.805911 -1.00883,-1.478677 0,-0.876964 0.710534,-1.587497 1.587499,-1.587497 0.876966,0 1.5875,0.710533 1.5875,1.587497 z"
|
174 |
+
inkscape:connector-curvature="0"
|
175 |
+
style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:0.0064012" />
|
176 |
</g>
|
177 |
<g
|
178 |
inkscape:groupmode="layer"
|
admin/images/banners/share-buttons.svg
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
version="1.1"
|
16 |
id="svg4644"
|
17 |
inkscape:version="0.92.0 r15299"
|
18 |
-
sodipodi:docname="
|
19 |
<defs
|
20 |
id="defs4638" />
|
21 |
<sodipodi:namedview
|
@@ -25,9 +25,9 @@
|
|
25 |
borderopacity="1.0"
|
26 |
inkscape:pageopacity="0.0"
|
27 |
inkscape:pageshadow="2"
|
28 |
-
inkscape:zoom="
|
29 |
-
inkscape:cx="
|
30 |
-
inkscape:cy="
|
31 |
inkscape:document-units="px"
|
32 |
inkscape:current-layer="g5403"
|
33 |
showgrid="false"
|
@@ -45,7 +45,7 @@
|
|
45 |
<dc:format>image/svg+xml</dc:format>
|
46 |
<dc:type
|
47 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
48 |
-
<dc:title
|
49 |
</cc:Work>
|
50 |
</rdf:RDF>
|
51 |
</metadata>
|
@@ -81,7 +81,7 @@
|
|
81 |
id="tspan5252"
|
82 |
x="10.356693"
|
83 |
y="277.18582"
|
84 |
-
style="stroke-width:0.26458332"
|
85 |
<text
|
86 |
xml:space="preserve"
|
87 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
@@ -92,7 +92,7 @@
|
|
92 |
id="tspan5326"
|
93 |
x="20.980658"
|
94 |
y="273.61108"
|
95 |
-
style="stroke-width:0.26458332"
|
96 |
<g
|
97 |
id="g5376"
|
98 |
transform="translate(-0.75595269,0.66145836)">
|
@@ -117,7 +117,7 @@
|
|
117 |
<rect
|
118 |
ry="0.73499119"
|
119 |
y="273.43015"
|
120 |
-
x="
|
121 |
height="6.0302687"
|
122 |
width="9.6718159"
|
123 |
id="rect5210"
|
@@ -125,7 +125,7 @@
|
|
125 |
<rect
|
126 |
ry="0.73499119"
|
127 |
y="273.43015"
|
128 |
-
x="
|
129 |
height="6.0302687"
|
130 |
width="9.6718159"
|
131 |
id="rect5212"
|
@@ -133,19 +133,19 @@
|
|
133 |
<rect
|
134 |
ry="0.73499119"
|
135 |
y="273.43015"
|
136 |
-
x="
|
137 |
height="6.0302687"
|
138 |
width="9.6718159"
|
139 |
id="rect5214"
|
140 |
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:0.207;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
141 |
<rect
|
142 |
-
style="opacity:1;fill:#
|
143 |
id="rect5208"
|
144 |
-
width="
|
145 |
-
height="
|
146 |
-
x="
|
147 |
-
y="273.
|
148 |
-
ry="0.
|
149 |
<text
|
150 |
xml:space="preserve"
|
151 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fff6f6;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1"
|
@@ -197,21 +197,6 @@
|
|
197 |
x="29.364025"
|
198 |
y="259.06064"
|
199 |
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:arial;-inkscape-font-specification:arial;fill:#ffffff;fill-opacity:1;stroke-width:0.26458332">5.32 M</tspan></text>
|
200 |
-
<g
|
201 |
-
id="g5310"
|
202 |
-
transform="matrix(0.10054215,0,0,0.10054215,35.18063,273.6505)"
|
203 |
-
style="fill:#de564a;fill-opacity:1">
|
204 |
-
<path
|
205 |
-
id="path5306"
|
206 |
-
d="m 19.6671,25.7867 c -0.0075,1.7935 0,3.5869 0.0076,5.3803 3.0067,0.098 6.0208,0.0527 9.0275,0.098 -1.3262,6.6689 -10.3989,8.8315 -15.199,4.4761 C 8.5674,31.9206 8.801,23.5412 13.9327,19.992 c 3.5869,-2.8635 8.6884,-2.1552 12.2752,0.324 1.4092,-1.3036 2.7278,-2.6977 4.0013,-4.1445 -2.984,-2.3812 -6.6462,-4.0767 -10.5421,-3.8958 -8.1307,-0.2713 -15.6059,6.8497 -15.7415,14.9805 -0.52,6.6462 3.8506,13.1644 10.0222,15.5155 6.1489,2.3661 14.031,0.7535 17.957,-4.77 2.5922,-3.4889 3.1498,-7.98 2.8484,-12.1999 -5.0338,-0.0377 -10.0599,-0.0302 -15.0861,-0.0151 z"
|
207 |
-
inkscape:connector-curvature="0"
|
208 |
-
style="fill:#de564a;fill-opacity:1" />
|
209 |
-
<path
|
210 |
-
id="path5308"
|
211 |
-
d="m 49.0704,25.7641 c -0.0151,-1.4996 -0.0226,-3.0067 -0.0301,-4.5062 -1.4996,0 -2.9916,0 -4.4836,0 -0.0151,1.4996 -0.0301,2.9991 -0.0377,4.5062 -1.5071,0.0075 -3.0067,0.0151 -4.5062,0.0302 0,1.4995 0,2.9915 0,4.4836 1.4995,0.0151 3.0066,0.0302 4.5062,0.0452 0.0151,1.4996 0.0151,2.9991 0.0302,4.4987 1.4996,0 2.9916,0 4.4911,0 0.0075,-1.4996 0.015,-2.9991 0.0301,-4.5062 1.5071,-0.0151 3.0067,-0.0226 4.5062,-0.0377 0,-1.4921 0,-2.9916 0,-4.4836 -1.4995,-0.0151 -3.0066,-0.0151 -4.5062,-0.0302 z"
|
212 |
-
inkscape:connector-curvature="0"
|
213 |
-
style="fill:#de564a;fill-opacity:1" />
|
214 |
-
</g>
|
215 |
<text
|
216 |
xml:space="preserve"
|
217 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
@@ -244,6 +229,22 @@
|
|
244 |
inkscape:connector-curvature="0"
|
245 |
style="fill:#ffffff;fill-rule:evenodd" />
|
246 |
</g>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
</g>
|
248 |
</g>
|
249 |
</g>
|
15 |
version="1.1"
|
16 |
id="svg4644"
|
17 |
inkscape:version="0.92.0 r15299"
|
18 |
+
sodipodi:docname="share-buttons.svg">
|
19 |
<defs
|
20 |
id="defs4638" />
|
21 |
<sodipodi:namedview
|
25 |
borderopacity="1.0"
|
26 |
inkscape:pageopacity="0.0"
|
27 |
inkscape:pageshadow="2"
|
28 |
+
inkscape:zoom="1.4"
|
29 |
+
inkscape:cx="-241.16987"
|
30 |
+
inkscape:cy="186.07398"
|
31 |
inkscape:document-units="px"
|
32 |
inkscape:current-layer="g5403"
|
33 |
showgrid="false"
|
45 |
<dc:format>image/svg+xml</dc:format>
|
46 |
<dc:type
|
47 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
48 |
+
<dc:title />
|
49 |
</cc:Work>
|
50 |
</rdf:RDF>
|
51 |
</metadata>
|
81 |
id="tspan5252"
|
82 |
x="10.356693"
|
83 |
y="277.18582"
|
84 |
+
style="stroke-width:0.26458332" /></text>
|
85 |
<text
|
86 |
xml:space="preserve"
|
87 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
92 |
id="tspan5326"
|
93 |
x="20.980658"
|
94 |
y="273.61108"
|
95 |
+
style="stroke-width:0.26458332" /></text>
|
96 |
<g
|
97 |
id="g5376"
|
98 |
transform="translate(-0.75595269,0.66145836)">
|
117 |
<rect
|
118 |
ry="0.73499119"
|
119 |
y="273.43015"
|
120 |
+
x="32.088459"
|
121 |
height="6.0302687"
|
122 |
width="9.6718159"
|
123 |
id="rect5210"
|
125 |
<rect
|
126 |
ry="0.73499119"
|
127 |
y="273.43015"
|
128 |
+
x="32.088459"
|
129 |
height="6.0302687"
|
130 |
width="9.6718159"
|
131 |
id="rect5212"
|
133 |
<rect
|
134 |
ry="0.73499119"
|
135 |
y="273.43015"
|
136 |
+
x="32.088459"
|
137 |
height="6.0302687"
|
138 |
width="9.6718159"
|
139 |
id="rect5214"
|
140 |
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#dedede;stroke-width:0.207;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
141 |
<rect
|
142 |
+
style="opacity:1;fill:#cb2027;fill-opacity:1;fill-rule:nonzero;stroke:#b50006;stroke-width:0.26721638;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
143 |
id="rect5208"
|
144 |
+
width="16.293238"
|
145 |
+
height="5.9699526"
|
146 |
+
x="32.118618"
|
147 |
+
y="273.46033"
|
148 |
+
ry="0.72763962" />
|
149 |
<text
|
150 |
xml:space="preserve"
|
151 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fff6f6;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1"
|
197 |
x="29.364025"
|
198 |
y="259.06064"
|
199 |
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:arial;-inkscape-font-specification:arial;fill:#ffffff;fill-opacity:1;stroke-width:0.26458332">5.32 M</tspan></text>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
<text
|
201 |
xml:space="preserve"
|
202 |
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
229 |
inkscape:connector-curvature="0"
|
230 |
style="fill:#ffffff;fill-rule:evenodd" />
|
231 |
</g>
|
232 |
+
<path
|
233 |
+
id="path5074"
|
234 |
+
d="m 36.829273,276.39492 c 0,0.87696 -0.710534,1.5875 -1.587499,1.5875 -0.163871,0 -0.321341,-0.025 -0.469848,-0.0711 0.06465,-0.10562 0.161309,-0.27845 0.197156,-0.41608 0.01921,-0.0743 0.09858,-0.37767 0.09858,-0.37767 0.05185,0.0986 0.202918,0.18243 0.363588,0.18243 0.478811,0 0.823836,-0.4404 0.823836,-0.9877 0,-0.52426 -0.428241,-0.91665 -0.978745,-0.91665 -0.684929,0 -1.049158,0.4596 -1.049158,0.96082 0,0.233 0.124183,0.52298 0.321981,0.61515 0.03008,0.0141 0.04609,0.008 0.05313,-0.0211 0.0051,-0.0218 0.03201,-0.12994 0.04417,-0.17987 0.0038,-0.016 0.0019,-0.0301 -0.01088,-0.0455 -0.06466,-0.08 -0.117142,-0.22596 -0.117142,-0.36231 0,-0.35015 0.265009,-0.68877 0.716934,-0.68877 0.389834,0 0.663166,0.26565 0.663166,0.64588 0,0.42952 -0.217001,0.72718 -0.499294,0.72718 -0.155549,0 -0.272692,-0.12867 -0.234924,-0.28678 0.04481,-0.18883 0.131224,-0.39239 0.131224,-0.52873 0,-0.12163 -0.0653,-0.22341 -0.200998,-0.22341 -0.15939,0 -0.287415,0.16451 -0.287415,0.38536 0,0.14082 0.04737,0.23556 0.04737,0.23556 0,0 -0.156829,0.66444 -0.185635,0.78863 -0.03201,0.13698 -0.01921,0.3303 -0.0058,0.45576 -0.590191,-0.23108 -1.00883,-0.80591 -1.00883,-1.47867 0,-0.87697 0.710534,-1.5875 1.587499,-1.5875 0.876966,0 1.5875,0.71053 1.5875,1.5875 z"
|
235 |
+
inkscape:connector-curvature="0"
|
236 |
+
style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:0.0064012" />
|
237 |
+
<text
|
238 |
+
xml:space="preserve"
|
239 |
+
style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;opacity:1;fill:#fff6f6;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1"
|
240 |
+
x="37.901569"
|
241 |
+
y="277.75656"
|
242 |
+
id="text5258-4"><tspan
|
243 |
+
sodipodi:role="line"
|
244 |
+
id="tspan5256-0"
|
245 |
+
x="37.901569"
|
246 |
+
y="277.75656"
|
247 |
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:helvetica;-inkscape-font-specification:helvetica;fill:#fff6f6;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:1">Save</tspan></text>
|
248 |
</g>
|
249 |
</g>
|
250 |
</g>
|
admin/images/banners/text-sharebar.svg
CHANGED
@@ -27,10 +27,10 @@
|
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="2.8"
|
30 |
-
inkscape:cx="
|
31 |
-
inkscape:cy="
|
32 |
inkscape:document-units="px"
|
33 |
-
inkscape:current-layer="
|
34 |
showgrid="false"
|
35 |
units="px"
|
36 |
inkscape:window-width="1920"
|
@@ -46,7 +46,7 @@
|
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
-
<dc:title
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
@@ -85,7 +85,7 @@
|
|
85 |
y="30.661106"
|
86 |
x="1.6704345"
|
87 |
id="tspan6805"
|
88 |
-
sodipodi:role="line"
|
89 |
<text
|
90 |
id="text6813"
|
91 |
y="42.354149"
|
@@ -96,7 +96,7 @@
|
|
96 |
y="42.354149"
|
97 |
x="28.063299"
|
98 |
id="tspan6811"
|
99 |
-
sodipodi:role="line"
|
100 |
<rect
|
101 |
y="25.76899"
|
102 |
x="6.1641383"
|
@@ -125,21 +125,6 @@
|
|
125 |
d="m 23.529116,12.548081 c -0.153307,0.06817 -0.318297,0.11411 -0.491412,0.134681 0.176756,-0.105814 0.312285,-0.27343 0.376198,-0.473378 -0.165327,0.09811 -0.348347,0.169304 -0.543304,0.207738 -0.156016,-0.166258 -0.3784,-0.270215 -0.624487,-0.270215 -0.472449,0 -0.855505,0.383055 -0.855505,0.855589 0,0.06696 0.0076,0.132229 0.02218,0.194964 -0.711087,-0.03577 -1.341584,-0.376286 -1.76358,-0.893942 -0.07365,0.126297 -0.115806,0.273261 -0.115806,0.430202 0,0.296799 0.151021,0.558718 0.380601,0.712105 -0.140187,-0.0048 -0.27216,-0.04301 -0.387543,-0.107084 -8.5e-5,0.0032 -8.5e-5,0.0072 -8.5e-5,0.01085 0,0.414463 0.294933,0.760185 0.68637,0.838917 -0.07179,0.01953 -0.147382,0.02998 -0.225432,0.02998 -0.05519,0 -0.10878,-0.0056 -0.161011,-0.01544 0.108949,0.339887 0.424875,0.587328 0.799211,0.594193 -0.292815,0.22949 -0.661649,0.366286 -1.062568,0.366286 -0.06899,0 -0.137138,-0.004 -0.204098,-0.01206 0.378739,0.242875 0.828416,0.384413 1.311533,0.384413 1.573788,0 2.434288,-1.303661 2.434288,-2.434288 0,-0.03706 -7.44e-4,-0.07404 -0.0024,-0.110815 0.167105,-0.12038 0.312201,-0.271139 0.426822,-0.442734 z"
|
126 |
inkscape:connector-curvature="0"
|
127 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.08465323" />
|
128 |
-
<g
|
129 |
-
id="g5310"
|
130 |
-
transform="matrix(0.10054215,0,0,0.10054215,27.136954,11.017753)"
|
131 |
-
style="display:inline;opacity:1;fill:#fffbfa;fill-opacity:1">
|
132 |
-
<path
|
133 |
-
id="path5306"
|
134 |
-
d="m 19.6671,25.7867 c -0.0075,1.7935 0,3.5869 0.0076,5.3803 3.0067,0.098 6.0208,0.0527 9.0275,0.098 -1.3262,6.6689 -10.3989,8.8315 -15.199,4.4761 C 8.5674,31.9206 8.801,23.5412 13.9327,19.992 c 3.5869,-2.8635 8.6884,-2.1552 12.2752,0.324 1.4092,-1.3036 2.7278,-2.6977 4.0013,-4.1445 -2.984,-2.3812 -6.6462,-4.0767 -10.5421,-3.8958 -8.1307,-0.2713 -15.6059,6.8497 -15.7415,14.9805 -0.52,6.6462 3.8506,13.1644 10.0222,15.5155 6.1489,2.3661 14.031,0.7535 17.957,-4.77 2.5922,-3.4889 3.1498,-7.98 2.8484,-12.1999 -5.0338,-0.0377 -10.0599,-0.0302 -15.0861,-0.0151 z"
|
135 |
-
inkscape:connector-curvature="0"
|
136 |
-
style="fill:#fffbfa;fill-opacity:1" />
|
137 |
-
<path
|
138 |
-
id="path5308"
|
139 |
-
d="m 49.0704,25.7641 c -0.0151,-1.4996 -0.0226,-3.0067 -0.0301,-4.5062 -1.4996,0 -2.9916,0 -4.4836,0 -0.0151,1.4996 -0.0301,2.9991 -0.0377,4.5062 -1.5071,0.0075 -3.0067,0.0151 -4.5062,0.0302 0,1.4995 0,2.9915 0,4.4836 1.4995,0.0151 3.0066,0.0302 4.5062,0.0452 0.0151,1.4996 0.0151,2.9991 0.0302,4.4987 1.4996,0 2.9916,0 4.4911,0 0.0075,-1.4996 0.015,-2.9991 0.0301,-4.5062 1.5071,-0.0151 3.0067,-0.0226 4.5062,-0.0377 0,-1.4921 0,-2.9916 0,-4.4836 -1.4995,-0.0151 -3.0066,-0.0151 -4.5062,-0.0302 z"
|
140 |
-
inkscape:connector-curvature="0"
|
141 |
-
style="fill:#fffbfa;fill-opacity:1" />
|
142 |
-
</g>
|
143 |
<path
|
144 |
id="path6891"
|
145 |
d="m 39.015992,13.876376 c -0.332293,0 -2.044282,-1.274556 -2.044282,-1.274556 v -0.140045 c 0,-0.173526 0.152449,-0.314357 0.340629,-0.314357 h 3.407305 c 0.188349,0 0.340798,0.140831 0.340798,0.314357 l -0.0027,0.157177 c 0,0 -1.693445,1.257424 -2.041729,1.257424 z m 0,0.432239 c 0.364277,0 2.041729,-1.218129 2.041729,-1.218129 l 0.0027,1.886136 c 0,0.173524 -0.152449,0.314356 -0.340798,0.314356 h -3.407306 c -0.188009,0 -0.340628,-0.140832 -0.340628,-0.314356 l 0.0027,-1.886136 c -1.7e-4,0 1.709266,1.218129 2.041559,1.218129 z"
|
@@ -154,6 +139,11 @@
|
|
154 |
y="-7.8367906"
|
155 |
ry="0"
|
156 |
transform="rotate(45)" />
|
|
|
|
|
|
|
|
|
|
|
157 |
</g>
|
158 |
<rect
|
159 |
y="31.869553"
|
27 |
inkscape:pageopacity="0.0"
|
28 |
inkscape:pageshadow="2"
|
29 |
inkscape:zoom="2.8"
|
30 |
+
inkscape:cx="49.250323"
|
31 |
+
inkscape:cy="171.3467"
|
32 |
inkscape:document-units="px"
|
33 |
+
inkscape:current-layer="g6913"
|
34 |
showgrid="false"
|
35 |
units="px"
|
36 |
inkscape:window-width="1920"
|
46 |
<dc:format>image/svg+xml</dc:format>
|
47 |
<dc:type
|
48 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
49 |
+
<dc:title />
|
50 |
</cc:Work>
|
51 |
</rdf:RDF>
|
52 |
</metadata>
|
85 |
y="30.661106"
|
86 |
x="1.6704345"
|
87 |
id="tspan6805"
|
88 |
+
sodipodi:role="line" /></text>
|
89 |
<text
|
90 |
id="text6813"
|
91 |
y="42.354149"
|
96 |
y="42.354149"
|
97 |
x="28.063299"
|
98 |
id="tspan6811"
|
99 |
+
sodipodi:role="line" /></text>
|
100 |
<rect
|
101 |
y="25.76899"
|
102 |
x="6.1641383"
|
125 |
d="m 23.529116,12.548081 c -0.153307,0.06817 -0.318297,0.11411 -0.491412,0.134681 0.176756,-0.105814 0.312285,-0.27343 0.376198,-0.473378 -0.165327,0.09811 -0.348347,0.169304 -0.543304,0.207738 -0.156016,-0.166258 -0.3784,-0.270215 -0.624487,-0.270215 -0.472449,0 -0.855505,0.383055 -0.855505,0.855589 0,0.06696 0.0076,0.132229 0.02218,0.194964 -0.711087,-0.03577 -1.341584,-0.376286 -1.76358,-0.893942 -0.07365,0.126297 -0.115806,0.273261 -0.115806,0.430202 0,0.296799 0.151021,0.558718 0.380601,0.712105 -0.140187,-0.0048 -0.27216,-0.04301 -0.387543,-0.107084 -8.5e-5,0.0032 -8.5e-5,0.0072 -8.5e-5,0.01085 0,0.414463 0.294933,0.760185 0.68637,0.838917 -0.07179,0.01953 -0.147382,0.02998 -0.225432,0.02998 -0.05519,0 -0.10878,-0.0056 -0.161011,-0.01544 0.108949,0.339887 0.424875,0.587328 0.799211,0.594193 -0.292815,0.22949 -0.661649,0.366286 -1.062568,0.366286 -0.06899,0 -0.137138,-0.004 -0.204098,-0.01206 0.378739,0.242875 0.828416,0.384413 1.311533,0.384413 1.573788,0 2.434288,-1.303661 2.434288,-2.434288 0,-0.03706 -7.44e-4,-0.07404 -0.0024,-0.110815 0.167105,-0.12038 0.312201,-0.271139 0.426822,-0.442734 z"
|
126 |
inkscape:connector-curvature="0"
|
127 |
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.08465323" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
<path
|
129 |
id="path6891"
|
130 |
d="m 39.015992,13.876376 c -0.332293,0 -2.044282,-1.274556 -2.044282,-1.274556 v -0.140045 c 0,-0.173526 0.152449,-0.314357 0.340629,-0.314357 h 3.407305 c 0.188349,0 0.340798,0.140831 0.340798,0.314357 l -0.0027,0.157177 c 0,0 -1.693445,1.257424 -2.041729,1.257424 z m 0,0.432239 c 0.364277,0 2.041729,-1.218129 2.041729,-1.218129 l 0.0027,1.886136 c 0,0.173524 -0.152449,0.314356 -0.340798,0.314356 h -3.407306 c -0.188009,0 -0.340628,-0.140832 -0.340628,-0.314356 l 0.0027,-1.886136 c -1.7e-4,0 1.709266,1.218129 2.041559,1.218129 z"
|
139 |
y="-7.8367906"
|
140 |
ry="0"
|
141 |
transform="rotate(45)" />
|
142 |
+
<path
|
143 |
+
id="path7484"
|
144 |
+
d="m 28.949075,15.329296 h -0.8228 v -2.649672 h 0.8228 z m -0.411843,-3.011112 c -0.263048,0 -0.476498,-0.217927 -0.476498,-0.481034 0,-0.263107 0.21345,-0.476604 0.476498,-0.476604 0.263049,0 0.476499,0.213497 0.476499,0.476604 0,0.263107 -0.21345,0.481034 -0.476499,0.481034 z m 3.491369,3.011112 h -0.82103 v -1.289844 c 0,-0.307401 -0.0062,-0.701618 -0.427785,-0.701618 -0.427786,0 -0.493327,0.333977 -0.493327,0.679471 v 1.311991 h -0.821915 v -2.649672 h 0.789145 v 0.361439 h 0.01151 c 0.109825,-0.208182 0.378188,-0.42788 0.778517,-0.42788 0.832544,0 0.985767,0.54836 0.985767,1.260609 v 1.455504 z"
|
145 |
+
inkscape:connector-curvature="0"
|
146 |
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.00885783" />
|
147 |
</g>
|
148 |
<rect
|
149 |
y="31.869553"
|
admin/images/banners/widgets.svg
CHANGED
@@ -28,11 +28,11 @@
|
|
28 |
borderopacity="1.0"
|
29 |
inkscape:pageopacity="0.0"
|
30 |
inkscape:pageshadow="2"
|
31 |
-
inkscape:zoom="
|
32 |
-
inkscape:cx="
|
33 |
-
inkscape:cy="
|
34 |
inkscape:document-units="mm"
|
35 |
-
inkscape:current-layer="
|
36 |
showgrid="false"
|
37 |
units="px"
|
38 |
inkscape:window-width="1920"
|
@@ -48,7 +48,7 @@
|
|
48 |
<dc:format>image/svg+xml</dc:format>
|
49 |
<dc:type
|
50 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
51 |
-
<dc:title
|
52 |
</cc:Work>
|
53 |
</rdf:RDF>
|
54 |
</metadata>
|
@@ -62,7 +62,7 @@
|
|
62 |
transform="translate(0.13363476,-3.4076865)">
|
63 |
<g
|
64 |
id="g6429"
|
65 |
-
transform="matrix(0.86102718,0,0,0.86102718,3.271204,
|
66 |
<rect
|
67 |
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#3e5b98;stroke-width:0.24332862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
68 |
id="rect6229"
|
@@ -107,64 +107,9 @@
|
|
107 |
id="rect6254-2-7"
|
108 |
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.04898528;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
109 |
</g>
|
110 |
-
<g
|
111 |
-
id="g6438"
|
112 |
-
transform="matrix(0.85064726,0,0,0.85064726,3.3528279,33.30067)">
|
113 |
-
<rect
|
114 |
-
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#db483b;stroke-width:0.24332863;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
115 |
-
id="rect6229-3"
|
116 |
-
width="21.870955"
|
117 |
-
height="14.520201"
|
118 |
-
x="13.782822"
|
119 |
-
y="278.36874"
|
120 |
-
ry="0.47837946" />
|
121 |
-
<path
|
122 |
-
style="fill:none;stroke:#3e5b98;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
123 |
-
d="m 13.660023,281.05225 h 21.782466 v 0.13364 -0.0668"
|
124 |
-
id="path6233-6"
|
125 |
-
inkscape:connector-curvature="0" />
|
126 |
-
<path
|
127 |
-
style="opacity:1;fill:#db483b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.08159009;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
128 |
-
d="m 13.810361,278.77743 c 0.124351,-0.20316 0.293379,-0.29482 0.668174,-0.39788 h 10.30658 l 10.473627,0.0256 0.400903,0.40302 0.116931,3.06264 H 24.785116 13.793657 Z"
|
129 |
-
id="path6247-2"
|
130 |
-
inkscape:connector-curvature="0"
|
131 |
-
sodipodi:nodetypes="ccccccccc" />
|
132 |
-
<rect
|
133 |
-
ry="0"
|
134 |
-
y="283.41849"
|
135 |
-
x="19.80607"
|
136 |
-
height="1.3275393"
|
137 |
-
width="12.289192"
|
138 |
-
id="rect6254-1"
|
139 |
-
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.07470983;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
140 |
-
<rect
|
141 |
-
ry="0"
|
142 |
-
y="283.36081"
|
143 |
-
x="15.450811"
|
144 |
-
height="3.4027276"
|
145 |
-
width="3.4679911"
|
146 |
-
id="rect6254-2-8"
|
147 |
-
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06353967;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
148 |
-
<rect
|
149 |
-
ry="0"
|
150 |
-
y="287.97421"
|
151 |
-
x="19.836727"
|
152 |
-
height="1.3275393"
|
153 |
-
width="12.289192"
|
154 |
-
id="rect6254-1-8"
|
155 |
-
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.07470983;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
156 |
-
<rect
|
157 |
-
ry="0"
|
158 |
-
y="287.91653"
|
159 |
-
x="15.481466"
|
160 |
-
height="3.4027278"
|
161 |
-
width="3.4679914"
|
162 |
-
id="rect6254-2-8-8"
|
163 |
-
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06353967;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
164 |
-
</g>
|
165 |
<g
|
166 |
id="g6438-7"
|
167 |
-
transform="matrix(0.85064727,0,0,0.85064727,3.
|
168 |
<rect
|
169 |
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#4da7de;stroke-width:0.24334411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
170 |
id="rect6229-3-9"
|
@@ -245,6 +190,69 @@
|
|
245 |
cy="289.28137"
|
246 |
r="1.5111734" />
|
247 |
</g>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
</g>
|
249 |
</g>
|
250 |
</svg>
|
28 |
borderopacity="1.0"
|
29 |
inkscape:pageopacity="0.0"
|
30 |
inkscape:pageshadow="2"
|
31 |
+
inkscape:zoom="2.8"
|
32 |
+
inkscape:cx="65.690567"
|
33 |
+
inkscape:cy="43.43634"
|
34 |
inkscape:document-units="mm"
|
35 |
+
inkscape:current-layer="g6252"
|
36 |
showgrid="false"
|
37 |
units="px"
|
38 |
inkscape:window-width="1920"
|
48 |
<dc:format>image/svg+xml</dc:format>
|
49 |
<dc:type
|
50 |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
51 |
+
<dc:title />
|
52 |
</cc:Work>
|
53 |
</rdf:RDF>
|
54 |
</metadata>
|
62 |
transform="translate(0.13363476,-3.4076865)">
|
63 |
<g
|
64 |
id="g6429"
|
65 |
+
transform="matrix(0.86102718,0,0,0.86102718,3.271204,32.871173)">
|
66 |
<rect
|
67 |
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#3e5b98;stroke-width:0.24332862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
68 |
id="rect6229"
|
107 |
id="rect6254-2-7"
|
108 |
style="opacity:1;fill:#e1e1e1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.04898528;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
109 |
</g>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
<g
|
111 |
id="g6438-7"
|
112 |
+
transform="matrix(0.85064727,0,0,0.85064727,3.354606,35.907624)">
|
113 |
<rect
|
114 |
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#4da7de;stroke-width:0.24334411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
115 |
id="rect6229-3-9"
|
190 |
cy="289.28137"
|
191 |
r="1.5111734" />
|
192 |
</g>
|
193 |
+
<g
|
194 |
+
id="g8220"
|
195 |
+
transform="translate(0,30.162513)">
|
196 |
+
<rect
|
197 |
+
y="261.86063"
|
198 |
+
x="15.207163"
|
199 |
+
height="4.2706032"
|
200 |
+
width="4.2706032"
|
201 |
+
id="rect7559"
|
202 |
+
style="opacity:1;fill:#3d5b98;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.11839294;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
203 |
+
<rect
|
204 |
+
y="261.86063"
|
205 |
+
x="19.98321"
|
206 |
+
height="4.2706032"
|
207 |
+
width="4.2706032"
|
208 |
+
id="rect7559-7"
|
209 |
+
style="opacity:1;fill:#4da7de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.11839294;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
210 |
+
<rect
|
211 |
+
y="261.86063"
|
212 |
+
x="24.759256"
|
213 |
+
height="4.2706032"
|
214 |
+
width="4.2706032"
|
215 |
+
id="rect7559-7-8"
|
216 |
+
style="opacity:1;fill:#cb2027;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.11839294;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
217 |
+
<rect
|
218 |
+
y="261.86063"
|
219 |
+
x="29.535301"
|
220 |
+
height="4.2706032"
|
221 |
+
width="4.2706032"
|
222 |
+
id="rect7559-7-8-8"
|
223 |
+
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.11839294;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
224 |
+
<path
|
225 |
+
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.0405358"
|
226 |
+
inkscape:connector-curvature="0"
|
227 |
+
d="m 17.820782,263.82318 h -0.309896 v -0.20325 c 0,-0.0763 0.05059,-0.0941 0.08622,-0.0941 0.03555,0 0.218691,0 0.218691,0 v -0.33555 l -0.301182,-9.6e-4 c -0.334339,0 -0.410425,0.25028 -0.410425,0.41043 v 0.22367 h -0.193356 v 0.34578 h 0.193356 c 0,0.44374 0,0.97841 0,0.97841 h 0.406696 c 0,0 0,-0.53994 0,-0.97841 h 0.274427 z"
|
228 |
+
id="path5280" />
|
229 |
+
<path
|
230 |
+
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0.03861259"
|
231 |
+
inkscape:connector-curvature="0"
|
232 |
+
d="m 23.104415,263.5978 c -0.06993,0.031 -0.145182,0.0521 -0.224145,0.0614 0.08063,-0.0482 0.142441,-0.12472 0.171594,-0.21592 -0.07541,0.0448 -0.15889,0.0772 -0.247816,0.0948 -0.07116,-0.0758 -0.172598,-0.12325 -0.284845,-0.12325 -0.215496,0 -0.390218,0.17472 -0.390218,0.39025 0,0.0306 0.0034,0.0603 0.01011,0.0889 -0.324346,-0.0163 -0.611932,-0.17164 -0.804416,-0.40775 -0.03359,0.0576 -0.05282,0.12464 -0.05282,0.19623 0,0.13537 0.06889,0.25484 0.173602,0.32481 -0.06395,-0.003 -0.124139,-0.0196 -0.17677,-0.0488 -3.8e-5,9.6e-4 -3.8e-5,0.003 -3.8e-5,0.005 0,0.18904 0.134527,0.34673 0.313072,0.38265 -0.03274,0.009 -0.06722,0.0137 -0.102825,0.0137 -0.02517,0 -0.04962,-0.002 -0.07344,-0.007 0.0497,0.15503 0.193797,0.2679 0.364541,0.27102 -0.133561,0.10469 -0.301795,0.16708 -0.484665,0.16708 -0.03147,0 -0.06255,-0.002 -0.09309,-0.006 0.172753,0.11078 0.377863,0.17534 0.598225,0.17534 0.717846,0 1.110343,-0.59463 1.110343,-1.11035 0,-0.0169 -3.32e-4,-0.0338 -10e-4,-0.0505 0.07622,-0.0549 0.142404,-0.12367 0.194685,-0.20194 z"
|
233 |
+
id="path5290" />
|
234 |
+
<path
|
235 |
+
style="clip-rule:evenodd;display:inline;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.0771907"
|
236 |
+
inkscape:connector-curvature="0"
|
237 |
+
d="m 31.871304,264.31595 c -0.156849,0 -0.964943,-0.60161 -0.964943,-0.60161 v -0.0661 c 0,-0.0818 0.07196,-0.14837 0.160784,-0.14837 h 1.608319 c 0.08891,0 0.160862,0.0665 0.160862,0.14837 l -0.0012,0.0742 c 0,0 -0.799341,0.59353 -0.963739,0.59353 z m 0,0.20403 c 0.171947,0 0.963739,-0.57498 0.963739,-0.57498 l 0.0012,0.8903 c 0,0.0818 -0.07196,0.14838 -0.160864,0.14838 h -1.608327 c -0.08874,0 -0.160783,-0.0665 -0.160783,-0.14838 l 0.0012,-0.8903 c -8e-5,0 0.806809,0.57498 0.963658,0.57498 z"
|
238 |
+
id="path6891" />
|
239 |
+
<path
|
240 |
+
style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:0.0038267"
|
241 |
+
inkscape:connector-curvature="0"
|
242 |
+
d="m 28.003355,264.13821 c 0,0.52425 -0.424764,0.94902 -0.949022,0.94902 -0.09796,0 -0.192101,-0.0149 -0.28088,-0.0425 0.03865,-0.0631 0.09643,-0.16647 0.117862,-0.24874 0.01148,-0.0444 0.05893,-0.22577 0.05893,-0.22577 0.031,0.0589 0.121307,0.10905 0.217356,0.10905 0.286238,0 0.492497,-0.26327 0.492497,-0.59046 0,-0.31341 -0.256006,-0.54798 -0.585103,-0.54798 -0.409457,0 -0.627196,0.27476 -0.627196,0.57439 0,0.13929 0.07423,0.31264 0.192483,0.36774 0.01799,0.009 0.02756,0.005 0.03176,-0.0126 0.0031,-0.013 0.01913,-0.0777 0.0264,-0.10753 0.0023,-0.01 0.0011,-0.0179 -0.0065,-0.0272 -0.03866,-0.0478 -0.07003,-0.13508 -0.07003,-0.21659 0,-0.20932 0.158425,-0.41176 0.42859,-0.41176 0.233046,0 0.396447,0.15882 0.396447,0.38612 0,0.25677 -0.129725,0.43472 -0.298483,0.43472 -0.09299,0 -0.163017,-0.0769 -0.140439,-0.17145 0.02678,-0.11288 0.07845,-0.23457 0.07845,-0.31607 0,-0.0727 -0.03904,-0.13356 -0.120159,-0.13356 -0.09529,0 -0.17182,0.0983 -0.17182,0.23037 0,0.0842 0.02832,0.14082 0.02832,0.14082 0,0 -0.09375,0.39721 -0.110974,0.47146 -0.01913,0.0819 -0.01148,0.19745 -0.0034,0.27245 -0.352822,-0.13814 -0.603088,-0.48178 -0.603088,-0.88396 0,-0.52426 0.424764,-0.94903 0.949022,-0.94903 0.524259,0 0.949023,0.42477 0.949023,0.94903 z"
|
243 |
+
id="path5074" />
|
244 |
+
<text
|
245 |
+
id="text8208"
|
246 |
+
y="259.7493"
|
247 |
+
x="14.972466"
|
248 |
+
style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:5.64885426px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
249 |
+
xml:space="preserve"><tspan
|
250 |
+
style="stroke-width:0.26458332"
|
251 |
+
y="259.7493"
|
252 |
+
x="14.972466"
|
253 |
+
id="tspan8206"
|
254 |
+
sodipodi:role="line">Follow me</tspan></text>
|
255 |
+
</g>
|
256 |
</g>
|
257 |
</g>
|
258 |
</svg>
|
admin/js/script.js
CHANGED
@@ -753,7 +753,7 @@ jQuery(document).ready(function(){
|
|
753 |
//console.log( $data );
|
754 |
|
755 |
$popup = $( '.item_popup' ).show();
|
756 |
-
$popup.find( 'h4' ).text( sb_sites[ $item.data( 'id' ) ][ 'name' ] );
|
757 |
$cnt = $( '.item_popup_cnt' ).empty().append( '<table class="form-table"></table>' );
|
758 |
$tbl = $cnt.find( 'table' );
|
759 |
|
@@ -769,7 +769,7 @@ jQuery(document).ready(function(){
|
|
769 |
|
770 |
$wrap = $( '<tr><th></th><td></td></tr>' );
|
771 |
$checkbox = $( '<input type="checkbox" value="1" />' );
|
772 |
-
$text = $( '<input type="text" />' );
|
773 |
|
774 |
helper = sb_site_options[ the_opt ][ 'helper' ];
|
775 |
type = sb_site_options[ the_opt ][ 'type' ];
|
753 |
//console.log( $data );
|
754 |
|
755 |
$popup = $( '.item_popup' ).show();
|
756 |
+
$popup.find( 'h4' ).text( sb_sites[ $item.data( 'id' ) ][ 'name' ] + ' icon (Advanced settings)' );
|
757 |
$cnt = $( '.item_popup_cnt' ).empty().append( '<table class="form-table"></table>' );
|
758 |
$tbl = $cnt.find( 'table' );
|
759 |
|
769 |
|
770 |
$wrap = $( '<tr><th></th><td></td></tr>' );
|
771 |
$checkbox = $( '<input type="checkbox" value="1" />' );
|
772 |
+
$text = $( '<input type="text" class="widefat" />' );
|
773 |
|
774 |
helper = sb_site_options[ the_opt ][ 'helper' ];
|
775 |
type = sb_site_options[ the_opt ][ 'type' ];
|
admin/mobile_sharebar.php
CHANGED
@@ -77,6 +77,9 @@ class wpsr_admin_mobile_sharebar{
|
|
77 |
echo '<ul class="ssb_selected_list clearfix">';
|
78 |
if( count( $msb_btns ) > 0 ){
|
79 |
foreach( $msb_btns as $msb_item ){
|
|
|
|
|
|
|
80 |
$sb_info = $sb_sites[ $msb_item ];
|
81 |
echo '<li title="' . $sb_info[ 'name' ] . '" data-id="' . $msb_item . '" style="background-color:' . $sb_info['colors'][0] . '"><i class="' . $sb_info[ 'icon' ] . '"></i> <span class="ssb_remove" title="' . __( 'Delete button', 'wpsr' ) . '">x</span></li>';
|
82 |
}
|
77 |
echo '<ul class="ssb_selected_list clearfix">';
|
78 |
if( count( $msb_btns ) > 0 ){
|
79 |
foreach( $msb_btns as $msb_item ){
|
80 |
+
if( !array_key_exists( $msb_item, $sb_sites ) ){
|
81 |
+
continue;
|
82 |
+
}
|
83 |
$sb_info = $sb_sites[ $msb_item ];
|
84 |
echo '<li title="' . $sb_info[ 'name' ] . '" data-id="' . $msb_item . '" style="background-color:' . $sb_info['colors'][0] . '"><i class="' . $sb_info[ 'icon' ] . '"></i> <span class="ssb_remove" title="' . __( 'Delete button', 'wpsr' ) . '">x</span></li>';
|
85 |
}
|
core/lists.php
CHANGED
@@ -281,16 +281,6 @@ class WPSR_Lists{
|
|
281 |
'colors' => array( '#3A7CEC' ),
|
282 |
),
|
283 |
|
284 |
-
'googleplus' => array(
|
285 |
-
'name' => 'Google Plus',
|
286 |
-
'title' => __('Share this on ', 'wpsr') . 'Google Plus',
|
287 |
-
'icon' => array('fa4'=> 'fa fa-google-plus', 'fa5' => 'fab fa-google-plus-g'),
|
288 |
-
'link' => 'https://plus.google.com/share?url={url}',
|
289 |
-
'options' => array( 'count' ),
|
290 |
-
'features' => array( 'for_share', 'for_profile' ),
|
291 |
-
'colors' => array( '#DB483B' ),
|
292 |
-
),
|
293 |
-
|
294 |
'hackernews' => array(
|
295 |
'name' => 'Hacker News',
|
296 |
'title' => __('Share this on ', 'wpsr') . 'HackerNews',
|
281 |
'colors' => array( '#3A7CEC' ),
|
282 |
),
|
283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
'hackernews' => array(
|
285 |
'name' => 'Hacker News',
|
286 |
'title' => __('Share this on ', 'wpsr') . 'HackerNews',
|
core/location_rules.php
CHANGED
@@ -58,7 +58,7 @@ class WPSR_Location_Rules{
|
|
58 |
'callback' => array( __CLASS__, 'rule_post_type' ),
|
59 |
'placeholder' => 'Select available post type',
|
60 |
'helper' => 1,
|
61 |
-
'children' => array( 'has-category', 'has-tag' )
|
62 |
),
|
63 |
|
64 |
'post-format' => array(
|
@@ -330,7 +330,7 @@ class WPSR_Location_Rules{
|
|
330 |
$loc_operators .= '<option value="' . $v[0] . '" ' . $s . '>' . $v[1] . '</option>';
|
331 |
}
|
332 |
|
333 |
-
$rule = '<div class="loc_rule_wrap"><select class="loc_page">' . $loc_pages . '</select><select class="loc_operator">' . $loc_operators . '</select><input type="text" class="loc_value" value="' . $val[2] . '" placeholder="" title="' . __( 'Leave empty to show in all', 'wpsr' ) . '"/><a href="#" class="button loc_rule_add" title="' . __( 'Add another criteria to match', 'wpsr' ) . '"
|
334 |
|
335 |
if( $grp ) return '<div class="loc_group_wrap">' . $rule . '</div>';
|
336 |
else return $rule;
|
58 |
'callback' => array( __CLASS__, 'rule_post_type' ),
|
59 |
'placeholder' => 'Select available post type',
|
60 |
'helper' => 1,
|
61 |
+
'children' => array( 'single', 'page', 'has-category', 'has-tag' )
|
62 |
),
|
63 |
|
64 |
'post-format' => array(
|
330 |
$loc_operators .= '<option value="' . $v[0] . '" ' . $s . '>' . $v[1] . '</option>';
|
331 |
}
|
332 |
|
333 |
+
$rule = '<div class="loc_rule_wrap"><select class="loc_page">' . $loc_pages . '</select><select class="loc_operator">' . $loc_operators . '</select><input type="text" class="loc_value" value="' . $val[2] . '" placeholder="" title="' . __( 'Leave empty to show in all', 'wpsr' ) . '"/><a href="#" class="button loc_rule_add" title="' . __( 'Add another criteria to match', 'wpsr' ) . '">and</a><a href="#" class="button loc_rule_remove" title="' . __( 'Remove criteria', 'wpsr' ) . '"><i class="fas fa-minus"></i></a></div>';
|
334 |
|
335 |
if( $grp ) return '<div class="loc_group_wrap">' . $rule . '</div>';
|
336 |
else return $rule;
|
core/share_counter.php
CHANGED
@@ -24,10 +24,6 @@ class WPSR_Share_Counter{
|
|
24 |
'name' => 'Facebook',
|
25 |
'callback' => array( __CLASS__, 'facebook_count' )
|
26 |
),
|
27 |
-
'googleplus' => array(
|
28 |
-
'name' => 'Google Plus',
|
29 |
-
'callback' => array( __CLASS__, 'googleplus_count' )
|
30 |
-
),
|
31 |
'linkedin' => array(
|
32 |
'name' => 'Linked In',
|
33 |
'callback' => array( __CLASS__, 'linkedin_count' )
|
@@ -35,11 +31,7 @@ class WPSR_Share_Counter{
|
|
35 |
'pinterest' => array(
|
36 |
'name' => 'Pinterest',
|
37 |
'callback' => array( __CLASS__, 'pinterest_count' )
|
38 |
-
)
|
39 |
-
'stumbleupon' => array(
|
40 |
-
'name' => 'StumbleUpon',
|
41 |
-
'callback' => array( __CLASS__, 'stumbleupon_count' )
|
42 |
-
),
|
43 |
));
|
44 |
|
45 |
}
|
@@ -262,43 +254,6 @@ class WPSR_Share_Counter{
|
|
262 |
|
263 |
}
|
264 |
|
265 |
-
public static function stumbleupon_count( $url ){
|
266 |
-
|
267 |
-
$api = 'http://www.stumbleupon.com/services/1.01/badge.getinfo?url=' . $url;
|
268 |
-
$data = self::remote_request_json( $api );
|
269 |
-
|
270 |
-
if( $data == false ){
|
271 |
-
return 0;
|
272 |
-
}else{
|
273 |
-
if( isset( $data->result->views ) ){
|
274 |
-
return $data->result->views;
|
275 |
-
}else{
|
276 |
-
return 0;
|
277 |
-
}
|
278 |
-
}
|
279 |
-
|
280 |
-
}
|
281 |
-
|
282 |
-
public static function googleplus_count( $url ){
|
283 |
-
|
284 |
-
$api = 'https://clients6.google.com/rpc';
|
285 |
-
$data = self::remote_request_json( $api, 'post', array(
|
286 |
-
'body' => '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . $url . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]',
|
287 |
-
'headers' => array("Content-type" => "application/json")
|
288 |
-
));
|
289 |
-
|
290 |
-
if( $data == false ){
|
291 |
-
return 0;
|
292 |
-
}else{
|
293 |
-
if( isset( $data[0]->result->metadata->globalCounts->count ) ){
|
294 |
-
return $data[0]->result->metadata->globalCounts->count;
|
295 |
-
}else{
|
296 |
-
return 0;
|
297 |
-
}
|
298 |
-
}
|
299 |
-
|
300 |
-
}
|
301 |
-
|
302 |
public static function pinterest_count( $url ){
|
303 |
|
304 |
$api = 'http://api.pinterest.com/v1/urls/count.json?callback=wpsr&url=' . $url;
|
24 |
'name' => 'Facebook',
|
25 |
'callback' => array( __CLASS__, 'facebook_count' )
|
26 |
),
|
|
|
|
|
|
|
|
|
27 |
'linkedin' => array(
|
28 |
'name' => 'Linked In',
|
29 |
'callback' => array( __CLASS__, 'linkedin_count' )
|
31 |
'pinterest' => array(
|
32 |
'name' => 'Pinterest',
|
33 |
'callback' => array( __CLASS__, 'pinterest_count' )
|
34 |
+
)
|
|
|
|
|
|
|
|
|
35 |
));
|
36 |
|
37 |
}
|
254 |
|
255 |
}
|
256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
public static function pinterest_count( $url ){
|
258 |
|
259 |
$api = 'http://api.pinterest.com/v1/urls/count.json?callback=wpsr&url=' . $url;
|
core/templates.php
CHANGED
@@ -50,10 +50,11 @@ class WPSR_Template_Buttons{
|
|
50 |
|
51 |
// Apply filters on the template rows
|
52 |
$rows = apply_filters( 'wpsr_mod_buttons_template', $rows );
|
|
|
53 |
|
54 |
foreach( $rows as $row ){
|
55 |
if( count( $row->buttons ) > 0 ){
|
56 |
-
$html .= '<div class="wp-socializer wpsr-buttons"' . $min_on_width . '>';
|
57 |
foreach( $row->buttons as $button ){
|
58 |
$btn_id = key( ( array )$button );
|
59 |
array_push( $row_buttons, $btn_id );
|
@@ -69,14 +70,15 @@ class WPSR_Template_Buttons{
|
|
69 |
$wrap_tag = 0;
|
70 |
}
|
71 |
|
72 |
-
$classes = apply_filters( 'wpsr_mod_button_classes', array( 'wpsr-btn', 'wpsr-srvc-' . $service_id ) );
|
73 |
$classes = join( ' ', $classes );
|
74 |
|
75 |
$btn_html = WPSR_Buttons::get_button( $btn_id, $page_info );
|
76 |
-
$html .= $wrap_tag ? '<
|
77 |
}
|
78 |
$html .= '</div>';
|
79 |
}
|
|
|
80 |
}
|
81 |
|
82 |
$out = array(
|
50 |
|
51 |
// Apply filters on the template rows
|
52 |
$rows = apply_filters( 'wpsr_mod_buttons_template', $rows );
|
53 |
+
$row_id = 1;
|
54 |
|
55 |
foreach( $rows as $row ){
|
56 |
if( count( $row->buttons ) > 0 ){
|
57 |
+
$html .= '<div class="wp-socializer wpsr-buttons wpsr-row-' . $row_id . '"' . $min_on_width . '>';
|
58 |
foreach( $row->buttons as $button ){
|
59 |
$btn_id = key( ( array )$button );
|
60 |
array_push( $row_buttons, $btn_id );
|
70 |
$wrap_tag = 0;
|
71 |
}
|
72 |
|
73 |
+
$classes = apply_filters( 'wpsr_mod_button_classes', array( 'wpsr-btn', 'wpsr-srvc-' . $service_id, 'wpsr-btn-' . $btn_id ) );
|
74 |
$classes = join( ' ', $classes );
|
75 |
|
76 |
$btn_html = WPSR_Buttons::get_button( $btn_id, $page_info );
|
77 |
+
$html .= $wrap_tag ? '<div class="' . esc_attr( $classes ) . '">' . $btn_html . '</div>' : $btn_html;
|
78 |
}
|
79 |
$html .= '</div>';
|
80 |
}
|
81 |
+
$row_id += 1;
|
82 |
}
|
83 |
|
84 |
$out = array(
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://goo.gl/qMF3iE
|
|
4 |
Tags: sharing, social media icons, share icons, share buttons, follow buttons, widgets, floating share buttons, profile buttons, mobile sharebar, profile icons, social bar, share counter, excerpt, shortcode, linkedin, pinterest, pocket, reddit, sharethis, addthis, whatsapp, tweet, vkontakte, socializer, wp socializer, weibo, line, mix, odnoklassniki, renren, skype
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -20,7 +20,7 @@ WP Socializer is an all in one complete social media plugin to add native social
|
|
20 |
* Add icons easily using the **setup wizard**.
|
21 |
* Display the icons, buttons only on the required posts, pages using the advanced **conditional rules builder system**.
|
22 |
* Insert **50 social share icons** which are highly scalable.
|
23 |
-
* Insert **
|
24 |
* Insert both **vertical and horizontal floating sharebars**.
|
25 |
* Insert **50 follow me icons** in floating bar and widgets.
|
26 |
* Insert **text sharebar** with 11 social network support.
|
@@ -69,7 +69,6 @@ WP Socializer supports share counter. Share counter can be either displayed indi
|
|
69 |
|
70 |
* Facebook like counts
|
71 |
* LinkedIn share counts
|
72 |
-
* Google Plus +1s
|
73 |
* Pinterest counts
|
74 |
* Total share counts
|
75 |
|
@@ -101,7 +100,7 @@ Show/hide based on:
|
|
101 |
|
102 |
= Supported social media icons =
|
103 |
|
104 |
-
Add to favorites, Behance, Bitbucket, Blogger, CodePen, Comments, Delicious, DeviantArt, Digg, Dribbble, Email, Facebook, Facebook messenger, Flickr, Github, Google,
|
105 |
|
106 |
Social share icon designs:
|
107 |
|
@@ -118,7 +117,7 @@ Social share icon designs:
|
|
118 |
|
119 |
With WP Socializer plugin, you can add the native share buttons provided by leading social media websites. Buttons settings can be changed inside the admin page itself. All kinds of native social buttons from the below providers can be created.
|
120 |
|
121 |
-
* Facebook, Twitter
|
122 |
* Reddit, LinkedIn, Sharethis
|
123 |
* Pinterest & Pocket
|
124 |
|
@@ -139,7 +138,6 @@ WP Socializer can also be used to insert widgets to WordPress sidebar. Below lis
|
|
139 |
There is also support for shortcodes with which social media buttons can be placed anywhere in posts and even in themes directly. The list of social buttons which can be inserted can be seen below.
|
140 |
|
141 |
* Facebook, Twitter
|
142 |
-
* Google Plus
|
143 |
* Reddit, LinkedIn
|
144 |
* Sharethis, Pinterest
|
145 |
* Pocket & 50 social media icons
|
@@ -225,6 +223,14 @@ Please refer [this page](https://goo.gl/Ge7riC) for the full list of FAQs.
|
|
225 |
|
226 |
== Changelog ==
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
= 4.1.4 =
|
229 |
* Fix: Twitter share button was not working.
|
230 |
* Fix: Help text given to follow bar editing page.
|
4 |
Tags: sharing, social media icons, share icons, share buttons, follow buttons, widgets, floating share buttons, profile buttons, mobile sharebar, profile icons, social bar, share counter, excerpt, shortcode, linkedin, pinterest, pocket, reddit, sharethis, addthis, whatsapp, tweet, vkontakte, socializer, wp socializer, weibo, line, mix, odnoklassniki, renren, skype
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 4.1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
20 |
* Add icons easily using the **setup wizard**.
|
21 |
* Display the icons, buttons only on the required posts, pages using the advanced **conditional rules builder system**.
|
22 |
* Insert **50 social share icons** which are highly scalable.
|
23 |
+
* Insert **8 native social button** widgets ( i.e Facebook, Twitter etc. +6 )
|
24 |
* Insert both **vertical and horizontal floating sharebars**.
|
25 |
* Insert **50 follow me icons** in floating bar and widgets.
|
26 |
* Insert **text sharebar** with 11 social network support.
|
69 |
|
70 |
* Facebook like counts
|
71 |
* LinkedIn share counts
|
|
|
72 |
* Pinterest counts
|
73 |
* Total share counts
|
74 |
|
100 |
|
101 |
= Supported social media icons =
|
102 |
|
103 |
+
Add to favorites, Behance, Bitbucket, Blogger, CodePen, Comments, Delicious, DeviantArt, Digg, Dribbble, Email, Facebook, Facebook messenger, Flickr, Github, Google, Hacker News, Instagram, LinkedIn, Medium, PayPal, PDF, Pinterest, Pocket, Print, Reddit, RSS, Short link, Snapchat, Soundcloud, StackOverflow, Quora, Telegram, Tumblr, Twitter, Vimeo, VKontakte, wechat, WhatsApp, Xing, Yahoo! Mail, Youtube, Weibo, Line, Mix, Odnoklassniki, Renren, Skype, Telephone/call button
|
104 |
|
105 |
Social share icon designs:
|
106 |
|
117 |
|
118 |
With WP Socializer plugin, you can add the native share buttons provided by leading social media websites. Buttons settings can be changed inside the admin page itself. All kinds of native social buttons from the below providers can be created.
|
119 |
|
120 |
+
* Facebook, Twitter
|
121 |
* Reddit, LinkedIn, Sharethis
|
122 |
* Pinterest & Pocket
|
123 |
|
138 |
There is also support for shortcodes with which social media buttons can be placed anywhere in posts and even in themes directly. The list of social buttons which can be inserted can be seen below.
|
139 |
|
140 |
* Facebook, Twitter
|
|
|
141 |
* Reddit, LinkedIn
|
142 |
* Sharethis, Pinterest
|
143 |
* Pocket & 50 social media icons
|
223 |
|
224 |
== Changelog ==
|
225 |
|
226 |
+
= 4.1.5 =
|
227 |
+
* Fix: Google Plus icon, buttons, social count removed.
|
228 |
+
* Fix: Social icons advanced settings not applied properly.
|
229 |
+
* Fix: Refine UI for social icon settings
|
230 |
+
* Fix: Refine UI for location rules settings
|
231 |
+
* New: Added post id selection sub category for post type location rule.
|
232 |
+
* New: Added ID to class names for share buttons and template rows.
|
233 |
+
|
234 |
= 4.1.4 =
|
235 |
* Fix: Twitter share button was not working.
|
236 |
* Fix: Help text given to follow bar editing page.
|
services/google_plus.php
DELETED
@@ -1,255 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Google Plus service for WP Socializer
|
4 |
-
*
|
5 |
-
*/
|
6 |
-
|
7 |
-
class wpsr_service_google_plus{
|
8 |
-
|
9 |
-
function __construct(){
|
10 |
-
|
11 |
-
add_filter( 'wpsr_register_service', array( $this, 'register' ) );
|
12 |
-
|
13 |
-
$this->default_values = array(
|
14 |
-
'size' => 'standard',
|
15 |
-
'annotation' => 'inline',
|
16 |
-
'width' => '',
|
17 |
-
);
|
18 |
-
|
19 |
-
}
|
20 |
-
|
21 |
-
function register( $services ){
|
22 |
-
|
23 |
-
$services[ 'google_plus' ] = array(
|
24 |
-
'name' => 'Google Plus',
|
25 |
-
'icons' => WPSR_ADMIN_URL . '/images/icons/google-plus.png',
|
26 |
-
'desc' => __( 'Create Google Plus +1 buttons', 'wpsr' ),
|
27 |
-
'settings' => array( 'size' => '500x280' ),
|
28 |
-
'callbacks' => array(
|
29 |
-
'output' => array( $this, 'output' ),
|
30 |
-
'includes' => array( $this, 'includes' ),
|
31 |
-
'settings' => array( $this, 'settings' ),
|
32 |
-
'validation' => array( $this, 'validation' ),
|
33 |
-
'general_settings' => array( $this, 'general_settings' ),
|
34 |
-
'general_settings_validation' => array( $this, 'general_settings_validation' ),
|
35 |
-
'templates' => array( $this, 'templates' )
|
36 |
-
)
|
37 |
-
);
|
38 |
-
|
39 |
-
return $services;
|
40 |
-
|
41 |
-
}
|
42 |
-
|
43 |
-
function output( $settings = array(), $page_info = array() ){
|
44 |
-
|
45 |
-
$out = array();
|
46 |
-
$settings = WPSR_Lists::set_defaults( $settings, $this->default_values );
|
47 |
-
|
48 |
-
$width = ( $settings[ 'annotation' ] == 'inline' ) ? 'data-width="' . esc_attr( $settings[ 'width' ] ) . '"' : '';
|
49 |
-
|
50 |
-
$out['html'] = '<div class="g-plusone" data-size="' . esc_attr( $settings[ 'size' ] ) . '" data-annotation="' . esc_attr( $settings['annotation'] ) . '" ' . $width . '></div>';
|
51 |
-
|
52 |
-
$out['includes'] = array( 'google_plus_main_js' );
|
53 |
-
return $out;
|
54 |
-
|
55 |
-
}
|
56 |
-
|
57 |
-
function includes(){
|
58 |
-
|
59 |
-
$gs = WPSR_Lists::set_defaults( get_option( 'wpsr_general_settings' ), WPSR_Lists::defaults( 'gsettings_googleplus' ) );
|
60 |
-
$lang_code = $gs[ 'googleplus_lang' ];
|
61 |
-
|
62 |
-
$lang_var = '';
|
63 |
-
if( $lang_code != 'en-US' ){
|
64 |
-
$lang_var = '{lang: "' . $lang_code . '"}';
|
65 |
-
}
|
66 |
-
|
67 |
-
$includes = array(
|
68 |
-
'google_plus_main_js' => array(
|
69 |
-
'type' => 'js',
|
70 |
-
'code' => '<script src="https://apis.google.com/js/platform.js" async defer>' . $lang_var . '</script>'
|
71 |
-
)
|
72 |
-
);
|
73 |
-
|
74 |
-
return $includes;
|
75 |
-
|
76 |
-
}
|
77 |
-
|
78 |
-
function settings( $values ){
|
79 |
-
|
80 |
-
$values = WPSR_Lists::set_defaults( $values, $this->default_values );
|
81 |
-
|
82 |
-
$section1 = array(
|
83 |
-
array( __( 'Button size', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
84 |
-
'name' => 'o[size]',
|
85 |
-
'value' => $values['size'],
|
86 |
-
'list' => array(
|
87 |
-
'small' => 'Small',
|
88 |
-
'medium' => 'Medium',
|
89 |
-
'standard' => 'Standard',
|
90 |
-
'tall' => 'Tall'
|
91 |
-
),
|
92 |
-
'tip' => WPSR_ADMIN_URL . '/images/tips/googleplus-sizes.png'
|
93 |
-
))),
|
94 |
-
|
95 |
-
array( __( 'Bubble type', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
96 |
-
'name' => 'o[annotation]',
|
97 |
-
'value' => $values['annotation'],
|
98 |
-
'class' => 'gp_bubble_type',
|
99 |
-
'list' => array(
|
100 |
-
'bubble' => 'Normal',
|
101 |
-
'inline' => 'Full',
|
102 |
-
'none' => 'None'
|
103 |
-
)
|
104 |
-
))),
|
105 |
-
|
106 |
-
array( __( 'Width of button', 'wpsr' ), WPSR_Admin::field( 'text', array(
|
107 |
-
'type' => 'number',
|
108 |
-
'name' => 'o[width]',
|
109 |
-
'value' => $values['width'],
|
110 |
-
'placeholder' => __( 'Width in pixels', 'wpsr' )
|
111 |
-
)), 'data-conditioner data-condr-input=".gp_bubble_type" data-condr-value="inline" data-condr-action="simple?show:hide" data-condr-events="click"'),
|
112 |
-
|
113 |
-
);
|
114 |
-
|
115 |
-
WPSR_Admin::build_table( $section1, '', '', true);
|
116 |
-
|
117 |
-
echo '<script>if( jQuery.fn.conditioner ) jQuery("[data-conditioner]").conditioner();</script>';
|
118 |
-
|
119 |
-
}
|
120 |
-
|
121 |
-
function validation( $values ){
|
122 |
-
|
123 |
-
return $values;
|
124 |
-
|
125 |
-
}
|
126 |
-
|
127 |
-
function general_settings( $values ){
|
128 |
-
|
129 |
-
$values = WPSR_Lists::set_defaults( $values, WPSR_Lists::defaults( 'gsettings_googleplus' ) );
|
130 |
-
|
131 |
-
$section1 = array(
|
132 |
-
array( __( 'Google Plus language', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
133 |
-
'name' => 'googleplus_lang',
|
134 |
-
'value' => $values['googleplus_lang'],
|
135 |
-
'list' => WPSR_Lists::lang_codes( 'google_plus' )
|
136 |
-
))),
|
137 |
-
);
|
138 |
-
|
139 |
-
WPSR_Admin::build_table( $section1, 'Google Plus settings');
|
140 |
-
|
141 |
-
}
|
142 |
-
|
143 |
-
function general_settings_validation( $values ){
|
144 |
-
return $values;
|
145 |
-
}
|
146 |
-
|
147 |
-
function templates(){
|
148 |
-
|
149 |
-
return array(
|
150 |
-
'gp_hl'=> array(
|
151 |
-
'settings'=> array(
|
152 |
-
'size'=> 'medium',
|
153 |
-
'annotation'=> 'bubble'
|
154 |
-
)
|
155 |
-
),
|
156 |
-
'gp_vl'=> array(
|
157 |
-
'settings'=> array(
|
158 |
-
'size'=> 'tall',
|
159 |
-
'annotation'=> 'bubble'
|
160 |
-
)
|
161 |
-
),
|
162 |
-
'gp_hl_lg'=> array(
|
163 |
-
'settings'=> array(
|
164 |
-
'size'=> 'standard',
|
165 |
-
'annotation'=> 'bubble'
|
166 |
-
)
|
167 |
-
),
|
168 |
-
'gp_hl_nc'=> array(
|
169 |
-
'settings'=> array(
|
170 |
-
'size'=> 'medium',
|
171 |
-
'annotation'=> 'none'
|
172 |
-
)
|
173 |
-
)
|
174 |
-
);
|
175 |
-
|
176 |
-
}
|
177 |
-
|
178 |
-
}
|
179 |
-
|
180 |
-
new wpsr_service_google_plus();
|
181 |
-
|
182 |
-
/**
|
183 |
-
* Google Plus widget
|
184 |
-
*/
|
185 |
-
|
186 |
-
class wpsr_widget_googleplus{
|
187 |
-
|
188 |
-
function __construct(){
|
189 |
-
|
190 |
-
WPSR_Widgets::register( 'googleplus', array(
|
191 |
-
'name' => 'Google Plus badge',
|
192 |
-
'banner' => WPSR_ADMIN_URL . '/images/widgets/google-plus.png',
|
193 |
-
'description' => __( 'The native Google Plus widget to promote a Google Plus page or person', 'wpsr' ),
|
194 |
-
'callbacks' => array(
|
195 |
-
'widget' => array( $this, 'widget' ),
|
196 |
-
'form' => array( $this, 'form' ),
|
197 |
-
'update' => array( $this, 'update' )
|
198 |
-
)
|
199 |
-
));
|
200 |
-
|
201 |
-
$this->defaults = array(
|
202 |
-
'gp_widget_url' => '',
|
203 |
-
'gp_widget_layout' => 'potrait',
|
204 |
-
'gp_widget_width' => '300',
|
205 |
-
'gp_widget_theme' => 'light',
|
206 |
-
'gp_widget_cover_photo' => 'true',
|
207 |
-
'gp_widget_tag_line' => 'true',
|
208 |
-
'gp_widget_type' => 'person'
|
209 |
-
);
|
210 |
-
|
211 |
-
}
|
212 |
-
|
213 |
-
function widget( $args, $instance ){
|
214 |
-
|
215 |
-
$instance = WPSR_Lists::set_defaults( $instance, $this->defaults );
|
216 |
-
|
217 |
-
echo '<div class="g-' . $instance[ 'gp_widget_type' ] . '" data-width="' . $instance[ 'gp_widget_width' ] . '" data-href="' . $instance[ 'gp_widget_url' ] . '" data-theme="' . $instance[ 'gp_widget_theme' ] . '" data-layout="' . $instance[ 'gp_widget_layout' ] . '" data-showtagline="' . $instance[ 'gp_widget_tag_line' ] . '" data-showcoverphoto="' . $instance[ 'gp_widget_cover_photo' ] . '" data-rel="publisher"></div>';
|
218 |
-
|
219 |
-
WPSR_Includes::add_active_includes( array( 'google_plus_main_js' ) );
|
220 |
-
|
221 |
-
}
|
222 |
-
|
223 |
-
function form( $obj, $instance ){
|
224 |
-
|
225 |
-
$instance = WPSR_Lists::set_defaults( $instance, $this->defaults );
|
226 |
-
$fields = new WPSR_Widget_Form_Fields( $obj, $instance );
|
227 |
-
|
228 |
-
$yesno = array(
|
229 |
-
'true' => __( 'Yes', 'wpsr' ),
|
230 |
-
'false' => __( 'No', 'wpsr' )
|
231 |
-
);
|
232 |
-
|
233 |
-
echo '<h4>' . __( 'Google Plus widget settings', 'wpsr' ) . '</h4>';
|
234 |
-
$fields->text( 'gp_widget_url', 'Enter a Google+ profile or page URL', array( 'placeholder' => 'Ex: https://plus.google.com/u/0/101375276491818686057' ) );
|
235 |
-
$fields->select( 'gp_widget_type', 'Widget type', array( 'person' => 'Person', 'page' => 'Page' ), array( 'class' => 'smallfat' ) );
|
236 |
-
$fields->number( 'gp_widget_width', 'Widget width ( in pixels )' );
|
237 |
-
$fields->select( 'gp_widget_theme', 'Widget theme', array( 'light' => 'Light', 'dark' => 'Dark' ), array( 'class' => 'smallfat' ) );
|
238 |
-
$fields->select( 'gp_widget_layout', 'Widget layout', array( 'potrait' => 'Potrait', 'landscape' => 'Landscape' ), array( 'class' => 'smallfat' ) );
|
239 |
-
|
240 |
-
echo '<h5>If layout is potrait</h5>';
|
241 |
-
|
242 |
-
$fields->select( 'gp_widget_cover_photo', 'Show cover photo', $yesno, array( 'class' => 'smallfat' ) );
|
243 |
-
$fields->select( 'gp_widget_tag_line', 'Show tag line', $yesno, array( 'class' => 'smallfat' ) );
|
244 |
-
|
245 |
-
}
|
246 |
-
|
247 |
-
function update( $instance ){
|
248 |
-
return $instance;
|
249 |
-
}
|
250 |
-
|
251 |
-
}
|
252 |
-
|
253 |
-
new wpsr_widget_googleplus();
|
254 |
-
|
255 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
services/social_icons.php
CHANGED
@@ -80,6 +80,7 @@ class wpsr_service_social_icons{
|
|
80 |
'text' => 0,
|
81 |
'custom_text' => '',
|
82 |
'custom_url' => '',
|
|
|
83 |
);
|
84 |
|
85 |
$styles = array();
|
@@ -97,13 +98,17 @@ class wpsr_service_social_icons{
|
|
97 |
continue;
|
98 |
}
|
99 |
|
|
|
|
|
|
|
|
|
100 |
$opts = WPSR_Lists::set_defaults( (array) $site->$id, $def_site_options );
|
101 |
$props = $this->sites[ $id ];
|
102 |
|
103 |
if( !$is_mobile && in_array( 'mobile_only', $props[ 'features' ] ) )
|
104 |
continue;
|
105 |
|
106 |
-
$temp_url = ( $opts[ 'custom_url' ] == '' ) ? $props[ 'link' ] : $opts[ 'custom_url' ];
|
107 |
$url = $this->get_url( $temp_url, $page_info );
|
108 |
|
109 |
$onclick = isset( $props[ 'onclick' ] ) ? 'onclick="' . $props[ 'onclick' ] . '"' : '';
|
@@ -131,9 +136,26 @@ class wpsr_service_social_icons{
|
|
131 |
}
|
132 |
}
|
133 |
|
134 |
-
$icon =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
-
$chtml = '<span class="sr-' . esc_attr( $id ) . ' ' . esc_attr( $text_class ) . '"><a rel="nofollow" href="' . esc_attr( $url ) . '" target="_blank" ' . $onclick . ' title="' . esc_attr( $
|
137 |
|
138 |
array_push( $sites_clist, $chtml );
|
139 |
}
|
@@ -179,47 +201,52 @@ class wpsr_service_social_icons{
|
|
179 |
$site_options = array(
|
180 |
'count' => array(
|
181 |
'type' => 'checkbox',
|
182 |
-
'helper' => __( 'Show count', 'wpsr' ),
|
183 |
'placeholder' => __( 'Select to show the share count of the service', 'wpsr' )
|
184 |
),
|
185 |
'icon' => array(
|
186 |
'type' => 'text',
|
187 |
-
'helper' => __( 'Icon
|
188 |
-
'placeholder' => __( 'Enter a custom icon URL for this site, starting with http
|
189 |
),
|
190 |
'text' => array(
|
191 |
'type' => 'checkbox',
|
192 |
-
'helper' => __( 'Show site
|
193 |
-
'placeholder' => __( 'Select to show site
|
194 |
),
|
195 |
'custom_text' => array(
|
196 |
'type' => 'text',
|
197 |
-
'helper' => __( '
|
198 |
-
'placeholder' => __( '
|
199 |
),
|
200 |
'custom_url' => array(
|
201 |
'type' => 'text',
|
202 |
-
'helper' => __( '
|
203 |
-
'placeholder' => __( 'Enter
|
|
|
|
|
|
|
|
|
|
|
204 |
),
|
205 |
);
|
206 |
|
207 |
$site_features = array(
|
208 |
'all' => array(
|
209 |
-
'title' => __( 'All
|
210 |
-
'desc' => __( 'All social media
|
211 |
),
|
212 |
'for_share' => array(
|
213 |
-
'title' => __( 'Link sharing
|
214 |
-
'desc' => __( '
|
215 |
),
|
216 |
'for_profile' => array(
|
217 |
-
'title' => __( 'Social profile
|
218 |
-
'desc' => __( '
|
219 |
),
|
220 |
'mobile_only' => array(
|
221 |
-
'title' => __( 'Mobile only
|
222 |
-
'desc' => __( '
|
223 |
),
|
224 |
);
|
225 |
|
@@ -246,7 +273,7 @@ class wpsr_service_social_icons{
|
|
246 |
<ul class="mini_btn_list list_available clearfix">
|
247 |
<?php
|
248 |
foreach( $this->sites as $site => $config ){
|
249 |
-
$datas = ' data-id="' . $site . '" data-opt_text="false" data-opt_custom_url="" data-opt_icon="" data-opt_custom_text="" ';
|
250 |
|
251 |
foreach( $config[ 'options' ] as $opt ){
|
252 |
$datas .= 'data-opt_' . $opt . '="false"';
|
@@ -255,8 +282,8 @@ class wpsr_service_social_icons{
|
|
255 |
echo '<li' . $datas . ' style="background-color: ' . $config[ 'colors' ][0] . ';" data-features="' . implode( ',', $config[ 'features' ] ) . '">';
|
256 |
echo '<i class="' . $config[ 'icon' ] . ' item_icon" ></i> ';
|
257 |
echo '<span>' . $config[ 'name' ] . '</span>';
|
258 |
-
echo '<i class="fa fa-trash-alt item_action item_delete" title="' . __( 'Delete
|
259 |
-
echo '<i class="fa fa-cog item_action item_settings" title="' . __( '
|
260 |
echo '</li>';
|
261 |
}
|
262 |
?>
|
@@ -268,6 +295,10 @@ class wpsr_service_social_icons{
|
|
268 |
foreach( $saved as $i ){
|
269 |
foreach( $i as $site => $opts ){
|
270 |
|
|
|
|
|
|
|
|
|
271 |
$datas = ' data-id="' . $site . '"';
|
272 |
$site_prop = $this->sites[ $site ];
|
273 |
|
@@ -278,8 +309,8 @@ foreach( $saved as $i ){
|
|
278 |
echo '<li' . $datas . ' style="background-color: ' . $site_prop[ 'colors' ][0] . ';">';
|
279 |
echo '<i class="' . $site_prop[ 'icon' ] . ' item_icon"></i>';
|
280 |
echo '<span>' . $site_prop[ 'name' ] . '</span>';
|
281 |
-
echo '<i class="fa fa-trash-alt item_action item_delete" title="' . __( 'Delete
|
282 |
-
echo '<i class="fa fa-cog item_action item_settings" title="' . __( '
|
283 |
echo '</li>';
|
284 |
|
285 |
}
|
@@ -293,7 +324,7 @@ foreach( $saved as $i ){
|
|
293 |
<h4></h4>
|
294 |
<i class="fa fa-times item_popup_close" title="<?php _e( 'Close', 'wpsr' ); ?>"></i>
|
295 |
<div class="item_popup_cnt"></div>
|
296 |
-
<button class="button button-primary item_popup_save"><?php _e( 'Save
|
297 |
</div>
|
298 |
|
299 |
<script>
|
@@ -492,11 +523,11 @@ echo json_encode( $a );
|
|
492 |
'' => 'No',
|
493 |
'pad' => 'yes'
|
494 |
),
|
495 |
-
'helper' => __( 'Select to add space between
|
496 |
'custom' => 'data-scr-settings="pad"'
|
497 |
))),
|
498 |
|
499 |
-
array( __( 'No of
|
500 |
'name' => 'o[more_sites]',
|
501 |
'value' => $values['more_sites'],
|
502 |
'list' => array(
|
@@ -512,7 +543,7 @@ echo json_encode( $a );
|
|
512 |
'9' => '9',
|
513 |
'10' => '10',
|
514 |
),
|
515 |
-
'helper' => __( 'The last
|
516 |
))),
|
517 |
|
518 |
array( __( 'Open links in popup', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
80 |
'text' => 0,
|
81 |
'custom_text' => '',
|
82 |
'custom_url' => '',
|
83 |
+
'custom_hover_text' => ''
|
84 |
);
|
85 |
|
86 |
$styles = array();
|
98 |
continue;
|
99 |
}
|
100 |
|
101 |
+
if( $id == 'googleplus' ){
|
102 |
+
continue;
|
103 |
+
}
|
104 |
+
|
105 |
$opts = WPSR_Lists::set_defaults( (array) $site->$id, $def_site_options );
|
106 |
$props = $this->sites[ $id ];
|
107 |
|
108 |
if( !$is_mobile && in_array( 'mobile_only', $props[ 'features' ] ) )
|
109 |
continue;
|
110 |
|
111 |
+
$temp_url = ( $opts[ 'custom_url' ] == '' ) ? $props[ 'link' ] : urldecode( $opts[ 'custom_url' ] );
|
112 |
$url = $this->get_url( $temp_url, $page_info );
|
113 |
|
114 |
$onclick = isset( $props[ 'onclick' ] ) ? 'onclick="' . $props[ 'onclick' ] . '"' : '';
|
136 |
}
|
137 |
}
|
138 |
|
139 |
+
$icon = '';
|
140 |
+
if( $opts[ 'icon' ] == '' ){
|
141 |
+
$icon = '<i class="' . esc_attr( $props[ 'icon' ] ) . '"></i>';
|
142 |
+
}else{
|
143 |
+
$icon_val = urldecode( $opts[ 'icon' ] );
|
144 |
+
if (strpos( $opts[ 'icon' ], 'http' ) === 0) {
|
145 |
+
$icon = '<img src="' . esc_attr( $icon_val ) . '" alt="' . esc_attr( $id ) . '" height="50%" />';
|
146 |
+
}else{
|
147 |
+
$icon = '<i class="' . esc_attr( $icon_val ) . '"></i>';
|
148 |
+
}
|
149 |
+
}
|
150 |
+
|
151 |
+
$title = '';
|
152 |
+
if( $opts[ 'custom_hover_text' ] == '' ){
|
153 |
+
$title = $props[ 'title' ];
|
154 |
+
}else{
|
155 |
+
$title = urldecode( $opts[ 'custom_hover_text' ] );
|
156 |
+
}
|
157 |
|
158 |
+
$chtml = '<span class="sr-' . esc_attr( $id ) . ' ' . esc_attr( $text_class ) . '"><a rel="nofollow" href="' . esc_attr( $url ) . '" target="_blank" ' . $onclick . ' title="' . esc_attr( $title ) . '" ' . $style . '>' . $icon . $text_in . $count_tag . '</a>' . $text_out . '</span>';
|
159 |
|
160 |
array_push( $sites_clist, $chtml );
|
161 |
}
|
201 |
$site_options = array(
|
202 |
'count' => array(
|
203 |
'type' => 'checkbox',
|
204 |
+
'helper' => __( 'Show sharing count', 'wpsr' ),
|
205 |
'placeholder' => __( 'Select to show the share count of the service', 'wpsr' )
|
206 |
),
|
207 |
'icon' => array(
|
208 |
'type' => 'text',
|
209 |
+
'helper' => __( 'Icon', 'wpsr' ),
|
210 |
+
'placeholder' => __( 'Enter a custom icon URL for this site, starting with <code>http://</code>. You can also use class name of the icon font Example: <code>fa fa-star</code> Leave blank to use default icon', 'wpsr' )
|
211 |
),
|
212 |
'text' => array(
|
213 |
'type' => 'checkbox',
|
214 |
+
'helper' => __( 'Show name of the site', 'wpsr' ),
|
215 |
+
'placeholder' => __( 'Select to show name of the site next to the icon', 'wpsr' )
|
216 |
),
|
217 |
'custom_text' => array(
|
218 |
'type' => 'text',
|
219 |
+
'helper' => __( 'Name of the site', 'wpsr' ),
|
220 |
+
'placeholder' => __( 'Enter custom text to appear to next to the icon. This text will be shown if "Show name of the site" is enabled. Leave blank to use the default site text.', 'wpsr' )
|
221 |
),
|
222 |
'custom_url' => array(
|
223 |
'type' => 'text',
|
224 |
+
'helper' => __( 'Share URL', 'wpsr' ),
|
225 |
+
'placeholder' => __( 'Enter custom URL for this site, starting with <code>http://</code>. Leave blank to use default. Use <code>{url}</code>, <code>{title}</code> to use active page details in URL if needed.', 'wpsr' )
|
226 |
+
),
|
227 |
+
'custom_hover_text' => array(
|
228 |
+
'type' => 'text',
|
229 |
+
'helper' => __( 'Hover text', 'wpsr' ),
|
230 |
+
'placeholder' => __( 'Enter custom text to appear when the icon is hovered.', 'wpsr' )
|
231 |
),
|
232 |
);
|
233 |
|
234 |
$site_features = array(
|
235 |
'all' => array(
|
236 |
+
'title' => __( 'All social icons', 'wpsr' ),
|
237 |
+
'desc' => __( 'All social media icons', 'wpsr' )
|
238 |
),
|
239 |
'for_share' => array(
|
240 |
+
'title' => __( 'Link sharing social icons', 'wpsr' ),
|
241 |
+
'desc' => __( 'Social icons used for sharing page links', 'wpsr' )
|
242 |
),
|
243 |
'for_profile' => array(
|
244 |
+
'title' => __( 'Social profile icons', 'wpsr' ),
|
245 |
+
'desc' => __( 'Icons used for sharing social media profiles', 'wpsr' )
|
246 |
),
|
247 |
'mobile_only' => array(
|
248 |
+
'title' => __( 'Mobile only icons', 'wpsr' ),
|
249 |
+
'desc' => __( 'Icons which will be displayed only on mobile devices', 'wpsr' )
|
250 |
),
|
251 |
);
|
252 |
|
273 |
<ul class="mini_btn_list list_available clearfix">
|
274 |
<?php
|
275 |
foreach( $this->sites as $site => $config ){
|
276 |
+
$datas = ' data-id="' . $site . '" data-opt_text="false" data-opt_custom_url="" data-opt_icon="" data-opt_custom_text="" data-opt_custom_hover_text=""';
|
277 |
|
278 |
foreach( $config[ 'options' ] as $opt ){
|
279 |
$datas .= 'data-opt_' . $opt . '="false"';
|
282 |
echo '<li' . $datas . ' style="background-color: ' . $config[ 'colors' ][0] . ';" data-features="' . implode( ',', $config[ 'features' ] ) . '">';
|
283 |
echo '<i class="' . $config[ 'icon' ] . ' item_icon" ></i> ';
|
284 |
echo '<span>' . $config[ 'name' ] . '</span>';
|
285 |
+
echo '<i class="fa fa-trash-alt item_action item_delete" title="' . __( 'Delete icon', 'wpsr' ) . '"></i> ';
|
286 |
+
echo '<i class="fa fa-cog item_action item_settings" title="' . __( 'Advanced icon settings', 'wpsr' ) . '"></i> ';
|
287 |
echo '</li>';
|
288 |
}
|
289 |
?>
|
295 |
foreach( $saved as $i ){
|
296 |
foreach( $i as $site => $opts ){
|
297 |
|
298 |
+
if( !array_key_exists( $site, $this->sites ) ){
|
299 |
+
continue;
|
300 |
+
}
|
301 |
+
|
302 |
$datas = ' data-id="' . $site . '"';
|
303 |
$site_prop = $this->sites[ $site ];
|
304 |
|
309 |
echo '<li' . $datas . ' style="background-color: ' . $site_prop[ 'colors' ][0] . ';">';
|
310 |
echo '<i class="' . $site_prop[ 'icon' ] . ' item_icon"></i>';
|
311 |
echo '<span>' . $site_prop[ 'name' ] . '</span>';
|
312 |
+
echo '<i class="fa fa-trash-alt item_action item_delete" title="' . __( 'Delete icon', 'wpsr' ) . '"></i>';
|
313 |
+
echo '<i class="fa fa-cog item_action item_settings" title="' . __( 'Advanced icon settings', 'wpsr' ) . '"></i>';
|
314 |
echo '</li>';
|
315 |
|
316 |
}
|
324 |
<h4></h4>
|
325 |
<i class="fa fa-times item_popup_close" title="<?php _e( 'Close', 'wpsr' ); ?>"></i>
|
326 |
<div class="item_popup_cnt"></div>
|
327 |
+
<button class="button button-primary item_popup_save"><?php _e( 'Save icon settings', 'wpsr' ); ?></button>
|
328 |
</div>
|
329 |
|
330 |
<script>
|
523 |
'' => 'No',
|
524 |
'pad' => 'yes'
|
525 |
),
|
526 |
+
'helper' => __( 'Select to add space between icons', 'wpsr' ),
|
527 |
'custom' => 'data-scr-settings="pad"'
|
528 |
))),
|
529 |
|
530 |
+
array( __( 'No of icons in the last to group', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
531 |
'name' => 'o[more_sites]',
|
532 |
'value' => $values['more_sites'],
|
533 |
'list' => array(
|
543 |
'9' => '9',
|
544 |
'10' => '10',
|
545 |
),
|
546 |
+
'helper' => __( 'The last icons grouped will be displayed in a "More" icons menu', 'wpsr' )
|
547 |
))),
|
548 |
|
549 |
array( __( 'Open links in popup', 'wpsr' ), WPSR_Admin::field( 'select', array(
|
wpsr.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: WP Socializer
|
4 |
* Plugin URI: https://www.aakashweb.com/wordpress-plugins/wp-socializer/
|
5 |
* Description: WP Socializer is an all in one complete social media plugin to add native social media buttons, icons, floating sharebar, follow us buttons, profile icons, mobile sharebar and selected text share popups easily with complete control and customization.
|
6 |
-
* Version: 4.1.
|
7 |
* Author: Aakash Chakravarthy
|
8 |
* Author URI: https://www.aakashweb.com
|
9 |
* Text Domain: wpsr
|
10 |
* Domain Path: /languages
|
11 |
*/
|
12 |
|
13 |
-
define( 'WPSR_VERSION', '4.1.
|
14 |
define( 'WPSR_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
|
15 |
define( 'WPSR_URL', plugin_dir_url( __FILE__ ) );
|
16 |
define( 'WPSR_ADMIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) . 'admin' ) );
|
@@ -47,7 +47,6 @@ final class WP_Socializer{
|
|
47 |
include_once( WPSR_PATH . 'services/twitter.php' );
|
48 |
include_once( WPSR_PATH . 'services/social_icons.php' );
|
49 |
include_once( WPSR_PATH . 'services/facebook.php' );
|
50 |
-
include_once( WPSR_PATH . 'services/google_plus.php' );
|
51 |
include_once( WPSR_PATH . 'services/linkedin.php' );
|
52 |
include_once( WPSR_PATH . 'services/reddit.php' );
|
53 |
include_once( WPSR_PATH . 'services/sharethis.php' );
|
3 |
* Plugin Name: WP Socializer
|
4 |
* Plugin URI: https://www.aakashweb.com/wordpress-plugins/wp-socializer/
|
5 |
* Description: WP Socializer is an all in one complete social media plugin to add native social media buttons, icons, floating sharebar, follow us buttons, profile icons, mobile sharebar and selected text share popups easily with complete control and customization.
|
6 |
+
* Version: 4.1.5
|
7 |
* Author: Aakash Chakravarthy
|
8 |
* Author URI: https://www.aakashweb.com
|
9 |
* Text Domain: wpsr
|
10 |
* Domain Path: /languages
|
11 |
*/
|
12 |
|
13 |
+
define( 'WPSR_VERSION', '4.1.5' );
|
14 |
define( 'WPSR_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
|
15 |
define( 'WPSR_URL', plugin_dir_url( __FILE__ ) );
|
16 |
define( 'WPSR_ADMIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) . 'admin' ) );
|
47 |
include_once( WPSR_PATH . 'services/twitter.php' );
|
48 |
include_once( WPSR_PATH . 'services/social_icons.php' );
|
49 |
include_once( WPSR_PATH . 'services/facebook.php' );
|
|
|
50 |
include_once( WPSR_PATH . 'services/linkedin.php' );
|
51 |
include_once( WPSR_PATH . 'services/reddit.php' );
|
52 |
include_once( WPSR_PATH . 'services/sharethis.php' );
|