Genesis Columns Advanced - Version 1.0.2

Version Description

  • Fixed bug associated with columns with a width of two-fourths
Download this release

Release Info

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

Code changes from version 1.0.1 to 1.0.2

gca-shortcodes.php CHANGED
@@ -75,12 +75,12 @@ add_shortcode('one-fourth','gca_onefourth');
75
  function gca_twofourths_first( $atts, $content = null ) {
76
  return '<div class="two-fourths first">' . gca_strip_autop( $content ) . '</div>';
77
  }
78
- add_shortcode("two-fourth-first","gca_twofourths_first");
79
 
80
  function gca_twofourths( $atts, $content = null ) {
81
  return '<div class="two-fourths">' . gca_strip_autop( $content ) . '</div>';
82
  }
83
- add_shortcode('two-fourth','gca_twofourths');
84
 
85
  function gca_threefourths_first( $atts, $content = null ) {
86
  return '<div class="three-fourths first">' . gca_strip_autop( $content ) . '</div>';
75
  function gca_twofourths_first( $atts, $content = null ) {
76
  return '<div class="two-fourths first">' . gca_strip_autop( $content ) . '</div>';
77
  }
78
+ add_shortcode("two-fourths-first","gca_twofourths_first");
79
 
80
  function gca_twofourths( $atts, $content = null ) {
81
  return '<div class="two-fourths">' . gca_strip_autop( $content ) . '</div>';
82
  }
83
+ add_shortcode('two-fourths','gca_twofourths');
84
 
85
  function gca_threefourths_first( $atts, $content = null ) {
86
  return '<div class="three-fourths first">' . gca_strip_autop( $content ) . '</div>';
genesis-columns-advanced.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Genesis Columns Advanced
4
  Plugin URI: http://www.outermostdesign.com
5
  Description: Generates shortcodes for all 35 possible column layouts when using Genesis column classes.
6
- Version: 1.0.1
7
  Author: Nick Diego
8
  Author URI: http://www.outermostdesign.com
9
  Text Domain: genesis-custom-headers
@@ -34,7 +34,7 @@ include_once dirname( __FILE__ ) . '/gca-shortcodes.php';
34
 
35
  add_action('admin_head', 'gca_mce_button');
36
  /**
37
- * Adds our columns shortcode tinymce button
38
  */
39
  function gca_mce_button() {
40
  // check user permissions
3
  Plugin Name: Genesis Columns Advanced
4
  Plugin URI: http://www.outermostdesign.com
5
  Description: Generates shortcodes for all 35 possible column layouts when using Genesis column classes.
6
+ Version: 1.0.2
7
  Author: Nick Diego
8
  Author URI: http://www.outermostdesign.com
9
  Text Domain: genesis-custom-headers
34
 
35
  add_action('admin_head', 'gca_mce_button');
36
  /**
37
+ * Adds our columns shortcode tinymce button
38
  */
39
  function gca_mce_button() {
40
  // check user permissions
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: ndiego, outermostdesign
3
  Tags: columns, shortcode, genesis, Genesis Framework, genesiswp, TinyMCE, admin
4
  Requires at least: 3.6
5
- Tested up to: 4.2.2
6
- Stable tag: 1.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -55,3 +55,6 @@ This was a conscious decision in order for the plugin to stay inline with the co
55
  = 1.0.1 =
56
  * Fixed bug associated with wpautop
57
 
 
 
 
2
  Contributors: ndiego, outermostdesign
3
  Tags: columns, shortcode, genesis, Genesis Framework, genesiswp, TinyMCE, admin
4
  Requires at least: 3.6
5
+ Tested up to: 4.3
6
+ Stable tag: 1.0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
55
  = 1.0.1 =
56
  * Fixed bug associated with wpautop
57
 
58
+ = 1.0.2 =
59
+ * Fixed bug associated with columns with a width of two-fourths
60
+