Shortcodes by Angie Makes - Version 3.18

Version Description

Download this release

Release Info

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

Code changes from version 3.17 to 3.18

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.17 ###
110
 
111
  * Fixed bug with class not being applied to button shortcode.
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.18 ###
110
+
111
+ * Fixed bug with social icons widget title being out of place.
112
+
113
  ### Version 3.17 ###
114
 
115
  * Fixed bug with class not being applied to button shortcode.
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.17';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.18';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
public/widgets/widget-social-icons.php CHANGED
@@ -13,9 +13,6 @@ class WPC_Shortcodes_Widget_Social_Icons extends WP_Widget {
13
 
14
  $instance['title'] = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
15
 
16
- if ( !empty($instance['title']) )
17
- echo $args['before_title'] . $instance['title'] . $args['after_title'];
18
-
19
  $shortcode = array();
20
  foreach ( $instance as $key => $value ) {
21
  $shortcode[] = $key . '="' . $value . '"';
@@ -30,6 +27,10 @@ class WPC_Shortcodes_Widget_Social_Icons extends WP_Widget {
30
  }
31
 
32
  echo $args['before_widget'];
 
 
 
 
33
  echo do_shortcode( $shortcode );
34
  echo $args['after_widget'];
35
  }
13
 
14
  $instance['title'] = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
15
 
 
 
 
16
  $shortcode = array();
17
  foreach ( $instance as $key => $value ) {
18
  $shortcode[] = $key . '="' . $value . '"';
27
  }
28
 
29
  echo $args['before_widget'];
30
+
31
+ if ( !empty($instance['title']) )
32
+ echo $args['before_title'] . $instance['title'] . $args['after_title'];
33
+
34
  echo do_shortcode( $shortcode );
35
  echo $args['after_widget'];
36
  }
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.17 =
117
 
118
  * Fixed bug with class not being applied to button shortcode.
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.18 =
117
+
118
+ * Fixed bug with social icons widget title being out of place.
119
+
120
  = Version 3.17 =
121
 
122
  * Fixed bug with class not being applied to button shortcode.
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.17
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.18
9
  License: GPLv2 or later
10
  */
11