Testimonials Widget - Version 3.0.4

Version Description

= 3.0.0 =

This is a major overhaul without backwards compliance of over 80 changes. Please read the Testimonials Widget 3.0 and Testimonials Widget Premium 2.0 Upgrade Notice for more help.

If you use custom CSS, actions, or filters to modify Testimonials Widget and Testimonials Widget Premium actions or output, this upgrade will not be compatible with those modifications until corrections are made.

= Older Versions =

Read UPGRADING.

Download this release

Release Info

Developer comprock
Plugin Icon wp plugin Testimonials Widget
Version 3.0.4
Comparing to
See all releases

Code changes from version 3.0.3 to 3.0.4

CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
 
3
  ## master
4
 
 
 
 
 
 
5
  ## 3.0.3
6
  * Add demo link to examples
7
  * Require Aihrus Framework 1.1.7
2
 
3
  ## master
4
 
5
+ ## 3.0.4
6
+ * RESOLVE Warning: Illegal string offset 'random'
7
+ * Update copyright year
8
+ * Update Structured Data Testing Tool link
9
+
10
  ## 3.0.3
11
  * Add demo link to examples
12
  * Require Aihrus Framework 1.1.7
includes/class-testimonials-widget-archives-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-categories-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-recent-testimonials-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-settings.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-slider-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-tag-cloud-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget-template-loader.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/class-testimonials-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
@@ -707,6 +707,10 @@ class Testimonials_Widget extends Aihrus_Common {
707
 
708
 
709
  public static function testimonials_slider( $atts, $widget_number = null ) {
 
 
 
 
710
  if ( empty( $widget_number ) ) {
711
  $widget_number = self::$widget_number++;
712
 
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
707
 
708
 
709
  public static function testimonials_slider( $atts, $widget_number = null ) {
710
+ if ( is_null( $atts ) || ! is_array( $atts ) ) {
711
+ $atts = array();
712
+ }
713
+
714
  if ( empty( $widget_number ) ) {
715
  $widget_number = self::$widget_number++;
716
 
includes/libraries/aihrus-framework/CHANGELOG.md CHANGED
@@ -4,6 +4,7 @@
4
 
5
  ## 1.1.7
6
  * RESOLVE michael-cannon/testimonials-widget#156 License not saving
 
7
 
8
  ## 1.1.6
9
  * Denote included libraries
4
 
5
  ## 1.1.7
6
  * RESOLVE michael-cannon/testimonials-widget#156 License not saving
7
+ * Update copyright year
8
 
9
  ## 1.1.6
10
  * Denote included libraries
includes/libraries/aihrus-framework/aihrus-framework.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Aihrus Framework
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Aihrus Framework
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/libraries/aihrus-framework/includes/class-aihrus-common.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Aihrus Framework
4
- * Copyright (C) 2014 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
1
  <?php
2
  /**
3
  * Aihrus Framework
4
+ * Copyright (C) 2015 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
includes/libraries/aihrus-framework/includes/class-aihrus-licensing.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Aihrus Framework
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Aihrus Framework
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
includes/libraries/aihrus-framework/includes/class-aihrus-settings.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Aihrus Framework
4
- * Copyright (C) 2014 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
1
  <?php
2
  /**
3
  * Aihrus Framework
4
+ * Copyright (C) 2015 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
includes/libraries/aihrus-framework/includes/class-aihrus-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Aihrus Framework
4
- * Copyright (C) 2014 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
1
  <?php
2
  /**
3
  * Aihrus Framework
4
+ * Copyright (C) 2015 Michael Cannon
5
  * This program is free software; you can redistribute it and/or modify
6
  * it under the terms of the GNU General Public License as published by
7
  * the Free Software Foundation; either version 2 of the License, or
includes/requirements.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  Testimonials Widget
4
- Copyright (C) 2014 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
1
  <?php
2
  /**
3
  Testimonials Widget
4
+ Copyright (C) 2015 Michael Cannon
5
 
6
  This program is free software; you can redistribute it and/or modify
7
  it under the terms of the GNU General Public License as published by
languages/testimonials-widget.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Testimonials Widget package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Testimonials Widget 3.0.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
- "POT-Creation-Date: 2015-01-07 23:09:55+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -487,7 +487,7 @@ msgstr ""
487
  #: includes/class-testimonials-widget-settings.php:511
488
  #: includes/class-testimonials-widget.php:504
489
  #: includes/class-testimonials-widget.php:535
490
- #: includes/class-testimonials-widget.php:1369
491
  msgid "Author"
492
  msgstr ""
493
 
@@ -518,31 +518,31 @@ msgstr ""
518
 
519
  #: includes/class-testimonials-widget-settings.php:525
520
  #: includes/class-testimonials-widget.php:540
521
- #: includes/class-testimonials-widget.php:1375
522
  msgid "Job Title"
523
  msgstr ""
524
 
525
  #: includes/class-testimonials-widget-settings.php:526
526
  #: includes/class-testimonials-widget.php:555
527
- #: includes/class-testimonials-widget.php:1393
528
  msgid "Email"
529
  msgstr ""
530
 
531
  #: includes/class-testimonials-widget-settings.php:527
532
  #: includes/class-testimonials-widget.php:545
533
- #: includes/class-testimonials-widget.php:1381
534
  msgid "Location"
535
  msgstr ""
536
 
537
  #: includes/class-testimonials-widget-settings.php:528
538
  #: includes/class-testimonials-widget.php:550
539
- #: includes/class-testimonials-widget.php:1387
540
  msgid "Company"
541
  msgstr ""
542
 
543
  #: includes/class-testimonials-widget-settings.php:529
544
  #: includes/class-testimonials-widget.php:560
545
- #: includes/class-testimonials-widget.php:1399
546
  msgid "URL"
547
  msgstr ""
548
 
@@ -740,7 +740,7 @@ msgid "Edit Testimonial"
740
  msgstr ""
741
 
742
  #: includes/class-testimonials-widget.php:576
743
- #: includes/class-testimonials-widget.php:874
744
  msgid "No testimonials found"
745
  msgstr ""
746
 
@@ -753,8 +753,8 @@ msgid "Search Testimonials"
753
  msgstr ""
754
 
755
  #: includes/class-testimonials-widget.php:580
756
- #: includes/class-testimonials-widget.php:1460
757
- #: includes/class-testimonials-widget.php:1828
758
  msgid "Testimonial"
759
  msgstr ""
760
 
@@ -762,84 +762,84 @@ msgstr ""
762
  msgid "View Testimonial"
763
  msgstr ""
764
 
765
- #: includes/class-testimonials-widget.php:1372
766
  msgid "Use when the testimonial title is not the authors' name."
767
  msgstr ""
768
 
769
- #: includes/class-testimonials-widget.php:1396
770
  msgid "If an email is provided, but not an image, a Gravatar icon will be attempted to be loaded."
771
  msgstr ""
772
 
773
- #: includes/class-testimonials-widget.php:1411
774
  msgid "Testimonial Data"
775
  msgstr ""
776
 
777
- #: includes/class-testimonials-widget.php:1435
778
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
779
  msgstr ""
780
 
781
- #: includes/class-testimonials-widget.php:1436
782
  msgid "Custom field updated."
783
  msgstr ""
784
 
785
- #: includes/class-testimonials-widget.php:1437
786
  msgid "Custom field deleted."
787
  msgstr ""
788
 
789
- #: includes/class-testimonials-widget.php:1438
790
  msgid "Testimonial updated."
791
  msgstr ""
792
 
793
  #. translators: %s: date and time of the revision
794
 
795
- #: includes/class-testimonials-widget.php:1440
796
  msgid "Testimonial restored to revision from %s"
797
  msgstr ""
798
 
799
- #: includes/class-testimonials-widget.php:1441
800
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
801
  msgstr ""
802
 
803
- #: includes/class-testimonials-widget.php:1442
804
  msgid "Testimonial saved."
805
  msgstr ""
806
 
807
- #: includes/class-testimonials-widget.php:1443
808
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
809
  msgstr ""
810
 
811
- #: includes/class-testimonials-widget.php:1444
812
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
813
  msgstr ""
814
 
815
- #: includes/class-testimonials-widget.php:1445
816
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
817
  msgstr ""
818
 
819
- #: includes/class-testimonials-widget.php:1723
820
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
821
  msgstr ""
822
 
823
- #: includes/class-testimonials-widget.php:1742
824
  msgid "Failed version check"
825
  msgstr ""
826
 
827
- #: includes/class-testimonials-widget.php:1773
828
  msgid "Shortcode"
829
  msgstr ""
830
 
831
- #: includes/class-testimonials-widget.php:2211
832
- #: includes/class-testimonials-widget.php:2284
833
  msgid "Used with: "
834
  msgstr ""
835
 
836
- #: includes/class-testimonials-widget.php:2248
837
- #: includes/class-testimonials-widget.php:2312
838
  msgid "Options: "
839
  msgstr ""
840
 
841
- #: includes/class-testimonials-widget.php:2253
842
- #: includes/class-testimonials-widget.php:2317
843
  msgid "Usage: "
844
  msgstr ""
845
 
2
  # This file is distributed under the same license as the Testimonials Widget package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Testimonials Widget 3.0.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
7
+ "POT-Creation-Date: 2015-02-22 11:51:23+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
487
  #: includes/class-testimonials-widget-settings.php:511
488
  #: includes/class-testimonials-widget.php:504
489
  #: includes/class-testimonials-widget.php:535
490
+ #: includes/class-testimonials-widget.php:1373
491
  msgid "Author"
492
  msgstr ""
493
 
518
 
519
  #: includes/class-testimonials-widget-settings.php:525
520
  #: includes/class-testimonials-widget.php:540
521
+ #: includes/class-testimonials-widget.php:1379
522
  msgid "Job Title"
523
  msgstr ""
524
 
525
  #: includes/class-testimonials-widget-settings.php:526
526
  #: includes/class-testimonials-widget.php:555
527
+ #: includes/class-testimonials-widget.php:1397
528
  msgid "Email"
529
  msgstr ""
530
 
531
  #: includes/class-testimonials-widget-settings.php:527
532
  #: includes/class-testimonials-widget.php:545
533
+ #: includes/class-testimonials-widget.php:1385
534
  msgid "Location"
535
  msgstr ""
536
 
537
  #: includes/class-testimonials-widget-settings.php:528
538
  #: includes/class-testimonials-widget.php:550
539
+ #: includes/class-testimonials-widget.php:1391
540
  msgid "Company"
541
  msgstr ""
542
 
543
  #: includes/class-testimonials-widget-settings.php:529
544
  #: includes/class-testimonials-widget.php:560
545
+ #: includes/class-testimonials-widget.php:1403
546
  msgid "URL"
547
  msgstr ""
548
 
740
  msgstr ""
741
 
742
  #: includes/class-testimonials-widget.php:576
743
+ #: includes/class-testimonials-widget.php:878
744
  msgid "No testimonials found"
745
  msgstr ""
746
 
753
  msgstr ""
754
 
755
  #: includes/class-testimonials-widget.php:580
756
+ #: includes/class-testimonials-widget.php:1464
757
+ #: includes/class-testimonials-widget.php:1832
758
  msgid "Testimonial"
759
  msgstr ""
760
 
762
  msgid "View Testimonial"
763
  msgstr ""
764
 
765
+ #: includes/class-testimonials-widget.php:1376
766
  msgid "Use when the testimonial title is not the authors' name."
767
  msgstr ""
768
 
769
+ #: includes/class-testimonials-widget.php:1400
770
  msgid "If an email is provided, but not an image, a Gravatar icon will be attempted to be loaded."
771
  msgstr ""
772
 
773
+ #: includes/class-testimonials-widget.php:1415
774
  msgid "Testimonial Data"
775
  msgstr ""
776
 
777
+ #: includes/class-testimonials-widget.php:1439
778
  msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
779
  msgstr ""
780
 
781
+ #: includes/class-testimonials-widget.php:1440
782
  msgid "Custom field updated."
783
  msgstr ""
784
 
785
+ #: includes/class-testimonials-widget.php:1441
786
  msgid "Custom field deleted."
787
  msgstr ""
788
 
789
+ #: includes/class-testimonials-widget.php:1442
790
  msgid "Testimonial updated."
791
  msgstr ""
792
 
793
  #. translators: %s: date and time of the revision
794
 
795
+ #: includes/class-testimonials-widget.php:1444
796
  msgid "Testimonial restored to revision from %s"
797
  msgstr ""
798
 
799
+ #: includes/class-testimonials-widget.php:1445
800
  msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
801
  msgstr ""
802
 
803
+ #: includes/class-testimonials-widget.php:1446
804
  msgid "Testimonial saved."
805
  msgstr ""
806
 
807
+ #: includes/class-testimonials-widget.php:1447
808
  msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
809
  msgstr ""
810
 
811
+ #: includes/class-testimonials-widget.php:1448
812
  msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
813
  msgstr ""
814
 
815
+ #: includes/class-testimonials-widget.php:1449
816
  msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
817
  msgstr ""
818
 
819
+ #: includes/class-testimonials-widget.php:1727
820
  msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
821
  msgstr ""
822
 
823
+ #: includes/class-testimonials-widget.php:1746
824
  msgid "Failed version check"
825
  msgstr ""
826
 
827
+ #: includes/class-testimonials-widget.php:1777
828
  msgid "Shortcode"
829
  msgstr ""
830
 
831
+ #: includes/class-testimonials-widget.php:2215
832
+ #: includes/class-testimonials-widget.php:2288
833
  msgid "Used with: "
834
  msgstr ""
835
 
836
+ #: includes/class-testimonials-widget.php:2252
837
+ #: includes/class-testimonials-widget.php:2316
838
  msgid "Options: "
839
  msgstr ""
840
 
841
+ #: includes/class-testimonials-widget.php:2257
842
+ #: includes/class-testimonials-widget.php:2321
843
  msgid "Usage: "
844
  msgstr ""
845
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://aihr.us/about-aihrus/donate/
5
  Tags: aihrus, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
6
  Requires at least: 3.6
7
  Tested up to: 4.1.0
8
- Stable tag: 3.0.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -103,7 +103,7 @@ Please keep in mind that inheritance affects options. This means that changes ma
103
 
104
  Further, global settings are the baseline for shortcodes. If you want to alter the shortcode appearance, then alter the shortcode options directly.
105
 
106
- Details on the Shortcode Attributes tab at WordPress Admin > Testimonials > Settings.
107
 
108
  = Testimonials Widget Migration Helpers =
109
 
@@ -293,7 +293,7 @@ This is a major overhaul *without* backwards compliance of over 80 changes. Plea
293
  * [How to change testimonials layout](https://aihrus.zendesk.com/entries/38055707)
294
  * [My options don't work](https://aihrus.zendesk.com/entries/30746533)
295
  * [Pagination is broken](https://aihrus.zendesk.com/entries/23693513)
296
- * [Test Review schema output](http://www.google.com/webmasters/tools/richsnippets)
297
  * [Testimonials slider doesn't rotate](https://aihrus.zendesk.com/entries/23693363)
298
 
299
  = Still Stuck or Want Something Done? Get Support! =
@@ -373,7 +373,7 @@ You can translate this plugin into your own language if it's not done so already
373
  == Notes ==
374
 
375
  * Default and Gravatar image size is based upon Thumbnail size in Media Settings
376
- * Review schema [structured data testing tool](http://www.google.com/webmasters/tools/richsnippets)
377
  * When plugin is uninstalled, all data and settings are deleted if "Remove Plugin Data on Deletion" is checked in Settings
378
 
379
 
5
  Tags: aihrus, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
6
  Requires at least: 3.6
7
  Tested up to: 4.1.0
8
+ Stable tag: 3.0.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
103
 
104
  Further, global settings are the baseline for shortcodes. If you want to alter the shortcode appearance, then alter the shortcode options directly.
105
 
106
+ Details on the Shortcode Attributes tab at WordPress Admin > Testimonials > Settings. Alternately, read [OPTIONS](http://aihr.us/best-wordpress-testimonials-plugin/shortcode-widget-options/).
107
 
108
  = Testimonials Widget Migration Helpers =
109
 
293
  * [How to change testimonials layout](https://aihrus.zendesk.com/entries/38055707)
294
  * [My options don't work](https://aihrus.zendesk.com/entries/30746533)
295
  * [Pagination is broken](https://aihrus.zendesk.com/entries/23693513)
296
+ * [Test Review schema output](https://developers.google.com/webmasters/structured-data/testing-tool/)
297
  * [Testimonials slider doesn't rotate](https://aihrus.zendesk.com/entries/23693363)
298
 
299
  = Still Stuck or Want Something Done? Get Support! =
373
  == Notes ==
374
 
375
  * Default and Gravatar image size is based upon Thumbnail size in Media Settings
376
+ * Review schema [structured data testing tool](https://developers.google.com/webmasters/structured-data/testing-tool/)
377
  * When plugin is uninstalled, all data and settings are deleted if "Remove Plugin Data on Deletion" is checked in Settings
378
 
379
 
testimonials-widget.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
6
  * lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
7
- * Version: 3.0.3
8
  * Author: Michael Cannon
9
  * Author URI: http://aihr.us/resume/
10
  * License: GPLv2 or later
@@ -13,7 +13,7 @@
13
  */
14
  /**
15
  Testimonials Widget
16
- Copyright (C) 2014 Michael Cannon
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License as published by
@@ -64,7 +64,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) ) {
64
  }
65
 
66
  if ( ! defined( 'TW_VERSION' ) ) {
67
- define( 'TW_VERSION', '3.0.3' );
68
  }
69
 
70
  require_once TW_DIR_INC . 'requirements.php';
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
6
  * lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
7
+ * Version: 3.0.4
8
  * Author: Michael Cannon
9
  * Author URI: http://aihr.us/resume/
10
  * License: GPLv2 or later
13
  */
14
  /**
15
  Testimonials Widget
16
+ Copyright (C) 2015 Michael Cannon
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License as published by
64
  }
65
 
66
  if ( ! defined( 'TW_VERSION' ) ) {
67
+ define( 'TW_VERSION', '3.0.4' );
68
  }
69
 
70
  require_once TW_DIR_INC . 'requirements.php';