Version Description
- Added option for the Daily Paintworks.
- Added option for the Bitbucket.
- Added option for the Gab.
- Added option for the Minds.
- Added option for the Flipboard.
- Fixed an issue because of which the line was displayed behind of the buttons.
- Spanish translation updated. (Thanks to Patricio Toledo)
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Social Media Follow Buttons Bar |
Version | 4.24 |
Comparing to | |
See all releases |
Code changes from version 4.23 to 4.24
- inc/css/frontend.css +1 -0
- inc/img/social-media-icons/bitbucket.png +0 -0
- inc/img/social-media-icons/dailypaintworks.png +0 -0
- inc/img/social-media-icons/flipboard.png +0 -0
- inc/img/social-media-icons/gab.png +0 -0
- inc/img/social-media-icons/minds.png +0 -0
- inc/php/list.php +1 -590
- languages/social-media-buttons-toolbar-es_ES.mo +0 -0
- languages/social-media-buttons-toolbar-es_ES.po +16 -5
- readme.txt +17 -3
- social-media-buttons-toolbar.php +1 -1
inc/css/frontend.css
CHANGED
@@ -29,6 +29,7 @@
|
|
29 |
.smbt-social-icons li a {
|
30 |
border-bottom: 0 !important;
|
31 |
display: inline !important;
|
|
|
32 |
}
|
33 |
.smbt-social-icons li img {
|
34 |
margin: 0px !important;
|
29 |
.smbt-social-icons li a {
|
30 |
border-bottom: 0 !important;
|
31 |
display: inline !important;
|
32 |
+
box-shadow: none !important;
|
33 |
}
|
34 |
.smbt-social-icons li img {
|
35 |
margin: 0px !important;
|
inc/img/social-media-icons/bitbucket.png
ADDED
Binary file
|
inc/img/social-media-icons/dailypaintworks.png
ADDED
Binary file
|
inc/img/social-media-icons/flipboard.png
ADDED
Binary file
|
inc/img/social-media-icons/gab.png
ADDED
Binary file
|
inc/img/social-media-icons/minds.png
ADDED
Binary file
|
inc/php/list.php
CHANGED
@@ -1,590 +1 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Prevent Direct Access
|
5 |
-
*/
|
6 |
-
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
-
|
8 |
-
/**
|
9 |
-
* List of social media and additional contact options
|
10 |
-
*/
|
11 |
-
spacexchimp_p005_control_link( 'facebook',
|
12 |
-
'Facebook',
|
13 |
-
'https://www.facebook.com/YourUsernameHere',
|
14 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook' ),
|
15 |
-
'//www.facebook.com'
|
16 |
-
);
|
17 |
-
|
18 |
-
spacexchimp_p005_control_link( 'twitter',
|
19 |
-
'Twitter',
|
20 |
-
'https://twitter.com/YourUsernameHere',
|
21 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitter' ),
|
22 |
-
'//twitter.com'
|
23 |
-
);
|
24 |
-
|
25 |
-
spacexchimp_p005_control_link( 'instagram',
|
26 |
-
'Instagram',
|
27 |
-
'http://instagram.com/YourUsernameHere',
|
28 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Instagram' ),
|
29 |
-
'//instagram.com'
|
30 |
-
);
|
31 |
-
|
32 |
-
spacexchimp_p005_control_link( 'google-plus',
|
33 |
-
'Google+',
|
34 |
-
'https://plus.google.com/u/0/+YourUsernameHere',
|
35 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google+' ),
|
36 |
-
'//plus.google.com'
|
37 |
-
);
|
38 |
-
|
39 |
-
spacexchimp_p005_control_link( 'youtube',
|
40 |
-
'YouTube',
|
41 |
-
'https://www.youtube.com/channel/YourChannelIdentifierHere',
|
42 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube' ),
|
43 |
-
'//www.youtube.com'
|
44 |
-
);
|
45 |
-
|
46 |
-
spacexchimp_p005_control_link( 'youtube-gaming',
|
47 |
-
'YouTube Gaming',
|
48 |
-
'https://gaming.youtube.com/channel/YourChannelIdentifierHere',
|
49 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube Gaming' ),
|
50 |
-
'//gaming.youtube.com'
|
51 |
-
);
|
52 |
-
|
53 |
-
spacexchimp_p005_control_link( 'google-play',
|
54 |
-
'Google Play',
|
55 |
-
'https://play.google.com/YourUsernameHere',
|
56 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google Play' ),
|
57 |
-
'//play.google.com'
|
58 |
-
);
|
59 |
-
|
60 |
-
spacexchimp_p005_control_link( 'itunes',
|
61 |
-
'iTunes',
|
62 |
-
'https://www.apple.com/itunes/YourUsernameHere',
|
63 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes' ),
|
64 |
-
'//www.apple.com/itunes'
|
65 |
-
);
|
66 |
-
|
67 |
-
spacexchimp_p005_control_link( 'itunes-podcasts',
|
68 |
-
'iTunes Podcasts',
|
69 |
-
'https://www.apple.com/itunes/podcasts/YourUsernameHere',
|
70 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes Podcasts' ),
|
71 |
-
'//www.apple.com/itunes/podcasts'
|
72 |
-
);
|
73 |
-
|
74 |
-
spacexchimp_p005_control_link( 'apple-music',
|
75 |
-
'Apple Music',
|
76 |
-
'https://www.apple.com/lae/music/YourUsernameHere',
|
77 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Apple Music' ),
|
78 |
-
'//www.apple.com/lae/music'
|
79 |
-
);
|
80 |
-
|
81 |
-
spacexchimp_p005_control_link( 'periscope',
|
82 |
-
'Periscope',
|
83 |
-
'https://www.periscope.tv/YourUsernameHere',
|
84 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Periscope' ),
|
85 |
-
'//www.periscope.tv'
|
86 |
-
);
|
87 |
-
|
88 |
-
spacexchimp_p005_control_link( 'vimeo',
|
89 |
-
'Vimeo',
|
90 |
-
'https://vimeo.com/YourUsernameHere',
|
91 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Vimeo' ),
|
92 |
-
'//vimeo.com'
|
93 |
-
);
|
94 |
-
|
95 |
-
spacexchimp_p005_control_link( 'blogger',
|
96 |
-
'Blogger',
|
97 |
-
'http://YourBlogNameHere.blogspot.com',
|
98 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Blogger' ),
|
99 |
-
'//www.blogger.com'
|
100 |
-
);
|
101 |
-
|
102 |
-
spacexchimp_p005_control_link( 'buzzsprout',
|
103 |
-
'Buzzsprout',
|
104 |
-
'https://www.buzzsprout.com/YourUsernameHere',
|
105 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Buzzsprout' ),
|
106 |
-
'//www.buzzsprout.com'
|
107 |
-
);
|
108 |
-
|
109 |
-
spacexchimp_p005_control_link( 'livejournal',
|
110 |
-
'LiveJournal',
|
111 |
-
'http://YourUsernameHere.livejournal.com',
|
112 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'LiveJournal' ),
|
113 |
-
'//www.livejournal.com'
|
114 |
-
);
|
115 |
-
|
116 |
-
spacexchimp_p005_control_link( 'reddit',
|
117 |
-
'Reddit',
|
118 |
-
'https://www.reddit.com/user/YourUsernameHere',
|
119 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Reddit' ),
|
120 |
-
'//www.reddit.com'
|
121 |
-
);
|
122 |
-
|
123 |
-
spacexchimp_p005_control_link( 'linkedin',
|
124 |
-
'LinkedIn',
|
125 |
-
'https://linkedin.com/in/YourUsernameHere',
|
126 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'LinkedIn' ),
|
127 |
-
'//linkedin.com'
|
128 |
-
);
|
129 |
-
|
130 |
-
spacexchimp_p005_control_link( 'diaspora',
|
131 |
-
'Diaspora',
|
132 |
-
'https://diasporafoundation.org/YourUsernameHere',
|
133 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Diaspora' ),
|
134 |
-
'//diasporafoundation.org'
|
135 |
-
);
|
136 |
-
|
137 |
-
spacexchimp_p005_control_link( 'deviantart',
|
138 |
-
'DeviantArt',
|
139 |
-
'http://www.deviantart.com/YourUsernameHere',
|
140 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'DeviantArt' ),
|
141 |
-
'//www.deviantart.com'
|
142 |
-
);
|
143 |
-
|
144 |
-
spacexchimp_p005_control_link( 'xing',
|
145 |
-
'XING',
|
146 |
-
'https://www.xing.com/YourUsernameHere',
|
147 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'XING' ),
|
148 |
-
'//www.xing.com'
|
149 |
-
);
|
150 |
-
|
151 |
-
spacexchimp_p005_control_link( 'pinterest',
|
152 |
-
'Pinterest',
|
153 |
-
'https://www.pinterest.com/YourUsernameHere',
|
154 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Pinterest' ),
|
155 |
-
'//www.pinterest.com'
|
156 |
-
);
|
157 |
-
|
158 |
-
spacexchimp_p005_control_link( 'flickr',
|
159 |
-
'Flickr',
|
160 |
-
'https://www.flickr.com/YourUsernameHere',
|
161 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flickr' ),
|
162 |
-
'//www.flickr.com'
|
163 |
-
);
|
164 |
-
|
165 |
-
spacexchimp_p005_control_link( 'tumblr',
|
166 |
-
'Tumblr',
|
167 |
-
'https://www.tumblr.com/blog/YourBlogNameHere',
|
168 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Tumblr' ),
|
169 |
-
'//www.tumblr.com'
|
170 |
-
);
|
171 |
-
|
172 |
-
spacexchimp_p005_control_link( 'snapchat',
|
173 |
-
'Snapchat',
|
174 |
-
'https://www.snapchat.com/add/YourUsernameHere',
|
175 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Snapchat' ),
|
176 |
-
'//www.snapchat.com'
|
177 |
-
);
|
178 |
-
|
179 |
-
spacexchimp_p005_control_link( 'twitch',
|
180 |
-
'Twitch',
|
181 |
-
'https://www.twitch.tv/YourUsernameHere',
|
182 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitch' ),
|
183 |
-
'//www.twitch.tv'
|
184 |
-
);
|
185 |
-
|
186 |
-
spacexchimp_p005_control_link( 'patreon',
|
187 |
-
'Patreon',
|
188 |
-
'https://www.patreon.com/YourUsernameHere',
|
189 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Patreon' ),
|
190 |
-
'//www.patreon.com'
|
191 |
-
);
|
192 |
-
|
193 |
-
spacexchimp_p005_control_link( 'imdb',
|
194 |
-
'IMDb',
|
195 |
-
'http://www.imdb.com/name/YourUsernameHere',
|
196 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'IMDb' ),
|
197 |
-
'//www.imdb.com'
|
198 |
-
);
|
199 |
-
|
200 |
-
spacexchimp_p005_control_link( 'soundcloud',
|
201 |
-
'SoundCloud',
|
202 |
-
'https://soundcloud.com/YourUsernameHere',
|
203 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundCloud' ),
|
204 |
-
'//soundcloud.com'
|
205 |
-
);
|
206 |
-
|
207 |
-
spacexchimp_p005_control_link( 'plugdj',
|
208 |
-
'Plug.dj',
|
209 |
-
'https://plug.dj/YourUsernameHere',
|
210 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Plug.dj' ),
|
211 |
-
'//plug.dj'
|
212 |
-
);
|
213 |
-
|
214 |
-
spacexchimp_p005_control_link( 'spotify',
|
215 |
-
'Spotify',
|
216 |
-
'http://open.spotify.com/user/YourUsernameHere',
|
217 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Spotify' ),
|
218 |
-
'//www.spotify.com'
|
219 |
-
);
|
220 |
-
|
221 |
-
spacexchimp_p005_control_link( 'bandcamp',
|
222 |
-
'Bandcamp',
|
223 |
-
'https://bandcamp.com/YourUsernameHere',
|
224 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bandcamp' ),
|
225 |
-
'//bandcamp.com'
|
226 |
-
);
|
227 |
-
|
228 |
-
spacexchimp_p005_control_link( 'dloky',
|
229 |
-
'Dloky',
|
230 |
-
'https://dloky.com/YourUsernameHere',
|
231 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Dloky' ),
|
232 |
-
'//dloky.com'
|
233 |
-
);
|
234 |
-
|
235 |
-
spacexchimp_p005_control_link( 'amazon',
|
236 |
-
'Amazon',
|
237 |
-
'https://www.amazon.com/YourUsernameHere',
|
238 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Amazon' ),
|
239 |
-
'//www.amazon.com'
|
240 |
-
);
|
241 |
-
|
242 |
-
spacexchimp_p005_control_link( 'bookbub',
|
243 |
-
'BookBub',
|
244 |
-
'https://www.bookbub.com/YourUsernameHere',
|
245 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'BookBub' ),
|
246 |
-
'//www.bookbub.com'
|
247 |
-
);
|
248 |
-
|
249 |
-
spacexchimp_p005_control_link( 'goodreads',
|
250 |
-
'Goodreads',
|
251 |
-
'https://www.goodreads.com/YourUsernameHere',
|
252 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Goodreads' ),
|
253 |
-
'//www.goodreads.com'
|
254 |
-
);
|
255 |
-
|
256 |
-
spacexchimp_p005_control_link( 'meetvibe',
|
257 |
-
'MeetVibe',
|
258 |
-
'https://meetvibe.com/YourUsernameHere',
|
259 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'MeetVibe' ),
|
260 |
-
'//meetvibe.com'
|
261 |
-
);
|
262 |
-
|
263 |
-
spacexchimp_p005_control_link( 'meetup',
|
264 |
-
'Meetup',
|
265 |
-
'https://www.meetup.com/YourUsernameHere',
|
266 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Meetup' ),
|
267 |
-
'//www.meetup.com'
|
268 |
-
);
|
269 |
-
|
270 |
-
spacexchimp_p005_control_link( 'steam',
|
271 |
-
'Steam',
|
272 |
-
'http://store.steampowered.com/YourUsernameHere',
|
273 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steam' ),
|
274 |
-
'//store.steampowered.com'
|
275 |
-
);
|
276 |
-
|
277 |
-
spacexchimp_p005_control_link( 'mixer',
|
278 |
-
'Mixer',
|
279 |
-
'https://mixer.com/YourUsernameHere',
|
280 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mixer' ),
|
281 |
-
'//mixer.com'
|
282 |
-
);
|
283 |
-
|
284 |
-
spacexchimp_p005_control_link( 'discord',
|
285 |
-
'Discord',
|
286 |
-
'https://discordapp.com/YourUsernameHere',
|
287 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Discord' ),
|
288 |
-
'//discordapp.com'
|
289 |
-
);
|
290 |
-
|
291 |
-
spacexchimp_p005_control_link( 'yelp',
|
292 |
-
'Yelp',
|
293 |
-
'https://www.yelp.com/YourUsernameHere',
|
294 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yelp' ),
|
295 |
-
'//www.yelp.com'
|
296 |
-
);
|
297 |
-
|
298 |
-
spacexchimp_p005_control_link( 'stumbleupon',
|
299 |
-
'StumbleUpon',
|
300 |
-
'http://www.stumbleupon.com/YourUsernameHere',
|
301 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'StumbleUpon' ),
|
302 |
-
'//www.stumbleupon.com'
|
303 |
-
);
|
304 |
-
|
305 |
-
spacexchimp_p005_control_link( 'bloglovin',
|
306 |
-
'Bloglovin',
|
307 |
-
'https://www.bloglovin.com/YourUsernameHere',
|
308 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bloglovin' ),
|
309 |
-
'//www.bloglovin.com'
|
310 |
-
);
|
311 |
-
|
312 |
-
spacexchimp_p005_control_link( 'whatsapp',
|
313 |
-
'WhatsApp',
|
314 |
-
'https://www.whatsapp.com/YourUsernameHere',
|
315 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'WhatsApp' ),
|
316 |
-
'//www.whatsapp.com'
|
317 |
-
);
|
318 |
-
|
319 |
-
spacexchimp_p005_control_link( 'medium',
|
320 |
-
'Medium',
|
321 |
-
'https://medium.com/YourUsernameHere',
|
322 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Medium' ),
|
323 |
-
'//medium.com'
|
324 |
-
);
|
325 |
-
|
326 |
-
spacexchimp_p005_control_link( '500px',
|
327 |
-
'500px',
|
328 |
-
'https://500px.com/YourUsernameHere',
|
329 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), '500px' ),
|
330 |
-
'//500px.com'
|
331 |
-
);
|
332 |
-
|
333 |
-
spacexchimp_p005_control_link( 'behance',
|
334 |
-
'Behance',
|
335 |
-
'https://www.behance.net/YourUsernameHere',
|
336 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Behance' ),
|
337 |
-
'//www.behance.net'
|
338 |
-
);
|
339 |
-
|
340 |
-
spacexchimp_p005_control_link( 'polyvore',
|
341 |
-
'Polyvore',
|
342 |
-
'http://www.polyvore.com/YourUsernameHere',
|
343 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Polyvore' ),
|
344 |
-
'//www.polyvore.com'
|
345 |
-
);
|
346 |
-
|
347 |
-
spacexchimp_p005_control_link( 'yellowpages',
|
348 |
-
'Yellow Pages',
|
349 |
-
'https://www.yellowpages.com/YourUsernameHere',
|
350 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yellow Pages' ),
|
351 |
-
'//www.yellowpages.com'
|
352 |
-
);
|
353 |
-
|
354 |
-
spacexchimp_p005_control_link( 'line',
|
355 |
-
'LINE',
|
356 |
-
'https://line.me/YourUsernameHere',
|
357 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'LINE' ),
|
358 |
-
'//line.me'
|
359 |
-
);
|
360 |
-
|
361 |
-
spacexchimp_p005_control_link( 'itch',
|
362 |
-
'itch',
|
363 |
-
'https://itch.io/YourUsernameHere',
|
364 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'itch' ),
|
365 |
-
'//itch.io'
|
366 |
-
);
|
367 |
-
|
368 |
-
spacexchimp_p005_control_link( 'mastodon',
|
369 |
-
'Mastodon',
|
370 |
-
'https://mastodon.social/YourUsernameHere',
|
371 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mastodon' ),
|
372 |
-
'//mastodon.social'
|
373 |
-
);
|
374 |
-
|
375 |
-
spacexchimp_p005_control_link( 'remind',
|
376 |
-
'Remind',
|
377 |
-
'https://www.remind.com/YourUsernameHere',
|
378 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Remind' ),
|
379 |
-
'//www.remind.com'
|
380 |
-
);
|
381 |
-
|
382 |
-
spacexchimp_p005_control_link( 'trademe',
|
383 |
-
'Trade Me',
|
384 |
-
'https://www.trademe.co.nz/YourUsernameHere',
|
385 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trade Me' ),
|
386 |
-
'//www.trademe.co.nz'
|
387 |
-
);
|
388 |
-
|
389 |
-
spacexchimp_p005_control_link( 'vsco',
|
390 |
-
'VSCO',
|
391 |
-
'https://vsco.co/YourUsernameHere',
|
392 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'VSCO' ),
|
393 |
-
'//vsco.co'
|
394 |
-
);
|
395 |
-
|
396 |
-
spacexchimp_p005_control_link( 'hireology',
|
397 |
-
'Hireology',
|
398 |
-
'https://hireology.com/YourUsernameHere',
|
399 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hireology' ),
|
400 |
-
'//hireology.com'
|
401 |
-
);
|
402 |
-
|
403 |
-
spacexchimp_p005_control_link( 'kompoz',
|
404 |
-
'Kompoz',
|
405 |
-
'https://www.kompoz.com/YourUsernameHere',
|
406 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Kompoz' ),
|
407 |
-
'//www.kompoz.com'
|
408 |
-
);
|
409 |
-
|
410 |
-
spacexchimp_p005_control_link( 'soundblend',
|
411 |
-
'SoundBlend',
|
412 |
-
'https://www.soundblend.com/YourUsernameHere',
|
413 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundBlend' ),
|
414 |
-
'//www.soundblend.com'
|
415 |
-
);
|
416 |
-
|
417 |
-
spacexchimp_p005_control_link( 'vkontakte',
|
418 |
-
'VKontakte',
|
419 |
-
'https://vk.com/id_YourIdentifierHere',
|
420 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'VKontakte' ),
|
421 |
-
'//vk.com'
|
422 |
-
);
|
423 |
-
|
424 |
-
spacexchimp_p005_control_link( 'odnoklassniki',
|
425 |
-
'Odnoklassniki',
|
426 |
-
'https://ok.ru/profile/YourIdentifierHere',
|
427 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Odnoklassniki' ),
|
428 |
-
'//ok.ru'
|
429 |
-
);
|
430 |
-
|
431 |
-
spacexchimp_p005_control_link( 'telegram',
|
432 |
-
'Telegram',
|
433 |
-
'https://telegram.me/YourUsernameHere',
|
434 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Telegram' ),
|
435 |
-
'//telegram.org'
|
436 |
-
);
|
437 |
-
|
438 |
-
spacexchimp_p005_control_link( 'github',
|
439 |
-
'GitHub',
|
440 |
-
'https://github.com/YourUsernameHere',
|
441 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'GitHub' ),
|
442 |
-
'//github.com'
|
443 |
-
);
|
444 |
-
|
445 |
-
spacexchimp_p005_control_link( 'wordpress',
|
446 |
-
'WordPress',
|
447 |
-
'https://profiles.wordpress.org/YourUsernameHere',
|
448 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'WordPress' ),
|
449 |
-
'//wordpress.org'
|
450 |
-
);
|
451 |
-
|
452 |
-
spacexchimp_p005_control_link( 'codepen',
|
453 |
-
'CodePen',
|
454 |
-
'http://codepen.io/YourUsernameHere',
|
455 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'CodePen' ),
|
456 |
-
'//codepen.io'
|
457 |
-
);
|
458 |
-
|
459 |
-
spacexchimp_p005_control_link( 'askfm',
|
460 |
-
'ASKfm',
|
461 |
-
'https://ask.fm/YourUsernameHere',
|
462 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'ASKfm' ),
|
463 |
-
'//ask.fm'
|
464 |
-
);
|
465 |
-
|
466 |
-
spacexchimp_p005_control_link( 'ebay',
|
467 |
-
'eBay',
|
468 |
-
'https://www.ebay.com/YourUsernameHere',
|
469 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'eBay' ),
|
470 |
-
'//www.ebay.com'
|
471 |
-
);
|
472 |
-
|
473 |
-
spacexchimp_p005_control_link( 'hangouts',
|
474 |
-
'Hangouts',
|
475 |
-
'https://hangouts.google.com/YourUsernameHere',
|
476 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hangouts' ),
|
477 |
-
'//hangouts.google.com'
|
478 |
-
);
|
479 |
-
|
480 |
-
spacexchimp_p005_control_link( 'houzz',
|
481 |
-
'Houzz',
|
482 |
-
'https://www.houzz.com/YourUsernameHere',
|
483 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Houzz' ),
|
484 |
-
'//www.houzz.com'
|
485 |
-
);
|
486 |
-
|
487 |
-
spacexchimp_p005_control_link( 'quora',
|
488 |
-
'Quora',
|
489 |
-
'https://www.quora.com/YourUsernameHere',
|
490 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Quora' ),
|
491 |
-
'//www.quora.com'
|
492 |
-
);
|
493 |
-
|
494 |
-
spacexchimp_p005_control_link( 'steemit',
|
495 |
-
'Steemit',
|
496 |
-
'https://steemit.com/YourUsernameHere',
|
497 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steemit' ),
|
498 |
-
'//steemit.com'
|
499 |
-
);
|
500 |
-
|
501 |
-
spacexchimp_p005_control_link( 'theartstack',
|
502 |
-
'ArtStack',
|
503 |
-
'https://theartstack.com/YourUsernameHere',
|
504 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'ArtStack' ),
|
505 |
-
'//theartstack.com'
|
506 |
-
);
|
507 |
-
|
508 |
-
spacexchimp_p005_control_link( 'theknot',
|
509 |
-
'The Knot',
|
510 |
-
'https://www.theknot.com/YourUsernameHere',
|
511 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'The Knot' ),
|
512 |
-
'//www.theknot.com'
|
513 |
-
);
|
514 |
-
|
515 |
-
spacexchimp_p005_control_link( 'viber',
|
516 |
-
'Viber',
|
517 |
-
'https://www.viber.com/YourUsernameHere',
|
518 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Viber' ),
|
519 |
-
'//www.viber.com'
|
520 |
-
);
|
521 |
-
|
522 |
-
spacexchimp_p005_control_link( 'etsy',
|
523 |
-
'Etsy',
|
524 |
-
'https://www.etsy.com/YourUsernameHere',
|
525 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Etsy' ),
|
526 |
-
'//www.etsy.com'
|
527 |
-
);
|
528 |
-
|
529 |
-
spacexchimp_p005_control_link( 'tripadvisor',
|
530 |
-
'Trip Advisor',
|
531 |
-
'https://www.tripadvisor.com/YourUsernameHere',
|
532 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trip Advisor' ),
|
533 |
-
'//www.tripadvisor.com'
|
534 |
-
);
|
535 |
-
|
536 |
-
spacexchimp_p005_control_link( 'stackoverflow',
|
537 |
-
'Stack Overflow',
|
538 |
-
'https://stackoverflow.com/YourUsernameHere',
|
539 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Overflow' ),
|
540 |
-
'//stackoverflow.com'
|
541 |
-
);
|
542 |
-
|
543 |
-
spacexchimp_p005_control_link( 'stackexchange',
|
544 |
-
'Stack Exchange',
|
545 |
-
'https://stackexchange.com/YourUsernameHere',
|
546 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Exchange' ),
|
547 |
-
'//stackexchange.com'
|
548 |
-
);
|
549 |
-
|
550 |
-
spacexchimp_p005_control_link( 'wattpad',
|
551 |
-
'Wattpad',
|
552 |
-
'https://www.wattpad.com/YourUsernameHere',
|
553 |
-
sprintf( __( 'Enter the link to your %s profile page', $text ), 'Wattpad' ),
|
554 |
-
'//www.wattpad.com'
|
555 |
-
);
|
556 |
-
|
557 |
-
spacexchimp_p005_control_link( 'skype',
|
558 |
-
'Skype',
|
559 |
-
'skype:YourUsernameHere?call',
|
560 |
-
__( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', $text ),
|
561 |
-
'//www.skype.com'
|
562 |
-
);
|
563 |
-
|
564 |
-
spacexchimp_p005_control_link( 'website',
|
565 |
-
'Personal website',
|
566 |
-
'https://www.arthurgareginyan.com',
|
567 |
-
__( 'Enter the link to your personal website', $text ),
|
568 |
-
''
|
569 |
-
);
|
570 |
-
|
571 |
-
spacexchimp_p005_control_link( 'email',
|
572 |
-
'Email',
|
573 |
-
'mailto:YourUsernameHere@gmail.com',
|
574 |
-
__( 'Enter your email address with prefix <b>mailto:</b>', $text ),
|
575 |
-
''
|
576 |
-
);
|
577 |
-
|
578 |
-
spacexchimp_p005_control_link( 'telephone',
|
579 |
-
'Telephone',
|
580 |
-
'tel://1-555-555-5555',
|
581 |
-
__( 'Enter your telephone number with prefix <b>tel://</b>', $text ),
|
582 |
-
''
|
583 |
-
);
|
584 |
-
|
585 |
-
spacexchimp_p005_control_link( 'rss-feed',
|
586 |
-
'RSS Feed',
|
587 |
-
'http://YourDomainNameHere.com/feed',
|
588 |
-
__( 'Enter the link to your RSS Feed', $text ),
|
589 |
-
''
|
590 |
-
);
|
1 |
+
<?php /** * Prevent Direct Access */ defined( 'ABSPATH' ) or die( "Restricted access!" ); /** * List of social media and additional contact options */ spacexchimp_p005_control_link( 'facebook', 'Facebook', 'https://www.facebook.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Facebook' ), '//www.facebook.com' ); spacexchimp_p005_control_link( 'twitter', 'Twitter', 'https://twitter.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitter' ), '//twitter.com' ); spacexchimp_p005_control_link( 'instagram', 'Instagram', 'http://instagram.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Instagram' ), '//instagram.com' ); spacexchimp_p005_control_link( 'google-plus', 'Google+', 'https://plus.google.com/u/0/+YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google+' ), '//plus.google.com' ); spacexchimp_p005_control_link( 'youtube', 'YouTube', 'https://www.youtube.com/channel/YourChannelIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube' ), '//www.youtube.com' ); spacexchimp_p005_control_link( 'youtube-gaming', 'YouTube Gaming', 'https://gaming.youtube.com/channel/YourChannelIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'YouTube Gaming' ), '//gaming.youtube.com' ); spacexchimp_p005_control_link( 'google-play', 'Google Play', 'https://play.google.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Google Play' ), '//play.google.com' ); spacexchimp_p005_control_link( 'itunes', 'iTunes', 'https://www.apple.com/itunes/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes' ), '//www.apple.com/itunes' ); spacexchimp_p005_control_link( 'itunes-podcasts', 'iTunes Podcasts', 'https://www.apple.com/itunes/podcasts/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'iTunes Podcasts' ), '//www.apple.com/itunes/podcasts' ); spacexchimp_p005_control_link( 'apple-music', 'Apple Music', 'https://www.apple.com/lae/music/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Apple Music' ), '//www.apple.com/lae/music' ); spacexchimp_p005_control_link( 'periscope', 'Periscope', 'https://www.periscope.tv/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Periscope' ), '//www.periscope.tv' ); spacexchimp_p005_control_link( 'vimeo', 'Vimeo', 'https://vimeo.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Vimeo' ), '//vimeo.com' ); spacexchimp_p005_control_link( 'blogger', 'Blogger', 'http://YourBlogNameHere.blogspot.com', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Blogger' ), '//www.blogger.com' ); spacexchimp_p005_control_link( 'buzzsprout', 'Buzzsprout', 'https://www.buzzsprout.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Buzzsprout' ), '//www.buzzsprout.com' ); spacexchimp_p005_control_link( 'livejournal', 'LiveJournal', 'http://YourUsernameHere.livejournal.com', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LiveJournal' ), '//www.livejournal.com' ); spacexchimp_p005_control_link( 'reddit', 'Reddit', 'https://www.reddit.com/user/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Reddit' ), '//www.reddit.com' ); spacexchimp_p005_control_link( 'linkedin', 'LinkedIn', 'https://linkedin.com/in/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LinkedIn' ), '//linkedin.com' ); spacexchimp_p005_control_link( 'diaspora', 'Diaspora', 'https://diasporafoundation.org/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Diaspora' ), '//diasporafoundation.org' ); spacexchimp_p005_control_link( 'deviantart', 'DeviantArt', 'http://www.deviantart.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'DeviantArt' ), '//www.deviantart.com' ); spacexchimp_p005_control_link( 'xing', 'XING', 'https://www.xing.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'XING' ), '//www.xing.com' ); spacexchimp_p005_control_link( 'pinterest', 'Pinterest', 'https://www.pinterest.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Pinterest' ), '//www.pinterest.com' ); spacexchimp_p005_control_link( 'flickr', 'Flickr', 'https://www.flickr.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flickr' ), '//www.flickr.com' ); spacexchimp_p005_control_link( 'tumblr', 'Tumblr', 'https://www.tumblr.com/blog/YourBlogNameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Tumblr' ), '//www.tumblr.com' ); spacexchimp_p005_control_link( 'snapchat', 'Snapchat', 'https://www.snapchat.com/add/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Snapchat' ), '//www.snapchat.com' ); spacexchimp_p005_control_link( 'twitch', 'Twitch', 'https://www.twitch.tv/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Twitch' ), '//www.twitch.tv' ); spacexchimp_p005_control_link( 'patreon', 'Patreon', 'https://www.patreon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Patreon' ), '//www.patreon.com' ); spacexchimp_p005_control_link( 'imdb', 'IMDb', 'http://www.imdb.com/name/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'IMDb' ), '//www.imdb.com' ); spacexchimp_p005_control_link( 'soundcloud', 'SoundCloud', 'https://soundcloud.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundCloud' ), '//soundcloud.com' ); spacexchimp_p005_control_link( 'plugdj', 'Plug.dj', 'https://plug.dj/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Plug.dj' ), '//plug.dj' ); spacexchimp_p005_control_link( 'spotify', 'Spotify', 'http://open.spotify.com/user/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Spotify' ), '//www.spotify.com' ); spacexchimp_p005_control_link( 'bandcamp', 'Bandcamp', 'https://bandcamp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bandcamp' ), '//bandcamp.com' ); spacexchimp_p005_control_link( 'dloky', 'Dloky', 'https://dloky.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Dloky' ), '//dloky.com' ); spacexchimp_p005_control_link( 'amazon', 'Amazon', 'https://www.amazon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Amazon' ), '//www.amazon.com' ); spacexchimp_p005_control_link( 'bookbub', 'BookBub', 'https://www.bookbub.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'BookBub' ), '//www.bookbub.com' ); spacexchimp_p005_control_link( 'goodreads', 'Goodreads', 'https://www.goodreads.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Goodreads' ), '//www.goodreads.com' ); spacexchimp_p005_control_link( 'meetvibe', 'MeetVibe', 'https://meetvibe.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'MeetVibe' ), '//meetvibe.com' ); spacexchimp_p005_control_link( 'meetup', 'Meetup', 'https://www.meetup.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Meetup' ), '//www.meetup.com' ); spacexchimp_p005_control_link( 'steam', 'Steam', 'http://store.steampowered.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steam' ), '//store.steampowered.com' ); spacexchimp_p005_control_link( 'mixer', 'Mixer', 'https://mixer.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mixer' ), '//mixer.com' ); spacexchimp_p005_control_link( 'discord', 'Discord', 'https://discordapp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Discord' ), '//discordapp.com' ); spacexchimp_p005_control_link( 'yelp', 'Yelp', 'https://www.yelp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yelp' ), '//www.yelp.com' ); spacexchimp_p005_control_link( 'stumbleupon', 'StumbleUpon', 'http://www.stumbleupon.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'StumbleUpon' ), '//www.stumbleupon.com' ); spacexchimp_p005_control_link( 'bloglovin', 'Bloglovin', 'https://www.bloglovin.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bloglovin' ), '//www.bloglovin.com' ); spacexchimp_p005_control_link( 'whatsapp', 'WhatsApp', 'https://www.whatsapp.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'WhatsApp' ), '//www.whatsapp.com' ); spacexchimp_p005_control_link( 'medium', 'Medium', 'https://medium.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Medium' ), '//medium.com' ); spacexchimp_p005_control_link( '500px', '500px', 'https://500px.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), '500px' ), '//500px.com' ); spacexchimp_p005_control_link( 'behance', 'Behance', 'https://www.behance.net/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Behance' ), '//www.behance.net' ); spacexchimp_p005_control_link( 'polyvore', 'Polyvore', 'http://www.polyvore.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Polyvore' ), '//www.polyvore.com' ); spacexchimp_p005_control_link( 'yellowpages', 'Yellow Pages', 'https://www.yellowpages.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Yellow Pages' ), '//www.yellowpages.com' ); spacexchimp_p005_control_link( 'line', 'LINE', 'https://line.me/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'LINE' ), '//line.me' ); spacexchimp_p005_control_link( 'itch', 'itch', 'https://itch.io/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'itch' ), '//itch.io' ); spacexchimp_p005_control_link( 'mastodon', 'Mastodon', 'https://mastodon.social/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Mastodon' ), '//mastodon.social' ); spacexchimp_p005_control_link( 'remind', 'Remind', 'https://www.remind.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Remind' ), '//www.remind.com' ); spacexchimp_p005_control_link( 'trademe', 'Trade Me', 'https://www.trademe.co.nz/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trade Me' ), '//www.trademe.co.nz' ); spacexchimp_p005_control_link( 'vsco', 'VSCO', 'https://vsco.co/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'VSCO' ), '//vsco.co' ); spacexchimp_p005_control_link( 'hireology', 'Hireology', 'https://hireology.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hireology' ), '//hireology.com' ); spacexchimp_p005_control_link( 'kompoz', 'Kompoz', 'https://www.kompoz.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Kompoz' ), '//www.kompoz.com' ); spacexchimp_p005_control_link( 'soundblend', 'SoundBlend', 'https://www.soundblend.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'SoundBlend' ), '//www.soundblend.com' ); spacexchimp_p005_control_link( 'vkontakte', 'VKontakte', 'https://vk.com/id_YourIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'VKontakte' ), '//vk.com' ); spacexchimp_p005_control_link( 'odnoklassniki', 'Odnoklassniki', 'https://ok.ru/profile/YourIdentifierHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Odnoklassniki' ), '//ok.ru' ); spacexchimp_p005_control_link( 'telegram', 'Telegram', 'https://telegram.me/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Telegram' ), '//telegram.org' ); spacexchimp_p005_control_link( 'github', 'GitHub', 'https://github.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'GitHub' ), '//github.com' ); spacexchimp_p005_control_link( 'wordpress', 'WordPress', 'https://profiles.wordpress.org/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'WordPress' ), '//wordpress.org' ); spacexchimp_p005_control_link( 'codepen', 'CodePen', 'http://codepen.io/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'CodePen' ), '//codepen.io' ); spacexchimp_p005_control_link( 'askfm', 'ASKfm', 'https://ask.fm/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'ASKfm' ), '//ask.fm' ); spacexchimp_p005_control_link( 'ebay', 'eBay', 'https://www.ebay.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'eBay' ), '//www.ebay.com' ); spacexchimp_p005_control_link( 'hangouts', 'Hangouts', 'https://hangouts.google.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Hangouts' ), '//hangouts.google.com' ); spacexchimp_p005_control_link( 'houzz', 'Houzz', 'https://www.houzz.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Houzz' ), '//www.houzz.com' ); spacexchimp_p005_control_link( 'quora', 'Quora', 'https://www.quora.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Quora' ), '//www.quora.com' ); spacexchimp_p005_control_link( 'steemit', 'Steemit', 'https://steemit.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Steemit' ), '//steemit.com' ); spacexchimp_p005_control_link( 'theartstack', 'ArtStack', 'https://theartstack.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'ArtStack' ), '//theartstack.com' ); spacexchimp_p005_control_link( 'theknot', 'The Knot', 'https://www.theknot.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'The Knot' ), '//www.theknot.com' ); spacexchimp_p005_control_link( 'viber', 'Viber', 'https://www.viber.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Viber' ), '//www.viber.com' ); spacexchimp_p005_control_link( 'etsy', 'Etsy', 'https://www.etsy.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Etsy' ), '//www.etsy.com' ); spacexchimp_p005_control_link( 'tripadvisor', 'Trip Advisor', 'https://www.tripadvisor.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Trip Advisor' ), '//www.tripadvisor.com' ); spacexchimp_p005_control_link( 'stackoverflow', 'Stack Overflow', 'https://stackoverflow.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Overflow' ), '//stackoverflow.com' ); spacexchimp_p005_control_link( 'stackexchange', 'Stack Exchange', 'https://stackexchange.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Stack Exchange' ), '//stackexchange.com' ); spacexchimp_p005_control_link( 'bitbucket', 'Bitbucket', 'https://bitbucket.org/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Bitbucket' ), '//bitbucket.org' ); spacexchimp_p005_control_link( 'dailypaintworks', 'Daily Paintworks', 'https://www.dailypaintworks.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Daily Paintworks' ), '//www.dailypaintworks.com' ); spacexchimp_p005_control_link( 'flipboard', 'Flipboard', 'https://flipboard.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Flipboard' ), '//flipboard.com' ); spacexchimp_p005_control_link( 'gab', 'Gab', 'https://gab.ai/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Gab' ), '//gab.ai' ); spacexchimp_p005_control_link( 'minds', 'Minds', 'https://www.minds.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Minds' ), '//www.minds.com' ); spacexchimp_p005_control_link( 'wattpad', 'Wattpad', 'https://www.wattpad.com/YourUsernameHere', sprintf( __( 'Enter the link to your %s profile page', $text ), 'Wattpad' ), '//www.wattpad.com' ); spacexchimp_p005_control_link( 'skype', 'Skype', 'skype:YourUsernameHere?call', __( 'Enter your Skype name with prefix <b>skype:</b> and suffix <b>?call</b>, or <b>?add</b>, or <b>?chat</b>, or <b>?userinfo</b> for view profile', $text ), '//www.skype.com' ); spacexchimp_p005_control_link( 'website', 'Personal website', 'https://www.arthurgareginyan.com', __( 'Enter the link to your personal website', $text ), '' ); spacexchimp_p005_control_link( 'email', 'Email', 'mailto:YourUsernameHere@gmail.com', __( 'Enter your email address with prefix <b>mailto:</b>', $text ), '' ); spacexchimp_p005_control_link( 'telephone', 'Telephone', 'tel://1-555-555-5555', __( 'Enter your telephone number with prefix <b>tel://</b>', $text ), '' ); spacexchimp_p005_control_link( 'rss-feed', 'RSS Feed', 'http://YourDomainNameHere.com/feed', __( 'Enter the link to your RSS Feed', $text ), '' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-media-buttons-toolbar-es_ES.mo
CHANGED
Binary file
|
languages/social-media-buttons-toolbar-es_ES.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
"POT-Creation-Date: 2017-09-23 04:51+0300\n"
|
7 |
-
"PO-Revision-Date: 2017-09-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -107,7 +107,7 @@ msgstr "Actualiza el complemento a la versión más reciente y todo estará bien
|
|
107 |
#: inc/php/page.php:30
|
108 |
#, php-format
|
109 |
msgid "by %s Space X-Chimp Studio %s"
|
110 |
-
msgstr ""
|
111 |
|
112 |
#: inc/php/page.php:36
|
113 |
msgid "Version"
|
@@ -131,7 +131,7 @@ msgstr "Tienda"
|
|
131 |
|
132 |
#: inc/php/page.php:63
|
133 |
msgid "Usage Instructions"
|
134 |
-
msgstr ""
|
135 |
|
136 |
#: inc/php/page.php:65
|
137 |
msgid ""
|
@@ -421,7 +421,7 @@ msgstr ""
|
|
421 |
|
422 |
#: inc/php/page.php:188
|
423 |
msgid "Support Me"
|
424 |
-
msgstr ""
|
425 |
|
426 |
#: inc/php/page.php:196 inc/php/settings.php:104 inc/php/sidebar.php:30
|
427 |
msgid "Donate with PayPal"
|
@@ -433,6 +433,8 @@ msgid ""
|
|
433 |
"Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp "
|
434 |
"Studio %s."
|
435 |
msgstr ""
|
|
|
|
|
436 |
|
437 |
#: inc/php/page.php:209
|
438 |
msgid ""
|
@@ -440,6 +442,9 @@ msgid ""
|
|
440 |
"really passionate about my work, I like what I'm doing and hope that you will be "
|
441 |
"enriched by my projects too."
|
442 |
msgstr ""
|
|
|
|
|
|
|
443 |
|
444 |
#: inc/php/page.php:210
|
445 |
msgid ""
|
@@ -449,10 +454,16 @@ msgid ""
|
|
449 |
"income, so every little contribution helps cover my costs and lets me spend more "
|
450 |
"time building things for people like you to enjoy."
|
451 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
|
453 |
#: inc/php/page.php:211
|
454 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
455 |
-
msgstr ""
|
456 |
|
457 |
#: inc/php/page.php:212
|
458 |
msgid "Thank you for your support!"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Development (trunk)\n"
|
6 |
"POT-Creation-Date: 2017-09-23 04:51+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-09-24 16:29+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
107 |
#: inc/php/page.php:30
|
108 |
#, php-format
|
109 |
msgid "by %s Space X-Chimp Studio %s"
|
110 |
+
msgstr "por %s Space X-Chimp Studio %s"
|
111 |
|
112 |
#: inc/php/page.php:36
|
113 |
msgid "Version"
|
131 |
|
132 |
#: inc/php/page.php:63
|
133 |
msgid "Usage Instructions"
|
134 |
+
msgstr "Instrucciones de uso"
|
135 |
|
136 |
#: inc/php/page.php:65
|
137 |
msgid ""
|
421 |
|
422 |
#: inc/php/page.php:188
|
423 |
msgid "Support Me"
|
424 |
+
msgstr "Apoyarme!"
|
425 |
|
426 |
#: inc/php/page.php:196 inc/php/settings.php:104 inc/php/sidebar.php:30
|
427 |
msgid "Donate with PayPal"
|
433 |
"Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp "
|
434 |
"Studio %s."
|
435 |
msgstr ""
|
436 |
+
"¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp "
|
437 |
+
"Studio %s."
|
438 |
|
439 |
#: inc/php/page.php:209
|
440 |
msgid ""
|
442 |
"really passionate about my work, I like what I'm doing and hope that you will be "
|
443 |
"enriched by my projects too."
|
444 |
msgstr ""
|
445 |
+
"Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy "
|
446 |
+
"realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que "
|
447 |
+
"tú también te enriquezcas con mis proyectos."
|
448 |
|
449 |
#: inc/php/page.php:210
|
450 |
msgid ""
|
454 |
"income, so every little contribution helps cover my costs and lets me spend more "
|
455 |
"time building things for people like you to enjoy."
|
456 |
msgstr ""
|
457 |
+
"Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y "
|
458 |
+
"otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son "
|
459 |
+
"útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador "
|
460 |
+
"independiente, sin un ingreso regular, por lo que cada pequeña contribución me "
|
461 |
+
"ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que "
|
462 |
+
"la gente como tú lo disfrute."
|
463 |
|
464 |
#: inc/php/page.php:211
|
465 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
466 |
+
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
467 |
|
468 |
#: inc/php/page.php:212
|
469 |
msgid "Thank you for your support!"
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Social Media Follow Buttons Bar ===
|
2 |
Contributors: Arthur Gareginyan
|
3 |
-
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, wattpad, itunes podcasts, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -120,6 +120,11 @@ It give you finer control over buttons. You can configure they on plugins settin
|
|
120 |
* Trip Advisor
|
121 |
* Stack Overflow
|
122 |
* Stack Exchange
|
|
|
|
|
|
|
|
|
|
|
123 |
* Wattpad
|
124 |
* Personal website
|
125 |
* Email
|
@@ -238,7 +243,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
238 |
* The icon of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
|
239 |
* The banner of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
|
240 |
* The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
|
241 |
-
* Icons [theknot.png, viber.png, etsy.png, tripadvisor.png, stackoverflow.png, stackexchange.png, wattpad.png, itunes-podcasts.png, email.png, facebook.png, linkedin.png, google-play.png, itch.png, mastodon.png, remind.png, trademe.png, vsco.png, hireology.png, kompoz.png, soundblend.png, itunes.png, apple-music.png, medium.png, 500px.png, behance.png, polyvore.png, yellowpages.png, mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, askfm.png, ebay.png, hangouts.png, houzz.png, quora.png, steemit.png, theartstack.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](https://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
|
242 |
* Icons [flickr.png, google-plus.png, vimeo.png, blogger.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, rss-feed.png](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
|
243 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
244 |
* [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
|
@@ -251,6 +256,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
251 |
|
252 |
== Changelog ==
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
= 4.23 =
|
255 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
256 |
|
1 |
=== Social Media Follow Buttons Bar ===
|
2 |
Contributors: Arthur Gareginyan
|
3 |
+
Tags: icon, icon set, button, social, media, social button, social media, social network, follow, follow button, follow link, follow icon, follow me, toolbar, link to profile, facebook, flickr, twitter, instagram, google plus, youtube, google-play, itunes, apple-music, periscope, vimeo, blogger, buzzsprout, livejournal, linkedIn, diaspora, deviantart, xing, pinterest, tumblr, snapchat, twitch, patreon, imdb, soundcloud, plugdj, plug dj, spotify, bandcamp, dloky, amazon, bookbub, goodreads, meetvibe, meetup, steam, beam, mixer, discord, yelp, bloglovin, mediumg, 500px, behance, polyvore, yellowpages, line, itch, itch.io, mastodon, remind, trademe, vsco, hireology, kompoz, soundblend, stumbleupon, whatsapp, vkontakte, vk, vk.com, odnoklassniki, ok, ok.ru, telegram, github, wordpress, codepen, askfm, ebay, hangouts, houzz, quora, steemit, theartstack, theknot, viber, etsy, tripadvisor, stackoverflow, stackexchange, bitbucket, dailypaintworks, flipboard, gab, minds, wattpad, itunes podcasts, skype, personal website, email, telephone, phone, rss feed, rss, feed, tooltips, bootstrap tooltip,
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 4.24
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
120 |
* Trip Advisor
|
121 |
* Stack Overflow
|
122 |
* Stack Exchange
|
123 |
+
* Daily Paintworks
|
124 |
+
* Bitbucket
|
125 |
+
* Gab
|
126 |
+
* Minds
|
127 |
+
* Flipboard
|
128 |
* Wattpad
|
129 |
* Personal website
|
130 |
* Email
|
243 |
* The icon of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
|
244 |
* The banner of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
|
245 |
* The Entrepreneur image that used on banner is from [Pixabay](https://pixabay.com/en/entrepreneur-start-start-up-career-696976/) and licensed under the [Creative Commons CC0](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
|
246 |
+
* Icons [bitbucket.png, dailypaintworks.png, flipboard.png, gab.png, minds.png, theknot.png, viber.png, etsy.png, tripadvisor.png, stackoverflow.png, stackexchange.png, wattpad.png, itunes-podcasts.png, email.png, facebook.png, linkedin.png, google-play.png, itch.png, mastodon.png, remind.png, trademe.png, vsco.png, hireology.png, kompoz.png, soundblend.png, itunes.png, apple-music.png, medium.png, 500px.png, behance.png, polyvore.png, yellowpages.png, mixer.png, telephone.png, bloglovin.png, line.png, stumbleupon.png, whatsapp.png, plugdj.png, deviantart.png, buzzsprout.png, periscope.png, youtube.png, meetvibe.png, wordpress.png, twitter.png, imdb.png, dloky.png, snapchat.png, steam.png, discord.png, twitch.png, amazon.png, bookbub.png, goodreads.png, reddit.png, meetup.png, codepen.png, askfm.png, ebay.png, hangouts.png, houzz.png, quora.png, steemit.png, theartstack.png, instagram.png, patreon.png, bandcamp.png, youtube-gaming.png, xing.png](https://www.iconfinder.com/iconsets/square-logo-buttons?ref=ArthurGareginyan) by [Arthur Gareginyan](https://www.arthurgareginyan.com) and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
|
247 |
* Icons [flickr.png, google-plus.png, vimeo.png, blogger.png, livejournal.png, pinterest.png, tumblr.png, soundcloud.png, spotify.png, yelp.png, vkontakte.png, odnoklassniki.png, telegram.png, github.png, skype.png, website.png, rss-feed.png](https://www.iconfinder.com/iconsets/social-buttons-2?ref=ArthurGareginyan) by Ivlichev Victor Petrovich and licensed under the [Creative Commons (Attribution 3.0 Unported)](http://creativecommons.org/licenses/by/3.0/).
|
248 |
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
249 |
* [Bootstrap-checkbox](https://github.com/vsn4ik/bootstrap-checkbox) is a project of [Vasily A.](https://github.com/vsn4ik), shared under the [MIT license](https://github.com/vsn4ik/bootstrap-checkbox/blob/master/LICENSE).
|
256 |
|
257 |
== Changelog ==
|
258 |
|
259 |
+
= 4.24 =
|
260 |
+
* Added option for the Daily Paintworks.
|
261 |
+
* Added option for the Bitbucket.
|
262 |
+
* Added option for the Gab.
|
263 |
+
* Added option for the Minds.
|
264 |
+
* Added option for the Flipboard.
|
265 |
+
* Fixed an issue because of which the line was displayed behind of the buttons.
|
266 |
+
* Spanish translation updated. (Thanks to Patricio Toledo)
|
267 |
+
|
268 |
= 4.23 =
|
269 |
* At the request of some users, plugin settings page moved to the submenu item in the top-level menu item "Settings", like before.
|
270 |
|
social-media-buttons-toolbar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily add the smart bar with social media follow buttons (not share, only link to your profiles) to any place of your WordPress website.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: https://www.arthurgareginyan.com
|
8 |
+
* Version: 4.24
|
9 |
* License: GPL3
|
10 |
* Text Domain: social-media-buttons-toolbar
|
11 |
* Domain Path: /languages/
|