Version Description
Download this release
Release Info
| Developer | cbaldelomar |
| Plugin | |
| Version | 1.54 |
| Comparing to | |
| See all releases | |
Code changes from version 1.53 to 1.54
- README.md +4 -0
- includes/css/style.css +3 -3
- readme.txt +4 -0
- wc-gallery.php +2 -2
README.md
CHANGED
|
@@ -62,6 +62,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
|
|
| 62 |
|
| 63 |
## Changelog ##
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
### Version 1.53 ###
|
| 66 |
|
| 67 |
* updated wpc settings framework to version 1.0.2
|
| 62 |
|
| 63 |
## Changelog ##
|
| 64 |
|
| 65 |
+
### Version 1.54 ###
|
| 66 |
+
|
| 67 |
+
* removed ellipsis
|
| 68 |
+
|
| 69 |
### Version 1.53 ###
|
| 70 |
|
| 71 |
* updated wpc settings framework to version 1.0.2
|
includes/css/style.css
CHANGED
|
@@ -99,9 +99,9 @@
|
|
| 99 |
margin: 0;
|
| 100 |
padding: 0;
|
| 101 |
text-align: center;
|
| 102 |
-
text-overflow: ellipsis;
|
| 103 |
-
white-space: nowrap;
|
| 104 |
-
overflow: hidden;
|
| 105 |
}
|
| 106 |
|
| 107 |
.wc-gallery .gallery-caption p {
|
| 99 |
margin: 0;
|
| 100 |
padding: 0;
|
| 101 |
text-align: center;
|
| 102 |
+
/* text-overflow: ellipsis; */
|
| 103 |
+
/* white-space: nowrap; */
|
| 104 |
+
/* overflow: hidden; */
|
| 105 |
}
|
| 106 |
|
| 107 |
.wc-gallery .gallery-caption p {
|
readme.txt
CHANGED
|
@@ -62,6 +62,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
|
|
| 62 |
|
| 63 |
== Changelog ==
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
= Version 1.53 =
|
| 66 |
|
| 67 |
* updated wpc settings framework to version 1.0.2
|
| 62 |
|
| 63 |
== Changelog ==
|
| 64 |
|
| 65 |
+
= Version 1.54 =
|
| 66 |
+
|
| 67 |
+
* removed ellipsis
|
| 68 |
+
|
| 69 |
= Version 1.53 =
|
| 70 |
|
| 71 |
* updated wpc settings framework to version 1.0.2
|
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.54
|
| 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.54' );
|
| 17 |
define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
|
| 18 |
define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
|
| 19 |
define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
