Shortcodes by Angie Makes - Version 3.22

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Shortcodes by Angie Makes
Version 3.22
Comparing to
See all releases

Code changes from version 3.21 to 3.22

README.md CHANGED
@@ -106,6 +106,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
106
 
107
  ## Changelog ##
108
 
 
 
 
 
109
  ### Version 3.21 ###
110
 
111
  * Added retina support for social and share icon images.
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.22 ###
110
+
111
+ * fixed format class name in social icons and share icons
112
+
113
  ### Version 3.21 ###
114
 
115
  * Added retina support for social and share icon images.
public/class-register.php CHANGED
@@ -337,7 +337,7 @@ class WPC_Shortcodes_Register extends WPC_Shortcodes_Vars {
337
  $classes[] = 'wc-shortcodes-clearfix';
338
  $classes[] = 'wc-shortcodes-columns-'.$atts['columns'];
339
  $classes[] = 'wc-shortcodes-maxheight-'.$atts['maxheight'];
340
- $classes[] = 'wc-shortcodes-social-icons-format-'.$atts['format'];
341
 
342
  if ( ! empty( $atts['class'] ) ) {
343
  $atts['class'] = ' ' . $atts['class'];
@@ -1415,7 +1415,7 @@ class WPC_Shortcodes_Register extends WPC_Shortcodes_Vars {
1415
  $classes = array();
1416
 
1417
  $classes[] = 'wc-shortcodes-share-buttons';
1418
- $classes[] = 'wc-shortcodes-share-buttons-format-'.$format;
1419
  $classes[] = 'wc-shortcodes-share-buttons-size-'.$size;
1420
  if ( ! empty( $class ) ) {
1421
  $classes[] = $class;
337
  $classes[] = 'wc-shortcodes-clearfix';
338
  $classes[] = 'wc-shortcodes-columns-'.$atts['columns'];
339
  $classes[] = 'wc-shortcodes-maxheight-'.$atts['maxheight'];
340
+ $classes[] = 'wc-shortcodes-social-icons-format-'.str_replace( '_', '-', $atts['format'] );
341
 
342
  if ( ! empty( $atts['class'] ) ) {
343
  $atts['class'] = ' ' . $atts['class'];
1415
  $classes = array();
1416
 
1417
  $classes[] = 'wc-shortcodes-share-buttons';
1418
+ $classes[] = 'wc-shortcodes-share-buttons-format-'.str_replace( '_', '-', $format );
1419
  $classes[] = 'wc-shortcodes-share-buttons-size-'.$size;
1420
  if ( ! empty( $class ) ) {
1421
  $classes[] = $class;
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.21';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.22';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
readme.txt CHANGED
@@ -113,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
113
 
114
  == Changelog ==
115
 
 
 
 
 
116
  = Version 3.21 =
117
 
118
  * Added retina support for social and share icon images.
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.22 =
117
+
118
+ * fixed format class name in social icons and share icons
119
+
120
  = Version 3.21 =
121
 
122
  * Added retina support for social and share icon images.
wc-shortcodes.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 3.21
9
  License: GPLv2 or later
10
  */
11
 
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 3.22
9
  License: GPLv2 or later
10
  */
11