Ocean Social Sharing - Version 1.0.7

Version Description

  • Fixed: Issue with the Twitter button if you add a description via Yoast SEO.
Download this release

Release Info

Developer oceanwp
Plugin Icon 128x128 Ocean Social Sharing
Version 1.0.7
Comparing to
See all releases

Code changes from version 1.0.6 to 1.0.7

README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ocean Social Sharing [![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
2
+
3
+ **Contributors:** Nick
4
+ **Requires at least:** WordPress 4.4
5
+ **Tested up to:** WordPress 4.9
6
+ **Stable tag:** 1.0.7
7
+ **License:** GPLv2 or later
8
+ **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
9
+
10
+ ## Description
11
+
12
+ A simple plugin to add social share buttons to your posts.
13
+ This plugin requires the [OceanWP](https://oceanwp.org/) theme to be installed.
ocean-social-sharing.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Ocean Social Sharing
4
  * Plugin URI: https://oceanwp.org/extension/ocean-social-sharing/
5
  * Description: A simple plugin to add social share buttons to your posts.
6
- * Version: 1.0.6
7
  * Author: OceanWP
8
  * Author URI: https://oceanwp.org/
9
  * Requires at least: 4.5.0
10
- * Tested up to: 4.8.2
11
  *
12
  * Text Domain: ocean-social-sharing
13
  * Domain Path: /languages/
3
  * Plugin Name: Ocean Social Sharing
4
  * Plugin URI: https://oceanwp.org/extension/ocean-social-sharing/
5
  * Description: A simple plugin to add social share buttons to your posts.
6
+ * Version: 1.0.7
7
  * Author: OceanWP
8
  * Author URI: https://oceanwp.org/
9
  * Requires at least: 4.5.0
10
+ * Tested up to: 4.9
11
  *
12
  * Text Domain: ocean-social-sharing
13
  * Domain Path: /languages/
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: oceanwp
3
  Tags: social, social sharing, social share, share, oceanwp
4
  Requires at least: 4.5
5
- Tested up to: 4.8.2
6
- Stable tag: 1.0.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -47,6 +47,9 @@ This plugin will only work with the [OceanWP](https://oceanwp.org/) theme.
47
 
48
  == Changelog ==
49
 
 
 
 
50
  = 1.0.6 =
51
  - Added: New social networks: Viber, VK, Reddit, Tumblr and Viadeo.
52
  - Added: Three styles: Minimal, Colored and Dark.
2
  Contributors: oceanwp
3
  Tags: social, social sharing, social share, share, oceanwp
4
  Requires at least: 4.5
5
+ Tested up to: 4.9
6
+ Stable tag: 1.0.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
47
 
48
  == Changelog ==
49
 
50
+ = 1.0.7 =
51
+ - Fixed: Issue with the Twitter button if you add a description via Yoast SEO.
52
+
53
  = 1.0.6 =
54
  - Added: New social networks: Viber, VK, Reddit, Tumblr and Viadeo.
55
  - Added: Three styles: Minimal, Colored and Dark.
template/social-share.php CHANGED
@@ -87,7 +87,7 @@ $classes = implode( ' ', $classes ); ?>
87
  }
88
  if ( $meta = get_post_meta( $post_id, '_yoast_wpseo_twitter-description', true ) ) {
89
  $title = $title .': '. $meta;
90
- $title = rawurlencode( $title );
91
  }
92
  }
93
 
87
  }
88
  if ( $meta = get_post_meta( $post_id, '_yoast_wpseo_twitter-description', true ) ) {
89
  $title = $title .': '. $meta;
90
+ $title = $title;
91
  }
92
  }
93