Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 1.10 |
Comparing to | |
See all releases |
Code changes from version 1.9 to 1.10
- README.md +4 -0
- includes/css/style.css +1 -0
- readme.txt +4 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
@@ -44,6 +44,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
44 |
|
45 |
## Changelog ##
|
46 |
|
|
|
|
|
|
|
|
|
47 |
### Version 1.9
|
48 |
|
49 |
* Appended version number to css and js files
|
44 |
|
45 |
## Changelog ##
|
46 |
|
47 |
+
### Version 1.10
|
48 |
+
|
49 |
+
* Fixed style bug for testimonials
|
50 |
+
|
51 |
### Version 1.9
|
52 |
|
53 |
* Appended version number to css and js files
|
includes/css/style.css
CHANGED
@@ -226,6 +226,7 @@
|
|
226 |
float: left;
|
227 |
background: #eeeeee;;
|
228 |
padding: 20px;
|
|
|
229 |
}
|
230 |
.wc-shortcodes-testimonial-content:after {
|
231 |
content: "";
|
226 |
float: left;
|
227 |
background: #eeeeee;;
|
228 |
padding: 20px;
|
229 |
+
width: 100%;
|
230 |
}
|
231 |
.wc-shortcodes-testimonial-content:after {
|
232 |
content: "";
|
readme.txt
CHANGED
@@ -44,6 +44,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
44 |
|
45 |
== Changelog ==
|
46 |
|
|
|
|
|
|
|
|
|
47 |
### Version 1.9
|
48 |
|
49 |
* Appended version number to css and js files
|
44 |
|
45 |
== Changelog ==
|
46 |
|
47 |
+
### Version 1.10
|
48 |
+
|
49 |
+
* Fixed style bug for testimonials
|
50 |
+
|
51 |
### Version 1.9
|
52 |
|
53 |
* Appended version number to css and js files
|
wc-shortcodes.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://wordpresscanvas.com/features/shortcodes/
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
15 |
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 1.10
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
define( 'WC_SHORTCODES_VERSION', '1.10' );
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
15 |
|