Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.16 |
| Comparing to | |
| See all releases | |
Code changes from version 1.15 to 1.16
- README.md +4 -0
- includes/functions.php +1 -1
- readme.txt +4 -0
- wc-gallery.php +2 -2
README.md
CHANGED
|
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
|
|
| 46 |
|
| 47 |
## Changelog ##
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
### Version 1.15
|
| 50 |
|
| 51 |
* Removed Transition Styles
|
| 46 |
|
| 47 |
## Changelog ##
|
| 48 |
|
| 49 |
+
### Version 1.16
|
| 50 |
+
|
| 51 |
+
* Bug fix on checking for defined images sizes
|
| 52 |
+
|
| 53 |
### Version 1.15
|
| 54 |
|
| 55 |
* Removed Transition Styles
|
includes/functions.php
CHANGED
|
@@ -628,7 +628,7 @@ function wc_gallery_after_setup_theme() {
|
|
| 628 |
$defined_sizes = get_intermediate_image_sizes();
|
| 629 |
|
| 630 |
foreach ( $wc_gallery_theme_support as $size => $value ) {
|
| 631 |
-
if ( in_array( $size, $defined_sizes ) ) {
|
| 632 |
continue;
|
| 633 |
}
|
| 634 |
$name_w = $size . '_size_w';
|
| 628 |
$defined_sizes = get_intermediate_image_sizes();
|
| 629 |
|
| 630 |
foreach ( $wc_gallery_theme_support as $size => $value ) {
|
| 631 |
+
if ( in_array( 'wc' . $size, $defined_sizes ) ) {
|
| 632 |
continue;
|
| 633 |
}
|
| 634 |
$name_w = $size . '_size_w';
|
readme.txt
CHANGED
|
@@ -46,6 +46,10 @@ Insert a gallery through your dashboard. You will see extra dropdown settings wh
|
|
| 46 |
|
| 47 |
== Changelog ==
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
### Version 1.15
|
| 50 |
|
| 51 |
* Removed Transition Styles
|
| 46 |
|
| 47 |
== Changelog ==
|
| 48 |
|
| 49 |
+
### Version 1.16
|
| 50 |
+
|
| 51 |
+
* Bug fix on checking for defined images sizes
|
| 52 |
+
|
| 53 |
### Version 1.15
|
| 54 |
|
| 55 |
* Removed Transition Styles
|
wc-gallery.php
CHANGED
|
@@ -5,7 +5,7 @@ Plugin URI: http://wordpresscanvas.com/features/gallery/
|
|
| 5 |
Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
-
Version: 1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
|
@@ -13,7 +13,7 @@ function wc_gallery_using_woocommerce() {
|
|
| 13 |
return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
|
| 14 |
}
|
| 15 |
|
| 16 |
-
define( 'WC_GALLERY_VERSION', '1.
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
| 5 |
Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
|
| 6 |
Author: Chris Baldelomar
|
| 7 |
Author URI: http://webplantmedia.com/
|
| 8 |
+
Version: 1.16
|
| 9 |
License: GPLv2 or later
|
| 10 |
*/
|
| 11 |
|
| 13 |
return in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
|
| 14 |
}
|
| 15 |
|
| 16 |
+
define( 'WC_GALLERY_VERSION', '1.16' );
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
