Shortcodes by Angie Makes - Version 1.48

Version Description

Download this release

Release Info

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

Code changes from version 1.47 to 1.48

README.md CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
66
 
67
  ## Changelog ##
68
 
 
 
 
 
69
  ### Version 1.47
70
 
71
  * Trigger custom event so other javascript elements can refresh when accordion, tabs, or toggle elements are opened.
66
 
67
  ## Changelog ##
68
 
69
+ ### Version 1.48
70
+
71
+ * Fixed bug on masonry posts layout with the shortcodes displaying in the excerpt
72
+
73
  ### Version 1.47
74
 
75
  * Trigger custom event so other javascript elements can refresh when accordion, tabs, or toggle elements are opened.
includes/shortcode-functions.php CHANGED
@@ -27,6 +27,7 @@ function wc_shortcodes_pre_process($content) {
27
  return $content;
28
  }
29
  add_filter('the_content', 'wc_shortcodes_pre_process', 7);
 
30
 
31
  /**
32
  * Add all preprocessed shortcodes here
27
  return $content;
28
  }
29
  add_filter('the_content', 'wc_shortcodes_pre_process', 7);
30
+ add_filter('wc_shortcodes_the_content', 'wc_shortcodes_pre_process', 7);
31
 
32
  /**
33
  * Add all preprocessed shortcodes here
readme.txt CHANGED
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
88
 
89
  == Changelog ==
90
 
 
 
 
 
91
  ### Version 1.47
92
 
93
  * Trigger custom event so other javascript elements can refresh when accordion, tabs, or toggle elements are opened.
88
 
89
  == Changelog ==
90
 
91
+ ### Version 1.48
92
+
93
+ * Fixed bug on masonry posts layout with the shortcodes displaying in the excerpt
94
+
95
  ### Version 1.47
96
 
97
  * Trigger custom event so other javascript elements can refresh when accordion, tabs, or toggle elements are opened.
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.47
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_SHORTCODES_VERSION', '1.47' );
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.48
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_SHORTCODES_VERSION', '1.48' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );