Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.15 |
| Comparing to | |
| See all releases | |
Code changes from version 1.14 to 1.15
- README.md +5 -0
- includes/css/style.css +3 -0
- includes/img/blogger.png +0 -0
- includes/img/bloglovin.png +0 -0
- includes/img/facebook.png +0 -0
- includes/img/google.png +0 -0
- readme.txt +5 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
|
@@ -44,6 +44,11 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 44 |
|
| 45 |
## Changelog ##
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
### Version 1.14
|
| 48 |
|
| 49 |
* Cleaned up code
|
| 44 |
|
| 45 |
## Changelog ##
|
| 46 |
|
| 47 |
+
### Version 1.15
|
| 48 |
+
|
| 49 |
+
* added block display to image anchor elements
|
| 50 |
+
* updated icons
|
| 51 |
+
|
| 52 |
### Version 1.14
|
| 53 |
|
| 54 |
* Cleaned up code
|
includes/css/style.css
CHANGED
|
@@ -643,6 +643,9 @@
|
|
| 643 |
margin-right: 6px;
|
| 644 |
margin-bottom: 6px;
|
| 645 |
}
|
|
|
|
|
|
|
|
|
|
| 646 |
.wc-shortcodes-social-icons li img {
|
| 647 |
max-height: 48px;
|
| 648 |
}
|
| 643 |
margin-right: 6px;
|
| 644 |
margin-bottom: 6px;
|
| 645 |
}
|
| 646 |
+
.wc-shortcodes-social-icons li a {
|
| 647 |
+
display: block;
|
| 648 |
+
}
|
| 649 |
.wc-shortcodes-social-icons li img {
|
| 650 |
max-height: 48px;
|
| 651 |
}
|
includes/img/blogger.png
CHANGED
|
Binary file
|
includes/img/bloglovin.png
CHANGED
|
Binary file
|
includes/img/facebook.png
CHANGED
|
Binary file
|
includes/img/google.png
CHANGED
|
Binary file
|
readme.txt
CHANGED
|
@@ -44,6 +44,11 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 44 |
|
| 45 |
== Changelog ==
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
### Version 1.14
|
| 48 |
|
| 49 |
* Cleaned up code
|
| 44 |
|
| 45 |
== Changelog ==
|
| 46 |
|
| 47 |
+
### Version 1.15
|
| 48 |
+
|
| 49 |
+
* added block display to image anchor elements
|
| 50 |
+
* updated icons
|
| 51 |
+
|
| 52 |
### Version 1.14
|
| 53 |
|
| 54 |
* Cleaned up code
|
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_PREFIX', '_wc_shortcodes_' );
|
| 15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 5 |
Description: A family of shortcodes to enhance site functionality.
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
+
Version: 1.15
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 12 |
+
define( 'WC_SHORTCODES_VERSION', '1.15' );
|
| 13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
| 14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
| 15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
