Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.29 |
| Comparing to | |
| See all releases | |
Code changes from version 1.28 to 1.29
- README.md +4 -0
- includes/options.php +11 -11
- 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.28
|
| 50 |
|
| 51 |
* Removed loading of widgets file
|
| 46 |
|
| 47 |
## Changelog ##
|
| 48 |
|
| 49 |
+
### Version 1.29
|
| 50 |
+
|
| 51 |
+
* Added Image size identifier for easy reference
|
| 52 |
+
|
| 53 |
### Version 1.28
|
| 54 |
|
| 55 |
* Removed loading of widgets file
|
includes/options.php
CHANGED
|
@@ -26,7 +26,7 @@ function wc_gallery_options( $options ) {
|
|
| 26 |
array(
|
| 27 |
'id' => 'icon_size',
|
| 28 |
'title' => 'Icon Size',
|
| 29 |
-
'description' => '',
|
| 30 |
'group' => array(
|
| 31 |
array(
|
| 32 |
'option_name' => 'icon_size_w',
|
|
@@ -52,7 +52,7 @@ function wc_gallery_options( $options ) {
|
|
| 52 |
array(
|
| 53 |
'id' => 'square_size',
|
| 54 |
'title' => 'Square Size',
|
| 55 |
-
'description' => '',
|
| 56 |
'group' => array(
|
| 57 |
array(
|
| 58 |
'option_name' => 'square_size_w',
|
|
@@ -80,7 +80,7 @@ function wc_gallery_options( $options ) {
|
|
| 80 |
array(
|
| 81 |
'id' => 'small_size',
|
| 82 |
'title' => 'Small Size',
|
| 83 |
-
'description' => '',
|
| 84 |
'group' => array(
|
| 85 |
array(
|
| 86 |
'option_name' => 'small_size_w',
|
|
@@ -99,7 +99,7 @@ function wc_gallery_options( $options ) {
|
|
| 99 |
array(
|
| 100 |
'id' => 'standard_size',
|
| 101 |
'title' => 'Standard Size',
|
| 102 |
-
'description' => '',
|
| 103 |
'group' => array(
|
| 104 |
array(
|
| 105 |
'option_name' => 'standard_size_w',
|
|
@@ -118,7 +118,7 @@ function wc_gallery_options( $options ) {
|
|
| 118 |
array(
|
| 119 |
'id' => 'big_size',
|
| 120 |
'title' => 'Big Size',
|
| 121 |
-
'description' => '',
|
| 122 |
'group' => array(
|
| 123 |
array(
|
| 124 |
'option_name' => 'big_size_w',
|
|
@@ -137,7 +137,7 @@ function wc_gallery_options( $options ) {
|
|
| 137 |
array(
|
| 138 |
'id' => 'fixedheightsmall_size',
|
| 139 |
'title' => 'Fixed Height Small Size',
|
| 140 |
-
'description' => '',
|
| 141 |
'group' => array(
|
| 142 |
array(
|
| 143 |
'option_name' => 'fixedheightsmall_size_w',
|
|
@@ -156,7 +156,7 @@ function wc_gallery_options( $options ) {
|
|
| 156 |
array(
|
| 157 |
'id' => 'fixedheightmedium_size',
|
| 158 |
'title' => 'Fixed Height Medium Size',
|
| 159 |
-
'description' => '',
|
| 160 |
'group' => array(
|
| 161 |
array(
|
| 162 |
'option_name' => 'fixedheightmedium_size_w',
|
|
@@ -175,7 +175,7 @@ function wc_gallery_options( $options ) {
|
|
| 175 |
array(
|
| 176 |
'id' => 'fixedheight_size',
|
| 177 |
'title' => 'Fixed Height Large Size',
|
| 178 |
-
'description' => '',
|
| 179 |
'group' => array(
|
| 180 |
array(
|
| 181 |
'option_name' => 'fixedheight_size_w',
|
|
@@ -194,7 +194,7 @@ function wc_gallery_options( $options ) {
|
|
| 194 |
array(
|
| 195 |
'id' => 'carouselsmall_size',
|
| 196 |
'title' => 'Carousel Small Size',
|
| 197 |
-
'description' => '',
|
| 198 |
'group' => array(
|
| 199 |
array(
|
| 200 |
'option_name' => 'carouselsmall_size_w',
|
|
@@ -220,7 +220,7 @@ function wc_gallery_options( $options ) {
|
|
| 220 |
array(
|
| 221 |
'id' => 'carousel_size',
|
| 222 |
'title' => 'Carousel Large Size',
|
| 223 |
-
'description' => '',
|
| 224 |
'group' => array(
|
| 225 |
array(
|
| 226 |
'option_name' => 'carousel_size_w',
|
|
@@ -246,7 +246,7 @@ function wc_gallery_options( $options ) {
|
|
| 246 |
array(
|
| 247 |
'id' => 'slider_size',
|
| 248 |
'title' => 'Slider Size',
|
| 249 |
-
'description' => '',
|
| 250 |
'group' => array(
|
| 251 |
array(
|
| 252 |
'option_name' => 'slider_size_w',
|
| 26 |
array(
|
| 27 |
'id' => 'icon_size',
|
| 28 |
'title' => 'Icon Size',
|
| 29 |
+
'description' => 'Image size identifier: <code>wcicon</code>',
|
| 30 |
'group' => array(
|
| 31 |
array(
|
| 32 |
'option_name' => 'icon_size_w',
|
| 52 |
array(
|
| 53 |
'id' => 'square_size',
|
| 54 |
'title' => 'Square Size',
|
| 55 |
+
'description' => 'Image size identifier: <code>wcsquare</code>',
|
| 56 |
'group' => array(
|
| 57 |
array(
|
| 58 |
'option_name' => 'square_size_w',
|
| 80 |
array(
|
| 81 |
'id' => 'small_size',
|
| 82 |
'title' => 'Small Size',
|
| 83 |
+
'description' => 'Image size identifier: <code>wcsmall</code>',
|
| 84 |
'group' => array(
|
| 85 |
array(
|
| 86 |
'option_name' => 'small_size_w',
|
| 99 |
array(
|
| 100 |
'id' => 'standard_size',
|
| 101 |
'title' => 'Standard Size',
|
| 102 |
+
'description' => 'Image size identifier: <code>wcstandard</code>',
|
| 103 |
'group' => array(
|
| 104 |
array(
|
| 105 |
'option_name' => 'standard_size_w',
|
| 118 |
array(
|
| 119 |
'id' => 'big_size',
|
| 120 |
'title' => 'Big Size',
|
| 121 |
+
'description' => 'Image size identifier: <code>wcbig</code>',
|
| 122 |
'group' => array(
|
| 123 |
array(
|
| 124 |
'option_name' => 'big_size_w',
|
| 137 |
array(
|
| 138 |
'id' => 'fixedheightsmall_size',
|
| 139 |
'title' => 'Fixed Height Small Size',
|
| 140 |
+
'description' => 'Image size identifier: <code>wcfixedheightsmall</code>',
|
| 141 |
'group' => array(
|
| 142 |
array(
|
| 143 |
'option_name' => 'fixedheightsmall_size_w',
|
| 156 |
array(
|
| 157 |
'id' => 'fixedheightmedium_size',
|
| 158 |
'title' => 'Fixed Height Medium Size',
|
| 159 |
+
'description' => 'Image size identifier: <code>wcfixedheightmedium</code>',
|
| 160 |
'group' => array(
|
| 161 |
array(
|
| 162 |
'option_name' => 'fixedheightmedium_size_w',
|
| 175 |
array(
|
| 176 |
'id' => 'fixedheight_size',
|
| 177 |
'title' => 'Fixed Height Large Size',
|
| 178 |
+
'description' => 'Image size identifier: <code>wcfixedheight</code>',
|
| 179 |
'group' => array(
|
| 180 |
array(
|
| 181 |
'option_name' => 'fixedheight_size_w',
|
| 194 |
array(
|
| 195 |
'id' => 'carouselsmall_size',
|
| 196 |
'title' => 'Carousel Small Size',
|
| 197 |
+
'description' => 'Image size identifier: <code>wccarouselsmall</code>',
|
| 198 |
'group' => array(
|
| 199 |
array(
|
| 200 |
'option_name' => 'carouselsmall_size_w',
|
| 220 |
array(
|
| 221 |
'id' => 'carousel_size',
|
| 222 |
'title' => 'Carousel Large Size',
|
| 223 |
+
'description' => 'Image size identifier: <code>wccarousel</code>',
|
| 224 |
'group' => array(
|
| 225 |
array(
|
| 226 |
'option_name' => 'carousel_size_w',
|
| 246 |
array(
|
| 247 |
'id' => 'slider_size',
|
| 248 |
'title' => 'Slider Size',
|
| 249 |
+
'description' => 'Image size identifier: <code>wcslider</code>',
|
| 250 |
'group' => array(
|
| 251 |
array(
|
| 252 |
'option_name' => 'slider_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.28 =
|
| 50 |
|
| 51 |
* Removed loading of widgets file
|
| 46 |
|
| 47 |
== Changelog ==
|
| 48 |
|
| 49 |
+
= Version 1.29 =
|
| 50 |
+
|
| 51 |
+
* Added Image size identifier for easy reference
|
| 52 |
+
|
| 53 |
= Version 1.28 =
|
| 54 |
|
| 55 |
* Removed loading of widgets file
|
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.29
|
| 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.29' );
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
