Shortcodes by Angie Makes - Version 1.54

Version Description

Download this release

Release Info

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

Code changes from version 1.53 to 1.54

Files changed (4) hide show
  1. README.md +4 -0
  2. includes/settings.php +2 -1
  3. readme.txt +4 -0
  4. wc-shortcodes.php +2 -2
README.md CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
66
 
67
  ## Changelog ##
68
 
 
 
 
 
69
  ### Version 1.53
70
 
71
  * Added Icon+Text option for share buttons
66
 
67
  ## Changelog ##
68
 
69
+ ### Version 1.54
70
+
71
+ * Fixed bug with image settings not previewing images
72
+
73
  ### Version 1.53
74
 
75
  * Added Icon+Text option for share buttons
includes/settings.php CHANGED
@@ -362,8 +362,9 @@ function wc_shortcodes_options_display_image_field( $args ) {
362
 
363
  // preview image default style
364
  $style = '';
365
- if ( empty( $val['image'] ) )
366
  $style = ' style="display:none"';
 
367
  ?>
368
 
369
  <div class="wc-shortcodes-image-field">
362
 
363
  // preview image default style
364
  $style = '';
365
+ if ( empty( $val ) ) {
366
  $style = ' style="display:none"';
367
+ }
368
  ?>
369
 
370
  <div class="wc-shortcodes-image-field">
readme.txt CHANGED
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
88
 
89
  == Changelog ==
90
 
 
 
 
 
91
  ### Version 1.53
92
 
93
  * Added Icon+Text option for share buttons
88
 
89
  == Changelog ==
90
 
91
+ ### Version 1.54
92
+
93
+ * Fixed bug with image settings not previewing images
94
+
95
  ### Version 1.53
96
 
97
  * Added Icon+Text option for share buttons
wc-shortcodes.php CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://webplantmedia.com/starter-themes/wordpresscanvas/features/sho
5
  Description: A family of shortcodes to enhance site functionality.
6
  Author: Chris Baldelomar
7
  Author URI: http://webplantmedia.com/
8
- Version: 1.53
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_SHORTCODES_VERSION', '1.53' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
5
  Description: A family of shortcodes to enhance site functionality.
6
  Author: Chris Baldelomar
7
  Author URI: http://webplantmedia.com/
8
+ Version: 1.54
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_SHORTCODES_VERSION', '1.54' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );