Version Description
- Fixed issue with twitter share links being broken in some cases
Download this release
Release Info
Developer | wpkube |
Plugin | Kiwi Social Share – Social Media Share Buttons & Icons |
Version | 2.1.4 |
Comparing to | |
See all releases |
Code changes from version 2.1.3 to 2.1.4
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-facebook.php +1 -1
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-linkedin.php +1 -1
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-pinterest.php +1 -1
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-reddit.php +1 -1
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-telegram.php +1 -1
- includes/frontend/social-buttons/class-kiwi-social-share-social-button-twitter.php +1 -1
- includes/lib/cmb2/includes/CMB2_JS.php +1 -1
- kiwi-social-share.php +2 -2
- readme.txt +4 -2
includes/frontend/social-buttons/class-kiwi-social-share-social-button-facebook.php
CHANGED
@@ -30,7 +30,7 @@ final class Kiwi_Social_Share_Social_Button_Facebook extends Kiwi_Social_Share_S
|
|
30 |
|
31 |
/* end-pro-version */
|
32 |
|
33 |
-
return '
|
34 |
}
|
35 |
|
36 |
/**
|
30 |
|
31 |
/* end-pro-version */
|
32 |
|
33 |
+
return 'https://www.facebook.com/sharer.php?u=' . rawurlencode( $url );
|
34 |
}
|
35 |
|
36 |
/**
|
includes/frontend/social-buttons/class-kiwi-social-share-social-button-linkedin.php
CHANGED
@@ -34,7 +34,7 @@ final class Kiwi_Social_Share_Social_Button_LinkedIn extends Kiwi_Social_Share_S
|
|
34 |
|
35 |
/* end-pro-version */
|
36 |
|
37 |
-
return '
|
38 |
}
|
39 |
|
40 |
/**
|
34 |
|
35 |
/* end-pro-version */
|
36 |
|
37 |
+
return 'https://linkedin.com/shareArticle?mini=true&url=' . rawurlencode( $url ) . '&title=' . urlencode( $desc );
|
38 |
}
|
39 |
|
40 |
/**
|
includes/frontend/social-buttons/class-kiwi-social-share-social-button-pinterest.php
CHANGED
@@ -46,7 +46,7 @@ final class Kiwi_Social_Share_Social_Button_Pinterest extends Kiwi_Social_Share_
|
|
46 |
|
47 |
/* end-pro-version */
|
48 |
|
49 |
-
$str = '
|
50 |
|
51 |
if ( ! empty( $media ) ) {
|
52 |
$str .= '&media=' . $media;
|
46 |
|
47 |
/* end-pro-version */
|
48 |
|
49 |
+
$str = 'https://pinterest.com/pin/create/button/?url=' . rawurlencode( $url ) . '&description=' . urlencode( $desc );
|
50 |
|
51 |
if ( ! empty( $media ) ) {
|
52 |
$str .= '&media=' . $media;
|
includes/frontend/social-buttons/class-kiwi-social-share-social-button-reddit.php
CHANGED
@@ -27,7 +27,7 @@ final class Kiwi_Social_Share_Social_Button_Reddit extends Kiwi_Social_Share_Soc
|
|
27 |
$url = $this->short_url;
|
28 |
};
|
29 |
/* end-pro-version */
|
30 |
-
return '
|
31 |
}
|
32 |
|
33 |
/**
|
27 |
$url = $this->short_url;
|
28 |
};
|
29 |
/* end-pro-version */
|
30 |
+
return 'https://reddit.com/submit?url=' . rawurlencode( $url );
|
31 |
}
|
32 |
|
33 |
/**
|
includes/frontend/social-buttons/class-kiwi-social-share-social-button-telegram.php
CHANGED
@@ -32,7 +32,7 @@ final class Kiwi_Social_Share_Social_Button_Telegram extends Kiwi_Social_Share_S
|
|
32 |
|
33 |
/* end-pro-version */
|
34 |
|
35 |
-
return '
|
36 |
}
|
37 |
|
38 |
/**
|
32 |
|
33 |
/* end-pro-version */
|
34 |
|
35 |
+
return 'https://telegram.me/share/url?url=' . rawurlencode( $url ) . '&text=' . strip_tags( $desc );
|
36 |
}
|
37 |
|
38 |
/**
|
includes/frontend/social-buttons/class-kiwi-social-share-social-button-twitter.php
CHANGED
@@ -43,7 +43,7 @@ final class Kiwi_Social_Share_Social_Button_Twitter extends Kiwi_Social_Share_So
|
|
43 |
|
44 |
/* end-pro-version */
|
45 |
|
46 |
-
return '
|
47 |
}
|
48 |
|
49 |
/**
|
43 |
|
44 |
/* end-pro-version */
|
45 |
|
46 |
+
return 'https://twitter.com/intent/tweet?text=' . $desc . '&url=' . rawurlencode( $url ) . $additional;
|
47 |
}
|
48 |
|
49 |
/**
|
includes/lib/cmb2/includes/CMB2_JS.php
CHANGED
@@ -148,7 +148,7 @@ class CMB2_JS {
|
|
148 |
// Only use minified files if SCRIPT_DEBUG is off.
|
149 |
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
150 |
$func = $enqueue ? 'wp_enqueue_script' : 'wp_register_script';
|
151 |
-
$func( 'wp-color-picker-alpha', CMB2_Utils::url( "js/wp-color-picker-alpha{$min}.js" ), array( 'wp-color-picker' ), '2.1.
|
152 |
}
|
153 |
|
154 |
/**
|
148 |
// Only use minified files if SCRIPT_DEBUG is off.
|
149 |
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
150 |
$func = $enqueue ? 'wp_enqueue_script' : 'wp_register_script';
|
151 |
+
$func( 'wp-color-picker-alpha', CMB2_Utils::url( "js/wp-color-picker-alpha{$min}.js" ), array( 'wp-color-picker' ), '2.1.4' );
|
152 |
}
|
153 |
|
154 |
/**
|
kiwi-social-share.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Kiwi Social Share - Social Media Share Buttons & Icons
|
4 |
-
* Version: 2.1.
|
5 |
* Description: Really beautiful & simple social media & share buttons + icons. Simplicity & speed is key with this social media share plugin.
|
6 |
* Author: WPKube
|
7 |
* Author URI: https://www.wpkube.com/
|
@@ -58,7 +58,7 @@ require_once 'includes/class-kiwi-social-share-autoloader.php';
|
|
58 |
* @return object Kiwi_Social_Share
|
59 |
*/
|
60 |
function Kiwi_Social_Share() {
|
61 |
-
$instance = Kiwi_Social_Share::instance( __FILE__, '2.1.
|
62 |
|
63 |
if ( is_null( $instance->settings ) ) {
|
64 |
$instance->settings = Kiwi_Social_Share_Settings::instance( $instance );
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Kiwi Social Share - Social Media Share Buttons & Icons
|
4 |
+
* Version: 2.1.4
|
5 |
* Description: Really beautiful & simple social media & share buttons + icons. Simplicity & speed is key with this social media share plugin.
|
6 |
* Author: WPKube
|
7 |
* Author URI: https://www.wpkube.com/
|
58 |
* @return object Kiwi_Social_Share
|
59 |
*/
|
60 |
function Kiwi_Social_Share() {
|
61 |
+
$instance = Kiwi_Social_Share::instance( __FILE__, '2.1.4' );
|
62 |
|
63 |
if ( is_null( $instance->settings ) ) {
|
64 |
$instance->settings = Kiwi_Social_Share_Settings::instance( $instance );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Contributors: wpkube
|
4 |
Tags: social media button, social share button, social floating bar, social share bar, facebook share, social sharing icons, twitter share, woocommerce sharing, share buttons, pinterest share, social share counters
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -77,6 +77,8 @@ Floating Bar Filters
|
|
77 |
kiwi_after_floating_bar
|
78 |
|
79 |
== Changelog ==
|
|
|
|
|
80 |
|
81 |
= 2.1.3 =
|
82 |
* Fixed security issues
|
3 |
Contributors: wpkube
|
4 |
Tags: social media button, social share button, social floating bar, social share bar, facebook share, social sharing icons, twitter share, woocommerce sharing, share buttons, pinterest share, social share counters
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 5.8
|
7 |
+
Stable tag: 2.1.4
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
77 |
kiwi_after_floating_bar
|
78 |
|
79 |
== Changelog ==
|
80 |
+
= 2.1.4 =
|
81 |
+
* Fixed issue with twitter share links being broken in some cases
|
82 |
|
83 |
= 2.1.3 =
|
84 |
* Fixed security issues
|