Genesis Columns Advanced - Version 2.0.2

Version Description

(2016-8-14) = * Added default styling to columns-container shortcode to fix styling bug

Download this release

Release Info

Developer ndiego
Plugin Icon 128x128 Genesis Columns Advanced
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

css/gca-column-styles.css CHANGED
@@ -129,3 +129,8 @@
129
  clear: both;
130
  margin-bottom: 30px;
131
  }
 
 
 
 
 
129
  clear: both;
130
  margin-bottom: 30px;
131
  }
132
+
133
+ .columns-container {
134
+ clear: both;
135
+ overflow: hidden;
136
+ }
genesis-columns-advanced.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Genesis Columns Advanced
4
  * Plugin URI: http://www.nickdiego.com/plugins/genesis-columns-advanced
5
  * Description: Adds shortcodes to easily create up to 42 different columned layouts.
6
- * Version: 2.0.1
7
  * Author: Nick Diego
8
  * Author URI: http://www.nickdiego.com
9
  * Text Domain: genesis-columns-advanced
@@ -271,12 +271,12 @@ class Genesis_Columns_Advanced {
271
 
272
  // Setup the classes
273
  $class = ' ' . $all_shortcodes[$name]['class'];
274
- $extra_classes = sanitize_text_field( $atts['class'] ); /* NEED TO CHECK THIS SANITIZATION METHOD */
275
  $extra_classes = ( $extra_classes != '' ) ? ' ' . $extra_classes : '';
276
  $class = ' class="' . $identifier . $class . $extra_classes . '"';
277
 
278
  // Setup the styles
279
- $style = sanitize_text_field( $atts['style'] ); /* NEED TO CHECK THIS SANITIZATION METHOD */
280
  $style = ( $style != '' ) ? ' style="' . $style . '"' : '';
281
 
282
  // Setup the content
3
  * Plugin Name: Genesis Columns Advanced
4
  * Plugin URI: http://www.nickdiego.com/plugins/genesis-columns-advanced
5
  * Description: Adds shortcodes to easily create up to 42 different columned layouts.
6
+ * Version: 2.0.2
7
  * Author: Nick Diego
8
  * Author URI: http://www.nickdiego.com
9
  * Text Domain: genesis-columns-advanced
271
 
272
  // Setup the classes
273
  $class = ' ' . $all_shortcodes[$name]['class'];
274
+ $extra_classes = sanitize_text_field( $atts['class'] );
275
  $extra_classes = ( $extra_classes != '' ) ? ' ' . $extra_classes : '';
276
  $class = ' class="' . $identifier . $class . $extra_classes . '"';
277
 
278
  // Setup the styles
279
+ $style = sanitize_text_field( $atts['style'] );
280
  $style = ( $style != '' ) ? ' style="' . $style . '"' : '';
281
 
282
  // Setup the content
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: ndiego, outermostdesign
3
  Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=D2LLR72CD82JJ
4
  Tags: columns, shortcode, genesis, Genesis Framework, genesiswp, TinyMCE, admin
5
  Requires at least: 3.6
6
- Tested up to: 4.5
7
- Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -136,6 +136,9 @@ Let us know what you are looking for in the support forums, and we will do our b
136
 
137
  == Changelog ==
138
 
 
 
 
139
  = 2.0.1 =
140
  * Fixed bug with missing styles for the vertical-spacer shortcode (Thanks DanaE23!)
141
 
3
  Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=D2LLR72CD82JJ
4
  Tags: columns, shortcode, genesis, Genesis Framework, genesiswp, TinyMCE, admin
5
  Requires at least: 3.6
6
+ Tested up to: 4.6
7
+ Stable tag: 2.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
136
 
137
  == Changelog ==
138
 
139
+ = 2.0.2 (2016-8-14) =
140
+ * Added default styling to columns-container shortcode to fix styling bug
141
+
142
  = 2.0.1 =
143
  * Fixed bug with missing styles for the vertical-spacer shortcode (Thanks DanaE23!)
144