WP Review - Version 3.2.7

Version Description

  • Added Title Length option for widget
  • Added Filter to control default title length
Download this release

Release Info

Developer MyThemeShop
Plugin Icon 128x128 WP Review
Version 3.2.7
Comparing to
See all releases

Code changes from version 3.2.6 to 3.2.7

Files changed (5) hide show
  1. includes/widget.php +27 -3
  2. languages/default.mo +0 -0
  3. languages/default.po +153 -60
  4. readme.txt +6 -2
  5. wp-review.php +2 -2
includes/widget.php CHANGED
@@ -42,7 +42,8 @@ class wp_review_tab_widget extends WP_Widget {
42
  'comment_num' => '5',
43
  'thumb_size' => 'small',
44
  'show_date' => 1,
45
- 'custom_reviews' => ''
 
46
  ));
47
  extract($instance);
48
  ?>
@@ -94,7 +95,16 @@ class wp_review_tab_widget extends WP_Widget {
94
  <input id="<?php echo $this->get_field_id('post_num'); ?>" name="<?php echo $this->get_field_name('post_num'); ?>" type="number" min="1" step="1" value="<?php echo $post_num; ?>" />
95
  </label>
96
  </p>
97
-
 
 
 
 
 
 
 
 
 
98
  <p class="wp_review_tab_thumbnail_size">
99
  <label for="<?php echo $this->get_field_id('thumb_size'); ?>"><?php _e('Thumbnail size:', 'wp-review'); ?></label>
100
  <select id="<?php echo $this->get_field_id('thumb_size'); ?>" name="<?php echo $this->get_field_name('thumb_size'); ?>" style="margin-left: 12px;">
@@ -178,6 +188,7 @@ class wp_review_tab_widget extends WP_Widget {
178
  $instance['review_type'] = $new_instance['review_type'];
179
  $instance['allow_pagination'] = $new_instance['allow_pagination'];
180
  $instance['post_num'] = $new_instance['post_num'];
 
181
  $instance['thumb_size'] = $new_instance['thumb_size'];
182
  $instance['show_date'] = $new_instance['show_date'];
183
  $instance['custom_reviews'] = $new_instance['custom_reviews'];
@@ -315,6 +326,8 @@ class wp_review_tab_widget extends WP_Widget {
315
  $review_type = $args['review_type'];
316
  }
317
 
 
 
318
  switch ($tab) {
319
  case "toprated":
320
  $custom_query = array(
@@ -430,7 +443,7 @@ class wp_review_tab_widget extends WP_Widget {
430
  </div>
431
  </a>
432
  <div class="title-right">
433
- <div class="entry-title"><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>"><?php echo get_the_title(); ?></div></a>
434
  <?php wp_review_show_total(true, 'review-total-only '.$thumb_size.'-thumb'); ?>
435
  <?php if ( $show_date ) : ?>
436
  <div class="wp-review-tab-postmeta">
@@ -463,6 +476,17 @@ class wp_review_tab_widget extends WP_Widget {
463
  <input type="hidden" class="page_num" name="page_num" value="<?php echo $page; ?>" />
464
  <?php
465
  }
 
 
 
 
 
 
 
 
 
 
 
466
  function truncate($str, $length = 24) {
467
  if (mb_strlen($str) > $length) {
468
  return mb_substr($str, 0, $length).'...';
42
  'comment_num' => '5',
43
  'thumb_size' => 'small',
44
  'show_date' => 1,
45
+ 'custom_reviews' => '',
46
+ 'title_length' => apply_filters( 'wpt_title_length_default', '15' )
47
  ));
48
  extract($instance);
49
  ?>
95
  <input id="<?php echo $this->get_field_id('post_num'); ?>" name="<?php echo $this->get_field_name('post_num'); ?>" type="number" min="1" step="1" value="<?php echo $post_num; ?>" />
96
  </label>
97
  </p>
98
+
99
+ <p>
100
+ <label for="<?php echo $this->get_field_id('title_length'); ?>"><?php _e('Title length (words):', 'mts_wpt'); ?>
101
+ <br />
102
+ <!-- dummy input so that WP doesn't pick up title_length as title -->
103
+ <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="" style="display: none;" />
104
+ <input id="<?php echo $this->get_field_id('title_length'); ?>" name="<?php echo $this->get_field_name('title_length'); ?>" type="number" min="1" step="1" value="<?php echo $title_length; ?>" />
105
+ </label>
106
+ </p>
107
+
108
  <p class="wp_review_tab_thumbnail_size">
109
  <label for="<?php echo $this->get_field_id('thumb_size'); ?>"><?php _e('Thumbnail size:', 'wp-review'); ?></label>
110
  <select id="<?php echo $this->get_field_id('thumb_size'); ?>" name="<?php echo $this->get_field_name('thumb_size'); ?>" style="margin-left: 12px;">
188
  $instance['review_type'] = $new_instance['review_type'];
189
  $instance['allow_pagination'] = $new_instance['allow_pagination'];
190
  $instance['post_num'] = $new_instance['post_num'];
191
+ $instance['title_length'] = $new_instance['title_length'];
192
  $instance['thumb_size'] = $new_instance['thumb_size'];
193
  $instance['show_date'] = $new_instance['show_date'];
194
  $instance['custom_reviews'] = $new_instance['custom_reviews'];
326
  $review_type = $args['review_type'];
327
  }
328
 
329
+ $title_length = ! empty($args['title_length']) ? $args['title_length'] : apply_filters( 'wpt_title_length_default', '15' );
330
+
331
  switch ($tab) {
332
  case "toprated":
333
  $custom_query = array(
443
  </div>
444
  </a>
445
  <div class="title-right">
446
+ <div class="entry-title"><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>"><?php echo $this->post_title( $title_length ); ?></div></a>
447
  <?php wp_review_show_total(true, 'review-total-only '.$thumb_size.'-thumb'); ?>
448
  <?php if ( $show_date ) : ?>
449
  <div class="wp-review-tab-postmeta">
476
  <input type="hidden" class="page_num" name="page_num" value="<?php echo $page; ?>" />
477
  <?php
478
  }
479
+ function post_title($limit = 15) {
480
+ $limit++;
481
+ $title = explode(' ', get_the_title(), $limit);
482
+ if (count($title)>=$limit) {
483
+ array_pop($title);
484
+ $title = implode(" ",$title).'...';
485
+ } else {
486
+ $title = implode(" ",$title);
487
+ }
488
+ return $title;
489
+ }
490
  function truncate($str, $length = 24) {
491
  if (mb_strlen($str) > $length) {
492
  return mb_substr($str, 0, $length).'...';
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,20 +2,40 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Review Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-22 09:23+0100\n"
6
- "PO-Revision-Date: 2014-09-06 19:26+0530\n"
7
  "Last-Translator: MyThemeShop <support-team@mythemeshop.com>\n"
8
  "Language-Team: MyThemeShop\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Language: en_US\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
  "X-Generator: Poedit 1.6.2\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: ../admin/metaboxes.php:30
20
  msgid "Review"
21
  msgstr ""
@@ -24,7 +44,7 @@ msgstr ""
24
  msgid "Review Item"
25
  msgstr ""
26
 
27
- #: ../admin/metaboxes.php:48 ../admin/metaboxes.php:274
28
  msgid "Review Heading"
29
  msgstr ""
30
 
@@ -36,15 +56,15 @@ msgstr ""
36
  msgid "User Reviews"
37
  msgstr ""
38
 
39
- #: ../admin/metaboxes.php:90 ../includes/widget.php:76
40
  msgid "Star"
41
  msgstr ""
42
 
43
- #: ../admin/metaboxes.php:90 ../includes/widget.php:77
44
  msgid "Point"
45
  msgstr ""
46
 
47
- #: ../admin/metaboxes.php:90 ../includes/widget.php:78
48
  msgid "Percentage"
49
  msgstr ""
50
 
@@ -56,91 +76,160 @@ msgstr ""
56
  msgid "No Review"
57
  msgstr ""
58
 
59
- #: ../admin/metaboxes.php:160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  msgid "Review Location"
61
  msgstr ""
62
 
63
- #: ../admin/metaboxes.php:162
64
  msgid "After Content"
65
  msgstr ""
66
 
67
- #: ../admin/metaboxes.php:163
68
  msgid "Before Content"
69
  msgstr ""
70
 
71
- #: ../admin/metaboxes.php:164
72
  msgid "Custom (use shortcode)"
73
  msgstr ""
74
 
75
- #: ../admin/metaboxes.php:171
76
  msgid "Copy &amp; paste this shortcode in the content."
77
  msgstr ""
78
 
79
- #: ../admin/metaboxes.php:175
 
 
 
 
80
  msgid "Review Color"
81
  msgstr ""
82
 
83
- #: ../admin/metaboxes.php:180
84
  msgid "Font Color"
85
  msgstr ""
86
 
87
- #: ../admin/metaboxes.php:185
88
  msgid "Heading Background Color"
89
  msgstr ""
90
 
91
- #: ../admin/metaboxes.php:190
92
  msgid "Background Color"
93
  msgstr ""
94
 
95
- #: ../admin/metaboxes.php:195
96
  msgid "Border Color"
97
  msgstr ""
98
 
99
- #: ../admin/metaboxes.php:204
100
- msgid "Feature Name"
101
  msgstr ""
102
 
103
- #: ../admin/metaboxes.php:205
104
- msgid "Star (1-5)"
105
  msgstr ""
106
 
107
- #: ../admin/metaboxes.php:222 ../admin/metaboxes.php:232
108
- #: ../admin/metaboxes.php:241
109
- msgid "Delete"
110
  msgstr ""
111
 
112
- #: ../admin/metaboxes.php:250
113
- msgid "Add another"
114
  msgstr ""
115
 
116
- #: ../admin/metaboxes.php:254
117
- msgid "Total"
118
  msgstr ""
119
 
120
- #: ../admin/metaboxes.php:313
121
- msgid "Disabled"
 
 
122
  msgstr ""
123
 
124
- #: ../admin/metaboxes.php:317
125
- msgid "Enabled"
126
  msgstr ""
127
 
128
- #: ../includes/functions.php:144
129
- msgid "Summary"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  msgstr ""
131
 
132
- #: ../includes/functions.php:226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  msgid "User Rating"
134
  msgstr ""
135
 
136
- #: ../includes/functions.php:227
137
  msgid "votes"
138
  msgstr ""
139
 
140
- #: ../includes/functions.php:234
141
  msgid "Sending"
142
  msgstr ""
143
 
 
 
 
 
144
  #: ../includes/widget.php:13
145
  msgid "Display Reviews in tabbed format."
146
  msgstr ""
@@ -149,82 +238,86 @@ msgstr ""
149
  msgid "WP Review Widget"
150
  msgstr ""
151
 
152
- #: ../includes/widget.php:36 ../includes/widget.php:53
153
- #: ../includes/widget.php:128 ../includes/widget.php:148
154
  msgid "Top Rated"
155
  msgstr ""
156
 
157
- #: ../includes/widget.php:36 ../includes/widget.php:57
158
- #: ../includes/widget.php:132 ../includes/widget.php:152
159
  msgid "Recent"
160
  msgstr ""
161
 
162
- #: ../includes/widget.php:36 ../includes/widget.php:61
163
- #: ../includes/widget.php:136 ../includes/widget.php:156
164
  msgid "Most Voted"
165
  msgstr ""
166
 
167
- #: ../includes/widget.php:36
168
  msgid "Editor's choice"
169
  msgstr ""
170
 
171
- #: ../includes/widget.php:48
172
  msgid "Select Tabs"
173
  msgstr ""
174
 
175
- #: ../includes/widget.php:65 ../includes/widget.php:140
176
- #: ../includes/widget.php:160
177
  msgid "Custom"
178
  msgstr ""
179
 
180
- #: ../includes/widget.php:73
181
  msgid "Review type:"
182
  msgstr ""
183
 
184
- #: ../includes/widget.php:75
185
  msgid "Any"
186
  msgstr ""
187
 
188
- #: ../includes/widget.php:85
189
  msgid "Allow pagination"
190
  msgstr ""
191
 
192
- #: ../includes/widget.php:90
193
  msgid "Number of reviews to show:"
194
  msgstr ""
195
 
196
- #: ../includes/widget.php:97
 
 
 
 
197
  msgid "Thumbnail size:"
198
  msgstr ""
199
 
200
- #: ../includes/widget.php:99
201
  msgid "Small"
202
  msgstr ""
203
 
204
- #: ../includes/widget.php:100
205
  msgid "Large"
206
  msgstr ""
207
 
208
- #: ../includes/widget.php:107
209
  msgid "Show date"
210
  msgstr ""
211
 
212
- #: ../includes/widget.php:112
213
  msgid "Reviews on Custom tab:"
214
  msgstr ""
215
 
216
- #: ../includes/widget.php:122
217
  msgid "Tab Titles"
218
  msgstr ""
219
 
220
- #: ../includes/widget.php:122
221
  msgid "Tab Order"
222
  msgstr ""
223
 
224
- #: ../includes/widget.php:452
225
  msgid "&laquo; Previous"
226
  msgstr ""
227
 
228
- #: ../includes/widget.php:455
229
  msgid "Next &raquo;"
230
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: WP Review Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-10-20 00:21+0530\n"
6
+ "PO-Revision-Date: 2014-10-20 00:21+0530\n"
7
  "Last-Translator: MyThemeShop <support-team@mythemeshop.com>\n"
8
  "Language-Team: MyThemeShop\n"
9
+ "Language: en_US\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
  "X-Generator: Poedit 1.6.2\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../filter-list.php:34
20
+ msgid "Enable Reviews"
21
+ msgstr ""
22
+
23
+ #: ../filter-list.php:41
24
+ msgid "Audio"
25
+ msgstr ""
26
+
27
+ #: ../filter-list.php:41
28
+ msgid "Visual"
29
+ msgstr ""
30
+
31
+ #: ../filter-list.php:41
32
+ msgid "UX"
33
+ msgstr ""
34
+
35
+ #: ../filter-list.php:41
36
+ msgid "Price"
37
+ msgstr ""
38
+
39
  #: ../admin/metaboxes.php:30
40
  msgid "Review"
41
  msgstr ""
44
  msgid "Review Item"
45
  msgstr ""
46
 
47
+ #: ../admin/metaboxes.php:48 ../admin/metaboxes.php:293
48
  msgid "Review Heading"
49
  msgstr ""
50
 
56
  msgid "User Reviews"
57
  msgstr ""
58
 
59
+ #: ../admin/metaboxes.php:90 ../admin/options.php:31 ../includes/widget.php:79
60
  msgid "Star"
61
  msgstr ""
62
 
63
+ #: ../admin/metaboxes.php:90 ../admin/options.php:31 ../includes/widget.php:80
64
  msgid "Point"
65
  msgstr ""
66
 
67
+ #: ../admin/metaboxes.php:90 ../admin/options.php:31 ../includes/widget.php:81
68
  msgid "Percentage"
69
  msgstr ""
70
 
76
  msgid "No Review"
77
  msgstr ""
78
 
79
+ #: ../admin/metaboxes.php:170
80
+ msgid "Feature Name"
81
+ msgstr ""
82
+
83
+ #: ../admin/metaboxes.php:171
84
+ msgid "Star (1-5)"
85
+ msgstr ""
86
+
87
+ #: ../admin/metaboxes.php:188 ../admin/metaboxes.php:198
88
+ #: ../admin/metaboxes.php:207 ../admin/options.php:205
89
+ #: ../admin/options.php:213
90
+ msgid "Delete"
91
+ msgstr ""
92
+
93
+ #: ../admin/metaboxes.php:216
94
+ msgid "Add another"
95
+ msgstr ""
96
+
97
+ #: ../admin/metaboxes.php:220
98
+ msgid "Total"
99
+ msgstr ""
100
+
101
+ #: ../admin/metaboxes.php:225
102
+ msgid "Custom Location"
103
+ msgstr ""
104
+
105
+ #: ../admin/metaboxes.php:231 ../admin/options.php:131
106
  msgid "Review Location"
107
  msgstr ""
108
 
109
+ #: ../admin/metaboxes.php:233 ../admin/options.php:133
110
  msgid "After Content"
111
  msgstr ""
112
 
113
+ #: ../admin/metaboxes.php:234 ../admin/options.php:134
114
  msgid "Before Content"
115
  msgstr ""
116
 
117
+ #: ../admin/metaboxes.php:235 ../admin/options.php:135
118
  msgid "Custom (use shortcode)"
119
  msgstr ""
120
 
121
+ #: ../admin/metaboxes.php:241
122
  msgid "Copy &amp; paste this shortcode in the content."
123
  msgstr ""
124
 
125
+ #: ../admin/metaboxes.php:245
126
+ msgid "Custom Colors"
127
+ msgstr ""
128
+
129
+ #: ../admin/metaboxes.php:252 ../admin/options.php:149
130
  msgid "Review Color"
131
  msgstr ""
132
 
133
+ #: ../admin/metaboxes.php:257 ../admin/options.php:154
134
  msgid "Font Color"
135
  msgstr ""
136
 
137
+ #: ../admin/metaboxes.php:262 ../admin/options.php:159
138
  msgid "Heading Background Color"
139
  msgstr ""
140
 
141
+ #: ../admin/metaboxes.php:267 ../admin/options.php:164
142
  msgid "Background Color"
143
  msgstr ""
144
 
145
+ #: ../admin/metaboxes.php:272 ../admin/options.php:169
146
  msgid "Border Color"
147
  msgstr ""
148
 
149
+ #: ../admin/metaboxes.php:308 ../includes/functions.php:49
150
+ msgid "Summary"
151
  msgstr ""
152
 
153
+ #: ../admin/metaboxes.php:331
154
+ msgid "Hide Description &amp; Total Rating"
155
  msgstr ""
156
 
157
+ #: ../admin/metaboxes.php:349
158
+ msgid "Disabled"
 
159
  msgstr ""
160
 
161
+ #: ../admin/metaboxes.php:353
162
+ msgid "Enabled"
163
  msgstr ""
164
 
165
+ #: ../admin/options.php:64
166
+ msgid "WP Review Settings"
167
  msgstr ""
168
 
169
+ #: ../admin/options.php:118
170
+ msgid ""
171
+ "There is a filter set for the review location that may modify the options "
172
+ "below."
173
  msgstr ""
174
 
175
+ #: ../admin/options.php:123
176
+ msgid "The current theme provides default settings for the plugin."
177
  msgstr ""
178
 
179
+ #: ../admin/options.php:125
180
+ msgid "Set to theme defaults"
181
+ msgstr ""
182
+
183
+ #: ../admin/options.php:142
184
+ msgid "Copy &amp; paste this shortcode in the post content."
185
+ msgstr ""
186
+
187
+ #: ../admin/options.php:145
188
+ msgid ""
189
+ "There is a filter set for the review colors that may modify the options "
190
+ "below."
191
+ msgstr ""
192
+
193
+ #: ../admin/options.php:181
194
+ msgid "Default features are set by a filter function. Remove it to change."
195
  msgstr ""
196
 
197
+ #: ../admin/options.php:181
198
+ msgid "Default features"
199
+ msgstr ""
200
+
201
+ #: ../admin/options.php:222
202
+ msgid "Add default feature"
203
+ msgstr ""
204
+
205
+ #: ../admin/options.php:229
206
+ msgid "Save Changes"
207
+ msgstr ""
208
+
209
+ #: ../admin/options.php:249
210
+ msgid "Settings"
211
+ msgstr ""
212
+
213
+ #: ../includes/functions.php:237
214
+ msgid "Click on the stars to rate!"
215
+ msgstr ""
216
+
217
+ #: ../includes/functions.php:257
218
  msgid "User Rating"
219
  msgstr ""
220
 
221
+ #: ../includes/functions.php:258
222
  msgid "votes"
223
  msgstr ""
224
 
225
+ #: ../includes/functions.php:265
226
  msgid "Sending"
227
  msgstr ""
228
 
229
+ #: ../includes/functions.php:382
230
+ msgid "10"
231
+ msgstr ""
232
+
233
  #: ../includes/widget.php:13
234
  msgid "Display Reviews in tabbed format."
235
  msgstr ""
238
  msgid "WP Review Widget"
239
  msgstr ""
240
 
241
+ #: ../includes/widget.php:38 ../includes/widget.php:56
242
+ #: ../includes/widget.php:140 ../includes/widget.php:160
243
  msgid "Top Rated"
244
  msgstr ""
245
 
246
+ #: ../includes/widget.php:38 ../includes/widget.php:60
247
+ #: ../includes/widget.php:144 ../includes/widget.php:164
248
  msgid "Recent"
249
  msgstr ""
250
 
251
+ #: ../includes/widget.php:38 ../includes/widget.php:64
252
+ #: ../includes/widget.php:148 ../includes/widget.php:168
253
  msgid "Most Voted"
254
  msgstr ""
255
 
256
+ #: ../includes/widget.php:38
257
  msgid "Editor's choice"
258
  msgstr ""
259
 
260
+ #: ../includes/widget.php:51
261
  msgid "Select Tabs"
262
  msgstr ""
263
 
264
+ #: ../includes/widget.php:68 ../includes/widget.php:152
265
+ #: ../includes/widget.php:172
266
  msgid "Custom"
267
  msgstr ""
268
 
269
+ #: ../includes/widget.php:76
270
  msgid "Review type:"
271
  msgstr ""
272
 
273
+ #: ../includes/widget.php:78
274
  msgid "Any"
275
  msgstr ""
276
 
277
+ #: ../includes/widget.php:88
278
  msgid "Allow pagination"
279
  msgstr ""
280
 
281
+ #: ../includes/widget.php:93
282
  msgid "Number of reviews to show:"
283
  msgstr ""
284
 
285
+ #: ../includes/widget.php:100
286
+ msgid "Title length (words):"
287
+ msgstr ""
288
+
289
+ #: ../includes/widget.php:109
290
  msgid "Thumbnail size:"
291
  msgstr ""
292
 
293
+ #: ../includes/widget.php:111
294
  msgid "Small"
295
  msgstr ""
296
 
297
+ #: ../includes/widget.php:112
298
  msgid "Large"
299
  msgstr ""
300
 
301
+ #: ../includes/widget.php:119
302
  msgid "Show date"
303
  msgstr ""
304
 
305
+ #: ../includes/widget.php:124
306
  msgid "Reviews on Custom tab:"
307
  msgstr ""
308
 
309
+ #: ../includes/widget.php:134
310
  msgid "Tab Titles"
311
  msgstr ""
312
 
313
+ #: ../includes/widget.php:134
314
  msgid "Tab Order"
315
  msgstr ""
316
 
317
+ #: ../includes/widget.php:469
318
  msgid "&laquo; Previous"
319
  msgstr ""
320
 
321
+ #: ../includes/widget.php:472
322
  msgid "Next &raquo;"
323
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mythemeshop
3
  Creator's website link: http://mythemeshop.com/plugins/wp-review/
4
  Tags: review, wp review, rating, wp rating, user rating, google rating, star rating, product review
5
  Requires at least: 3.0.1
6
- Tested up to: 4.0
7
- Stable tag: 3.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -89,6 +89,10 @@ Please disable all plugins and check if rating is working properly. Then you can
89
 
90
  == Changelog ==
91
 
 
 
 
 
92
  = 3.2.6 =
93
  * Added optional 'id' parameter for shortcode
94
  * Added filter to modify style output
3
  Creator's website link: http://mythemeshop.com/plugins/wp-review/
4
  Tags: review, wp review, rating, wp rating, user rating, google rating, star rating, product review
5
  Requires at least: 3.0.1
6
+ Tested up to: 4.1
7
+ Stable tag: 3.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
89
 
90
  == Changelog ==
91
 
92
+ = 3.2.7 =
93
+ * Added Title Length option for widget
94
+ * Added Filter to control default title length
95
+
96
  = 3.2.6 =
97
  * Added optional 'id' parameter for shortcode
98
  * Added filter to modify style output
wp-review.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WP Review
4
  * Plugin URI: http://mythemeshop.com/plugins/wp-review/
5
  * Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
6
- * Version: 3.2.6
7
  * Author: MyThemesShop
8
  * Author URI: http://mythemeshop.com/
9
  *
@@ -26,7 +26,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
26
  if ( ! defined( 'MTS_WP_REVIEW_DB_TABLE' ) ) {
27
 
28
  /* Plugin version */
29
- define( 'WP_REVIEW_PLUGIN_VERSION', '3.2.5' );
30
 
31
  /* Sets the custom db table name. */
32
  define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
3
  * Plugin Name: WP Review
4
  * Plugin URI: http://mythemeshop.com/plugins/wp-review/
5
  * Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
6
+ * Version: 3.2.7
7
  * Author: MyThemesShop
8
  * Author URI: http://mythemeshop.com/
9
  *
26
  if ( ! defined( 'MTS_WP_REVIEW_DB_TABLE' ) ) {
27
 
28
  /* Plugin version */
29
+ define( 'WP_REVIEW_PLUGIN_VERSION', '3.2.7' );
30
 
31
  /* Sets the custom db table name. */
32
  define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );