Plugin Directory

Changeset 2442459


Ignore:
Timestamp:
12/18/2020 04:49:53 PM (5 years ago)
Author:
alkesh7
Message:

Gallery Showcase for WordPress - Version 1.1 Updates

Location:
gallery-showcase/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gallery-showcase/trunk/assets/less/style.less

    r1895080 r2442459  
    9191}
    9292
    93 .@{layout} {
     93.owl-carousel {
    9494    .@{layout_effect_group}.gs-content {
    9595        padding: @padding_top @padding_right @padding_bottom @padding_left;
     
    286286        .nav_vert_pos(@nav_vert_pos, @nav_vert_off);
    287287        .nav_hori_pos(@nav_hori_pos, @nav_hori_off);
     288        left: 0;
    288289    }
    289290    .owl-pagination .owl-page {
  • gallery-showcase/trunk/gallery-showcase.php

    r2362185 r2442459  
    55 * Description: Gallery Showcase plugin allows you to manage, edit, design and create new galleries showcases or teasers.
    66 * Tags: Gallery Showcase Plugin, Gallery, Gallery Showcase, Image Gallery Showcase, Gallery Plugin, Gallery Shortcode, WordPress Plugin
    7  * Version: 1.0.4
     7 * Version: 1.1
    88 * Author: Alkesh Miyani
    99 * Author URI: https://profiles.wordpress.org/alkesh7/
  • gallery-showcase/trunk/includes/shortcode.php

    r1895081 r2442459  
    8484                                    $url = $resizedImage["url"];
    8585                                } else {
    86                                     $url = wp_get_attachment_url($value, $post_thumbnail);
     86                                    $url = wp_get_attachment_image_src( $value, $post_thumbnail, '' );
    8787                                }
    8888
     
    9393                                $display_content = isset($gs_options['display_content']) ? $gs_options['display_content'] : 0;
    9494                                ?>
    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"]; ?>'  >
    9696                                    <figure>
    9797                                        <a href="<?php echo $url; ?>" data-fancybox="group" data-type="image" rel="example_group" data-caption="<?php echo $title; ?>">
     
    100100                                                echo '<img src="' . $resizedImage["url"] . '" width="' . $resizedImage["width"] . '" height="' . $resizedImage["height"] . '" title="' . $title . '" data-url="' . $url . '"/>';
    101101                                            } else {
    102                                                 echo '<img src="' . $url . '" title="' . $title . '" data-url="' . $url . '"/>';
     102                                                echo '<img src="' . $url[0] . '" title="' . $title . '" data-url="' . $url[0] . '"/>';
    103103                                            }
    104104                                            ?>
  • gallery-showcase/trunk/readme.txt

    r2362185 r2442459  
    44Tags: gallery showcase plugin, gallery, gallery showcase, gallery plugin, gallery shortcode, gallery layouts, image gallery showcase
    55Requires at least: 4.8
    6 Tested up to: 5.5
     6Tested up to: 5.6
    77Requires PHP: 5.6
    8 Stable tag: 1.0.3
     8Stable tag: 1.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7676== Changelog ==
    7777
     78= 1.1 =
     79Release 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
    7887= 1.0.4 =
    7988Release Date: August 16th, 2020
Note: See TracChangeset for help on using the changeset viewer.