Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.38 |
| Comparing to | |
| See all releases | |
Code changes from version 1.37 to 1.38
- README.md +4 -0
- includes/js/posts.js +9 -2
- readme.txt +4 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
|
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 66 |
|
| 67 |
## Changelog ##
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
### Version 1.37
|
| 70 |
|
| 71 |
* Fixed bug with google maps not working
|
| 66 |
|
| 67 |
## Changelog ##
|
| 68 |
|
| 69 |
+
### Version 1.38
|
| 70 |
+
|
| 71 |
+
* Made an update to the responsive behavior of wc_posts short code
|
| 72 |
+
|
| 73 |
### Version 1.37
|
| 74 |
|
| 75 |
* Fixed bug with google maps not working
|
includes/js/posts.js
CHANGED
|
@@ -13,8 +13,15 @@
|
|
| 13 |
gutterSpace = .020;
|
| 14 |
}
|
| 15 |
|
| 16 |
-
if ( containerWidth < 568 ) {
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
else if ( containerWidth < 991 ) {
|
| 19 |
columns -= 1;
|
| 20 |
if ( columns < 2 ) {
|
| 13 |
gutterSpace = .020;
|
| 14 |
}
|
| 15 |
|
| 16 |
+
if ( containerWidth < 568 ) {
|
| 17 |
+
columns = 1;
|
| 18 |
+
}
|
| 19 |
+
else if ( containerWidth < 768 ) {
|
| 20 |
+
columns -= 2;
|
| 21 |
+
if ( columns < 2 ) {
|
| 22 |
+
columns = 2;
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
else if ( containerWidth < 991 ) {
|
| 26 |
columns -= 1;
|
| 27 |
if ( columns < 2 ) {
|
readme.txt
CHANGED
|
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
| 88 |
|
| 89 |
== Changelog ==
|
| 90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
### Version 1.37
|
| 92 |
|
| 93 |
* Fixed bug with google maps not working
|
| 88 |
|
| 89 |
== Changelog ==
|
| 90 |
|
| 91 |
+
### Version 1.38
|
| 92 |
+
|
| 93 |
+
* Made an update to the responsive behavior of wc_posts short code
|
| 94 |
+
|
| 95 |
### Version 1.37
|
| 96 |
|
| 97 |
* Fixed bug with google maps not working
|
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.38
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 12 |
+
define( 'WC_SHORTCODES_VERSION', '1.38' );
|
| 13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
| 14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
| 15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
