Version Description
- CSS updates for widgets and lists
Download this release
Release Info
Developer | comprock |
Plugin | Testimonials Widget |
Version | 0.2.6 |
Comparing to | |
See all releases |
Code changes from version 0.2.5 to 0.2.6
- readme.txt +16 -2
- testimonials-widget.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://typo3vagabond.com/about-typo3-vagabond/donate/
|
|
4 |
Tags: testimonial, testimonials, quote, quotes, quotations, random quote, sidebar, widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
-
Stable tag: 0.2.
|
8 |
|
9 |
Testimonials widget plugin allows you display testimonials in a widget on your WordPress blog.
|
10 |
|
@@ -58,6 +58,14 @@ Check out the [Quotes Collection](http://wordpress.org/extend/plugins/quotes-col
|
|
58 |
|
59 |
== Frequently Asked Questions ==
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
= How can I add the testimonials plugin to any where on the site? ie. somewhere other than the side bar like the contact page etc.? =
|
62 |
|
63 |
Use [testimonialswidget_list]. Usage examples are at the bottom of http://wordpress.org/extend/plugins/testimonials-widget/.
|
@@ -94,7 +102,11 @@ Open the testimonials-widget.css file that comes along with the plugin, scroll d
|
|
94 |
|
95 |
= How to change the random quote text color? =
|
96 |
|
97 |
-
Styling such as text color, font size, background color, etc., of the random quote can be customized by editing the testimonials-widget.css file.
|
|
|
|
|
|
|
|
|
98 |
|
99 |
= How to change the admin access level setting for the quotes collection admin page? =
|
100 |
|
@@ -123,6 +135,8 @@ Change the value of the variable `$testimonialswidget_admin_userlevel` on line 3
|
|
123 |
==Changelog==
|
124 |
= trunk =
|
125 |
-
|
|
|
|
|
126 |
|
127 |
= 0.2.5 =
|
128 |
* Add span.testimonialswidget_join for author , join text
|
4 |
Tags: testimonial, testimonials, quote, quotes, quotations, random quote, sidebar, widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
+
Stable tag: 0.2.6
|
8 |
|
9 |
Testimonials widget plugin allows you display testimonials in a widget on your WordPress blog.
|
10 |
|
58 |
|
59 |
== Frequently Asked Questions ==
|
60 |
|
61 |
+
= What CSS applies to testimonials container? =
|
62 |
+
|
63 |
+
CSS class `testimonialswidget_testimonials` wraps all testimonials. Additionally, shortcode lists are wrapped by `testimonialswidget_testimonials testimonialswidget_testimonials_list`.
|
64 |
+
|
65 |
+
= What CSS applies to single testimonial container? =
|
66 |
+
|
67 |
+
CSS class `testimonialswidget_testimonial` wraps a single testimonial. Additionally, single shortcode list tems are wrapped by `testimonialswidget_testimonial testimonialswidget_testimonial_list`.
|
68 |
+
|
69 |
= How can I add the testimonials plugin to any where on the site? ie. somewhere other than the side bar like the contact page etc.? =
|
70 |
|
71 |
Use [testimonialswidget_list]. Usage examples are at the bottom of http://wordpress.org/extend/plugins/testimonials-widget/.
|
102 |
|
103 |
= How to change the random quote text color? =
|
104 |
|
105 |
+
Styling such as text color, font size, background color, etc., of the random quote can be customized by editing the testimonials-widget.css file or applying CSS like the following.
|
106 |
+
|
107 |
+
`.testimonialswidget_testimonial q {
|
108 |
+
color: blue;
|
109 |
+
}`
|
110 |
|
111 |
= How to change the admin access level setting for the quotes collection admin page? =
|
112 |
|
135 |
==Changelog==
|
136 |
= trunk =
|
137 |
-
|
138 |
+
= 0.2.6 =
|
139 |
+
* CSS updates for widgets and lists
|
140 |
|
141 |
= 0.2.5 =
|
142 |
* Add span.testimonialswidget_join for author , join text
|
testimonials-widget.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Testimonials Widget
|
4 |
Description: Testimonial widget plugin helps you display testimonials in a sidebar on your WordPress blog.
|
5 |
-
Version: 0.2.
|
6 |
Author: Michael Cannon
|
7 |
Author URI: http://typo3vagabond.com/about-typo3-vagabond/hire-michael/
|
8 |
License: GPL2
|
@@ -275,10 +275,10 @@ function testimonialswidget_list_shortcode($atts, $content = null) {
|
|
275 |
|
276 |
$testimonials = testimonialswidget_get_testimonials( $conditions );
|
277 |
|
278 |
-
$html .= '<div class="testimonialswidget_testimonials_list">';
|
279 |
|
280 |
foreach ($testimonials as $testimonial) {
|
281 |
-
$html .= '<div class="testimonialswidget_testimonial_list">';
|
282 |
$html .= "<p><q>". make_clickable( $testimonial['testimonial'] ) ."</q>";
|
283 |
|
284 |
$cite = '';
|
2 |
/*
|
3 |
Plugin Name: Testimonials Widget
|
4 |
Description: Testimonial widget plugin helps you display testimonials in a sidebar on your WordPress blog.
|
5 |
+
Version: 0.2.6
|
6 |
Author: Michael Cannon
|
7 |
Author URI: http://typo3vagabond.com/about-typo3-vagabond/hire-michael/
|
8 |
License: GPL2
|
275 |
|
276 |
$testimonials = testimonialswidget_get_testimonials( $conditions );
|
277 |
|
278 |
+
$html .= '<div class="testimonialswidget_testimonials testimonialswidget_testimonials_list">';
|
279 |
|
280 |
foreach ($testimonials as $testimonial) {
|
281 |
+
$html .= '<div class="testimonialswidget_testimonial testimonialswidget_testimonial_list">';
|
282 |
$html .= "<p><q>". make_clickable( $testimonial['testimonial'] ) ."</q>";
|
283 |
|
284 |
$cite = '';
|