Version Description
- Fixes issue with "highlight to share" not working ( CSS/JS not loaded ) for some pages
Download this release
Release Info
Developer | wpkube |
Plugin | Kiwi Social Share – Social Media Share Buttons & Icons |
Version | 2.0.16 |
Comparing to | |
See all releases |
Code changes from version 2.0.15 to 2.0.16
includes/lib/class-kiwi-social-share-highlight-share.php
CHANGED
@@ -100,6 +100,11 @@ class Kiwi_Social_Share_Highlight_Share {
|
|
100 |
*
|
101 |
*/
|
102 |
public function highlighter_section() {
|
|
|
|
|
|
|
|
|
|
|
103 |
$additional = '';
|
104 |
$tracking_html = '';
|
105 |
|
100 |
*
|
101 |
*/
|
102 |
public function highlighter_section() {
|
103 |
+
|
104 |
+
$kiwi = Kiwi_Social_Share::instance();
|
105 |
+
wp_enqueue_style( $kiwi->_token . '-frontend' );
|
106 |
+
wp_enqueue_script( $kiwi->_token . '-frontend' );
|
107 |
+
|
108 |
$additional = '';
|
109 |
$tracking_html = '';
|
110 |
|
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.0.
|
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.0.
|
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.0.16
|
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.0.16' );
|
62 |
|
63 |
if ( is_null( $instance->settings ) ) {
|
64 |
$instance->settings = Kiwi_Social_Share_Settings::instance( $instance );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.2
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -78,6 +78,9 @@ Floating Bar Filters
|
|
78 |
|
79 |
== Changelog ==
|
80 |
|
|
|
|
|
|
|
81 |
= 2.0.15 =
|
82 |
* Facebook share counts no longer work without a Facebook Developer App (https://developers.facebook.com/apps). Options to support connection via Facebook App are added in WP Admin > Kiwi > Social Identity. The options are "Facebook App Id" and "Facebook App Secret"
|
83 |
|
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.2
|
7 |
+
Stable tag: 2.0.16
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
78 |
|
79 |
== Changelog ==
|
80 |
|
81 |
+
= 2.0.16 =
|
82 |
+
* Fixes issue with "highlight to share" not working ( CSS/JS not loaded ) for some pages
|
83 |
+
|
84 |
= 2.0.15 =
|
85 |
* Facebook share counts no longer work without a Facebook Developer App (https://developers.facebook.com/apps). Options to support connection via Facebook App are added in WP Admin > Kiwi > Social Identity. The options are "Facebook App Id" and "Facebook App Secret"
|
86 |
|