Testimonials by WooThemes - Version 1.3.1

Version Description

  • Fixes bug where testimonial text doesn't display (incorrectly placed action hook).
Download this release

Release Info

Developer mattyza
Plugin Icon wp plugin Testimonials by WooThemes
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3.0 to 1.3.1

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://woothemes.com/
4
  Tags: testimonials, widget, shortcode, template-tag, feedback, customers
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
- Stable tag: 1.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -96,6 +96,9 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi
96
 
97
  == Upgrade Notice ==
98
 
 
 
 
99
  = 1.3.0 =
100
  * Adds "woothemes_testimonials_content" filter and shortcode support. Adds "testimonial-category" taxonomy.
101
 
@@ -116,6 +119,10 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi
116
 
117
  == Changelog ==
118
 
 
 
 
 
119
  = 1.3.0 =
120
  * 2013-04-30.
121
  * Adds "woothemes_testimonials_content" filter for modifying the content of testimonials when outputting the testimonials list.
@@ -144,4 +151,4 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi
144
 
145
  = 1.0.0 =
146
  * 2012-10-23
147
- * Initial release. Woo!
4
  Tags: testimonials, widget, shortcode, template-tag, feedback, customers
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
96
 
97
  == Upgrade Notice ==
98
 
99
+ = 1.3.1 =
100
+ * Fixes bug where testimonial text doesn't display (incorrectly placed action hook).
101
+
102
  = 1.3.0 =
103
  * Adds "woothemes_testimonials_content" filter and shortcode support. Adds "testimonial-category" taxonomy.
104
 
119
 
120
  == Changelog ==
121
 
122
+ = 1.3.1 =
123
+ * 2013-04-30.
124
+ * Fixes bug where testimonial text doesn't display (incorrectly placed action hook).
125
+
126
  = 1.3.0 =
127
  * 2013-04-30.
128
  * Adds "woothemes_testimonials_content" filter for modifying the content of testimonials when outputting the testimonials list.
151
 
152
  = 1.0.0 =
153
  * 2012-10-23
154
+ * Initial release. Woo!
woothemes-testimonials-template.php CHANGED
@@ -226,6 +226,6 @@ function woothemes_testimonials_content_default_filters () {
226
  add_filter( 'woothemes_testimonials_content', 'do_shortcode' );
227
  } // End woothemes_testimonials_content_default_filters()
228
 
229
- add_action( 'woothemes_testimonials_content', 'woothemes_testimonials_content_default_filters' );
230
  }
231
- ?>
226
  add_filter( 'woothemes_testimonials_content', 'do_shortcode' );
227
  } // End woothemes_testimonials_content_default_filters()
228
 
229
+ add_action( 'woothemes_testimonials_before', 'woothemes_testimonials_content_default_filters' );
230
  }
231
+ ?>
woothemes-testimonials.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://woothemes.com/
5
  * Description: Hi, I'm your testimonials management plugin for WordPress. Show off what your customers or website users are saying about your business and how great they say you are, using our shortcode, widget or template tag.
6
  * Author: WooThemes
7
- * Version: 1.3.0
8
  * Author URI: http://woothemes.com/
9
  *
10
  * @package WordPress
@@ -19,5 +19,5 @@ require_once( 'woothemes-testimonials-template.php' );
19
  require_once( 'classes/class-woothemes-widget-testimonials.php' );
20
  global $woothemes_testimonials;
21
  $woothemes_testimonials = new Woothemes_Testimonials( __FILE__ );
22
- $woothemes_testimonials->version = '1.3.0';
23
- ?>
4
  * Plugin URI: http://woothemes.com/
5
  * Description: Hi, I'm your testimonials management plugin for WordPress. Show off what your customers or website users are saying about your business and how great they say you are, using our shortcode, widget or template tag.
6
  * Author: WooThemes
7
+ * Version: 1.3.1
8
  * Author URI: http://woothemes.com/
9
  *
10
  * @package WordPress
19
  require_once( 'classes/class-woothemes-widget-testimonials.php' );
20
  global $woothemes_testimonials;
21
  $woothemes_testimonials = new Woothemes_Testimonials( __FILE__ );
22
+ $woothemes_testimonials->version = '1.3.1';
23
+ ?>