Shortcodes by Angie Makes - Version 1.77

Version Description

Download this release

Release Info

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

Code changes from version 1.76 to 1.77

README.md CHANGED
@@ -66,7 +66,7 @@ Use the shortcode manager in the TinyMCE text editor
66
 
67
  ## Changelog ##
68
 
69
- ### Version 1.76
70
 
71
  * minor update to shortcodes row structure
72
  * Made sure rslider CSS is not applied to other plugins
66
 
67
  ## Changelog ##
68
 
69
+ ### Version 1.77
70
 
71
  * minor update to shortcodes row structure
72
  * Made sure rslider CSS is not applied to other plugins
includes/shortcode-functions.php CHANGED
@@ -595,7 +595,7 @@ if( !function_exists('wc_shortcodes_column') ) {
595
  */
596
  if( !function_exists('wc_shortcodes_row') ) {
597
  function wc_shortcodes_row( $atts, $content = null ){
598
- return '<div class="wc-shortcodes-row wc-shortcodes-item"><div class="wc-shortcodes-clearfix">' . do_shortcode($content) . '</div></div>';
599
  }
600
  }
601
 
@@ -1070,11 +1070,11 @@ if( !function_exists('wc_shortcodes_rsvp') ) {
1070
  // Style
1071
 
1072
  if ( 3 == $columns ) {
1073
- $html .= '<div class="wc-shortcodes-row wc-shortcodes-item"><div class="wc-shortcodes-clearfix">';
1074
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column-first ">'.$name_html.'</div>';
1075
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column- ">'.$number_html.'</div>';
1076
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column-last ">'.$event_html.'</div>';
1077
- $html .= '</div></div>';
1078
  $html .= $action_html;
1079
  $html .= $message_html;
1080
  $html .= $button_html;
595
  */
596
  if( !function_exists('wc_shortcodes_row') ) {
597
  function wc_shortcodes_row( $atts, $content = null ){
598
+ return '<div class="wc-shortcodes-row wc-shortcodes-item wc-shortcodes-clearfix">' . do_shortcode($content) . '</div>';
599
  }
600
  }
601
 
1070
  // Style
1071
 
1072
  if ( 3 == $columns ) {
1073
+ $html .= '<div class="wc-shortcodes-row wc-shortcodes-item wc-shortcodes-clearfix">';
1074
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column-first ">'.$name_html.'</div>';
1075
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column- ">'.$number_html.'</div>';
1076
  $html .= ' <div class="wc-shortcodes-column wc-shortcodes-one-third wc-shortcodes-column-last ">'.$event_html.'</div>';
1077
+ $html .= '</div>';
1078
  $html .= $action_html;
1079
  $html .= $message_html;
1080
  $html .= $button_html;
readme.txt CHANGED
@@ -88,7 +88,7 @@ Use the shortcode manager in the TinyMCE text editor
88
 
89
  == Changelog ==
90
 
91
- = Version 1.76 =
92
 
93
  * minor update to shortcodes row structure
94
  * Made sure rslider CSS is not applied to other plugins
88
 
89
  == Changelog ==
90
 
91
+ = Version 1.77 =
92
 
93
  * minor update to shortcodes row structure
94
  * Made sure rslider CSS is not applied to other plugins
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.76
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_SHORTCODES_VERSION', '1.76' );
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.77
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_SHORTCODES_VERSION', '1.77' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );