Social Media Share Buttons | MashShare - Version 3.7.5

Version Description

  • Fix: Validate Open Graph Data button is broken
Download this release

Release Info

Developer ReneHermi
Plugin Icon 128x128 Social Media Share Buttons | MashShare
Version 3.7.5
Comparing to
See all releases

Code changes from version 3.7.4 to 3.7.5

includes/admin/meta-box/inc/fields/custom-html.php CHANGED
@@ -34,7 +34,7 @@ class MASHSB_RWMB_Custom_Html_Field extends MASHSB_RWMB_Field {
34
  //var_dump( $post );
35
  if( isset( $post ) && $post->post_status == "publish" ) {
36
  $url = get_permalink( $post->ID );
37
- return '<a href="https://developers.facebook.com/tools/debug/og/object?q=' . $url . '" target="_blank" rel="noopener"> Validate Open Graph data </a>';
38
  } else {
39
  return '';
40
  }
34
  //var_dump( $post );
35
  if( isset( $post ) && $post->post_status == "publish" ) {
36
  $url = get_permalink( $post->ID );
37
+ return '<a href="https://developers.facebook.com/tools/debug/?q=' . $url . '" target="_blank" rel="noopener"> Validate Open Graph data </a>';
38
  } else {
39
  return '';
40
  }
includes/admin/meta-box/inc/fields/validate-og.php CHANGED
@@ -34,7 +34,7 @@ class MASHSB_RWMB_Validate_Og_Field extends MASHSB_RWMB_Field {
34
  //var_dump( $post );
35
  if( isset( $post ) && $post->post_status == "publish" ) {
36
  $url = get_permalink( $post->ID );
37
- return '<a href="https://developers.facebook.com/tools/debug/og/object?q=' . $url . '" target="_blank" rel="noopener" class="button-small"> Validate Open Graph data </a>' . $field['helper'];
38
  } else {
39
  return '';
40
  }
34
  //var_dump( $post );
35
  if( isset( $post ) && $post->post_status == "publish" ) {
36
  $url = get_permalink( $post->ID );
37
+ return '<a href="https://developers.facebook.com/tools/debug/?q=' . $url . '" target="_blank" rel="noopener" class="button-small"> Validate Open Graph data </a>' . $field['helper'];
38
  } else {
39
  return '';
40
  }
mashshare.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Mashshare is a Share functionality inspired by the the great website Mashable for Facebook and Twitter. More networks available.
7
  * Author: René Hermenau
8
  * Author URI: https://www.mashshare.net
9
- * Version: 3.7.4
10
  * Text Domain: mashsb
11
  * Domain Path: /languages
12
 
@@ -35,7 +35,7 @@ if( !defined( 'ABSPATH' ) )
35
 
36
  // Plugin version
37
  if( !defined( 'MASHSB_VERSION' ) ) {
38
- define( 'MASHSB_VERSION', '3.7.4' );
39
  }
40
 
41
  // Debug mode
6
  * Description: Mashshare is a Share functionality inspired by the the great website Mashable for Facebook and Twitter. More networks available.
7
  * Author: René Hermenau
8
  * Author URI: https://www.mashshare.net
9
+ * Version: 3.7.5
10
  * Text Domain: mashsb
11
  * Domain Path: /languages
12
 
35
 
36
  // Plugin version
37
  if( !defined( 'MASHSB_VERSION' ) ) {
38
+ define( 'MASHSB_VERSION', '3.7.5' );
39
  }
40
 
41
  // Debug mode
readme.txt CHANGED
@@ -9,7 +9,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
  Tags: Share buttons, Social Sharing, social media, Facebook, Twitter, Subscribe, Traffic posts, pages, widget, social share buttons, analytics, email, dsgvo
10
  Requires at least: 3.6+
11
  Tested up to: 5.4
12
- Stable tag: 3.7.4
13
  Requires PHP: 5.2
14
 
15
  Social Media Share Buttons for Twitter, Facebook and other social networks. Highly customizable Social Media ecosystem
@@ -250,6 +250,9 @@ Read here more about this: http://docs.mashshare.net/article/10-facebook-is-show
250
 
251
  == Changelog ==
252
 
 
 
 
253
  = 3.7.4 =
254
  * New: Supports up to WordPress 5.4
255
  * Fix: Share count not collected for all pages on large sites with huge traffic if caching plugins are used
@@ -295,8 +298,7 @@ https://www.mashshare.net/changelog/
295
 
296
  == Upgrade Notice ==
297
 
298
- = 3.7.4 =
299
- * New: Supports up to WordPress 5.4
300
- * Fix: Share count not collected for all pages on large sites with huge traffic if caching plugins are used
301
 
302
 
9
  Tags: Share buttons, Social Sharing, social media, Facebook, Twitter, Subscribe, Traffic posts, pages, widget, social share buttons, analytics, email, dsgvo
10
  Requires at least: 3.6+
11
  Tested up to: 5.4
12
+ Stable tag: 3.7.5
13
  Requires PHP: 5.2
14
 
15
  Social Media Share Buttons for Twitter, Facebook and other social networks. Highly customizable Social Media ecosystem
250
 
251
  == Changelog ==
252
 
253
+ = 3.7.5 =
254
+ * Fix: Validate Open Graph Data button is broken
255
+
256
  = 3.7.4 =
257
  * New: Supports up to WordPress 5.4
258
  * Fix: Share count not collected for all pages on large sites with huge traffic if caching plugins are used
298
 
299
  == Upgrade Notice ==
300
 
301
+ = 3.7.5 =
302
+ * Fix: Validate Open Graph Data button is broken
 
303
 
304