Changeset 2442459
- Timestamp:
- 12/18/2020 04:49:53 PM (5 years ago)
- Location:
- gallery-showcase/trunk
- Files:
-
- 4 edited
-
assets/less/style.less (modified) (2 diffs)
-
gallery-showcase.php (modified) (1 diff)
-
includes/shortcode.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gallery-showcase/trunk/assets/less/style.less
r1895080 r2442459 91 91 } 92 92 93 . @{layout}{93 .owl-carousel { 94 94 .@{layout_effect_group}.gs-content { 95 95 padding: @padding_top @padding_right @padding_bottom @padding_left; … … 286 286 .nav_vert_pos(@nav_vert_pos, @nav_vert_off); 287 287 .nav_hori_pos(@nav_hori_pos, @nav_hori_off); 288 left: 0; 288 289 } 289 290 .owl-pagination .owl-page { -
gallery-showcase/trunk/gallery-showcase.php
r2362185 r2442459 5 5 * Description: Gallery Showcase plugin allows you to manage, edit, design and create new galleries showcases or teasers. 6 6 * Tags: Gallery Showcase Plugin, Gallery, Gallery Showcase, Image Gallery Showcase, Gallery Plugin, Gallery Shortcode, WordPress Plugin 7 * Version: 1. 0.47 * Version: 1.1 8 8 * Author: Alkesh Miyani 9 9 * Author URI: https://profiles.wordpress.org/alkesh7/ -
gallery-showcase/trunk/includes/shortcode.php
r1895081 r2442459 84 84 $url = $resizedImage["url"]; 85 85 } else { 86 $url = wp_get_attachment_ url($value, $post_thumbnail);86 $url = wp_get_attachment_image_src( $value, $post_thumbnail, '' ); 87 87 } 88 88 … … 93 93 $display_content = isset($gs_options['display_content']) ? $gs_options['display_content'] : 0; 94 94 ?> 95 <div class="gs-content <?php echo $layout_effect_group . ' ' . $layout_effect . ' ' . $gs_clm . ' ' . $gs_animate; ?>" data-effect="<?php echo $layout_animation; ?>" data-id="<?php echo $post->ID; ?>" data-layout="<?php echo $layout; ?>" >95 <div class="gs-content <?php echo $layout_effect_group . ' ' . $layout_effect . ' ' . $gs_clm . ' ' . $gs_animate; ?>" data-effect="<?php echo $layout_animation; ?>" data-id="<?php echo $post->ID; ?>" data-layout="<?php echo $layout; ?>" height = '<?php echo $resizedImage["height"]; ?>' width = '<?php echo $resizedImage["width"]; ?>' > 96 96 <figure> 97 97 <a href="<?php echo $url; ?>" data-fancybox="group" data-type="image" rel="example_group" data-caption="<?php echo $title; ?>"> … … 100 100 echo '<img src="' . $resizedImage["url"] . '" width="' . $resizedImage["width"] . '" height="' . $resizedImage["height"] . '" title="' . $title . '" data-url="' . $url . '"/>'; 101 101 } else { 102 echo '<img src="' . $url . '" title="' . $title . '" data-url="' . $url. '"/>';102 echo '<img src="' . $url[0] . '" title="' . $title . '" data-url="' . $url[0] . '"/>'; 103 103 } 104 104 ?> -
gallery-showcase/trunk/readme.txt
r2362185 r2442459 4 4 Tags: gallery showcase plugin, gallery, gallery showcase, gallery plugin, gallery shortcode, gallery layouts, image gallery showcase 5 5 Requires at least: 4.8 6 Tested up to: 5. 56 Tested up to: 5.6 7 7 Requires PHP: 5.6 8 Stable tag: 1. 0.38 Stable tag: 1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 76 76 == Changelog == 77 77 78 = 1.1 = 79 Release Date: December 18th, 2020 80 81 * [Updated] Latest WordPress compatibility Check 82 * [Fixed] Margin and Padding option not working for Image 83 * [Fixed] Slider and navigation option offset not working 84 * [Fixed] Slider and navigation arrow size not working 85 * [Fixed] Layout effect color not working 86 78 87 = 1.0.4 = 79 88 Release Date: August 16th, 2020
Note: See TracChangeset
for help on using the changeset viewer.