Hupso Share Buttons for Twitter, Facebook & Google+ - Version 4.0.0

Version Description

  • Added Russian share image
  • Compatible with Wordpress 4.2.1
  • Improved compatibility with theme Twenty Fifteen
Download this release

Release Info

Developer kasal
Plugin Icon 128x128 Hupso Share Buttons for Twitter, Facebook & Google+
Version 4.0.0
Comparing to
See all releases

Code changes from version 3.9.25 to 4.0.0

Files changed (3) hide show
  1. readme.txt +17 -3
  2. share-buttons-hupso.php +3 -2
  3. style.css +8 -1
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: kasal
3
  Donate link: http://www.hupso.com/
4
  Tags: twitter, facebook, google, social sharing, share buttons, social share buttons, share icons, stumbleupon, addthis, sharethis, sexybookmarks, addtoany, multisite, pinterest, print, tumblr, bebo, social media
5
  Requires at least: 2.8
6
- Tested up to: 3.9.1
7
- Stable tag: 3.9.25
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -196,6 +196,15 @@ Hide share image (from settings) and add this CSS to your style.css file:
196
 
197
  Then adjust the values so that it looks great with your theme.
198
 
 
 
 
 
 
 
 
 
 
199
  = Facebook like button is seen through my top navigation bar while other buttons are ok. How can fix it? =
200
 
201
  Add this CSS to your style.css file:
@@ -296,6 +305,11 @@ Please send bug reports and suggestion using [this feedback form](http://www.hup
296
 
297
  == Changelog ==
298
 
 
 
 
 
 
299
  = 3.9.25 =
300
  * Shortcodes with custom urls are now working properly (example: [hupso url="http://www.yahoo.com"])
301
 
@@ -330,7 +344,7 @@ Please send bug reports and suggestion using [this feedback form](http://www.hup
330
  * Better Pinterest dialog for selecting images
331
 
332
  = 3.9.16 =
333
- * media6degrees.com).
334
  * Added Czech translation
335
 
336
  = 3.9.15 =
3
  Donate link: http://www.hupso.com/
4
  Tags: twitter, facebook, google, social sharing, share buttons, social share buttons, share icons, stumbleupon, addthis, sharethis, sexybookmarks, addtoany, multisite, pinterest, print, tumblr, bebo, social media
5
  Requires at least: 2.8
6
+ Tested up to: 4.2.1
7
+ Stable tag: 4.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
196
 
197
  Then adjust the values so that it looks great with your theme.
198
 
199
+ = How can I increase the space between the buttons? =
200
+
201
+ Add this CSS to your style.css file:
202
+
203
+ `.hupso_c > div > a > img {
204
+ padding-right: 7px !important;
205
+ }`
206
+
207
+
208
  = Facebook like button is seen through my top navigation bar while other buttons are ok. How can fix it? =
209
 
210
  Add this CSS to your style.css file:
305
 
306
  == Changelog ==
307
 
308
+ = 4.0.0 =
309
+ * Added Russian share image
310
+ * Compatible with Wordpress 4.2.1
311
+ * Improved compatibility with theme Twenty Fifteen
312
+
313
  = 3.9.25 =
314
  * Shortcodes with custom urls are now working properly (example: [hupso url="http://www.yahoo.com"])
315
 
344
  * Better Pinterest dialog for selecting images
345
 
346
  = 3.9.16 =
347
+ * Included hupso.pot file for translation. If you would like to translate into your language, send message [here](http://www.hupso.com/share/feedback/).
348
  * Added Czech translation
349
 
350
  = 3.9.15 =
share-buttons-hupso.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Hupso Share Buttons for Twitter, Facebook & Google+
4
  Plugin URI: http://www.hupso.com/share/
5
  Description: Add simple social sharing buttons to your articles. Your visitors will be able to easily share your content on the most popular social networks: Twitter, Facebook, Google Plus, Linkedin, Tumblr, Pinterest, StumbleUpon, Digg, Reddit, Bebo, VKontakte and Delicous. These services are used by millions of people every day, so sharing your content there will increase traffic to your website.
6
- Version: 3.9.25
7
  Author: kasal
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -12,7 +12,7 @@ Domain Path: /languages
12
  */
13
 
14
  global $HUPSO_VERSION;
15
- $HUPSO_VERSION = '3.9.25';
16
 
17
  $hupso_dev = '';
18
  $hupso_state = 'normal';
@@ -481,6 +481,7 @@ function hupso_admin_settings_show() {
481
  <option value="it" <?php if ($hupso_share_image_lang == 'it') echo ' selected ';?>>Italian</option>
482
  <option value="pt" <?php if ($hupso_share_image_lang == 'pt') echo ' selected ';?>>Portuguese</option>
483
  <option value="es" <?php if ($hupso_share_image_lang == 'es') echo ' selected ';?>>Spanish</option>
 
484
  <option value="id" <?php if ($hupso_share_image_lang == 'id') echo ' selected ';?>>Indonesian</option>
485
  <option value="da" <?php if ($hupso_share_image_lang == 'da') echo ' selected ';?>>Danish</option>
486
  <option value="nl" <?php if ($hupso_share_image_lang == 'nl') echo ' selected ';?>>Dutch</option>
3
  Plugin Name: Hupso Share Buttons for Twitter, Facebook & Google+
4
  Plugin URI: http://www.hupso.com/share/
5
  Description: Add simple social sharing buttons to your articles. Your visitors will be able to easily share your content on the most popular social networks: Twitter, Facebook, Google Plus, Linkedin, Tumblr, Pinterest, StumbleUpon, Digg, Reddit, Bebo, VKontakte and Delicous. These services are used by millions of people every day, so sharing your content there will increase traffic to your website.
6
+ Version: 4.0.0
7
  Author: kasal
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  */
13
 
14
  global $HUPSO_VERSION;
15
+ $HUPSO_VERSION = '4.0.0';
16
 
17
  $hupso_dev = '';
18
  $hupso_state = 'normal';
481
  <option value="it" <?php if ($hupso_share_image_lang == 'it') echo ' selected ';?>>Italian</option>
482
  <option value="pt" <?php if ($hupso_share_image_lang == 'pt') echo ' selected ';?>>Portuguese</option>
483
  <option value="es" <?php if ($hupso_share_image_lang == 'es') echo ' selected ';?>>Spanish</option>
484
+ <option value="ru" <?php if ($hupso_share_image_lang == 'ru') echo ' selected ';?>>Russian</option>
485
  <option value="id" <?php if ($hupso_share_image_lang == 'id') echo ' selected ';?>>Indonesian</option>
486
  <option value="da" <?php if ($hupso_share_image_lang == 'da') echo ' selected ';?>>Danish</option>
487
  <option value="nl" <?php if ($hupso_share_image_lang == 'nl') echo ' selected ';?>>Dutch</option>
style.css CHANGED
@@ -1,4 +1,11 @@
1
- .fb_iframe_widget_lift {
2
  max-width: none !important;
3
  }
4
 
 
 
 
 
 
 
 
1
+ .fb_iframe_widget_lift {
2
  max-width: none !important;
3
  }
4
 
5
+ .hupso_c > div > a > img {
6
+ box-sizing: content-box;
7
+ vertical-align: baseline;
8
+ }
9
+
10
+ .hupso_c > div > a {
11
+ border-bottom: none;}