Ultimate Responsive Image Slider Plugin - Version 3.4.7

Version Description

  • Bug Fixed: Adding image slides sorting bug fixed
Download this release

Release Info

Developer FARAZFRANK
Plugin Icon 128x128 Ultimate Responsive Image Slider Plugin
Version 3.4.7
Comparing to
See all releases

Code changes from version 3.4.6 to 3.4.7

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wpfrank.com/
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.0
6
  Tested up to: 5.4.1
7
- Stable tag: 3.4.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -161,6 +161,9 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
161
 
162
  == Changelog ==
163
 
 
 
 
164
  = 3.4.6 =
165
  * Major bug fixed: Many Users reported that slider image not displaying after major update release, It's fixed now, feedback appreciated by users.
166
  * UI Bug Fix: At All Sliders page "Screen Options" button fixed
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.0
6
  Tested up to: 5.4.1
7
+ Stable tag: 3.4.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
161
 
162
  == Changelog ==
163
 
164
+ = 3.4.7 =
165
+ * Bug Fixed: Adding image slides sorting bug fixed
166
+
167
  = 3.4.6 =
168
  * Major bug fixed: Many Users reported that slider image not displaying after major update release, It's fixed now, feedback appreciated by users.
169
  * UI Bug Fix: At All Sliders page "Screen Options" button fixed
ultimate-responsive-image-slider.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
3
- Plugin Name: Ultimate Responsive Image Slider - 3.4.6
4
  Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
5
  Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
6
- Version: 3.4.6
7
  Author: FARAZFRANK
8
  Author URI: http://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
@@ -358,7 +358,7 @@ class URIS {
358
  $slide_medium = wp_get_attachment_image_src($slide_id, 'medium', true); // return is array medium image URL
359
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
360
  ?>
361
- <li class="uris-slide" id="uris-slide" data-position="<?php echo $slide_id; ?>">
362
  <a id="uris-slide-delete-icon" class="uris-slide-delete-icon"><img src="<?php echo URIS_PLUGIN_URL.'assets/img/close-icon.png'; ?>" /></a>
363
  <div class="uris-slide-meta">
364
  <p>
@@ -545,7 +545,7 @@ class URIS {
545
  $slide_full = wp_get_attachment_image_src($id, 'full', true);
546
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
547
  ?>
548
- <li class="uris-slide" id="uris-slide">
549
  <a id="uris-slide-delete-icon" class="uris-slide-delete-icon"><img src="<?php echo URIS_PLUGIN_URL.'assets/img/close-icon.png'; ?>" /></a>
550
  <div>
551
  <p>
1
  <?php
2
  /*
3
+ Plugin Name: Ultimate Responsive Image Slider - 3.4.7
4
  Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
5
  Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
6
+ Version: 3.4.7
7
  Author: FARAZFRANK
8
  Author URI: http://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
358
  $slide_medium = wp_get_attachment_image_src($slide_id, 'medium', true); // return is array medium image URL
359
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
360
  ?>
361
+ <li id="<?php echo $slide_id; ?>" class="uris-slide" data-position="<?php echo $slide_id; ?>">
362
  <a id="uris-slide-delete-icon" class="uris-slide-delete-icon"><img src="<?php echo URIS_PLUGIN_URL.'assets/img/close-icon.png'; ?>" /></a>
363
  <div class="uris-slide-meta">
364
  <p>
545
  $slide_full = wp_get_attachment_image_src($id, 'full', true);
546
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
547
  ?>
548
+ <li id="<?php echo $id; ?>" class="uris-slide" data-position="<?php echo $id; ?>">
549
  <a id="uris-slide-delete-icon" class="uris-slide-delete-icon"><img src="<?php echo URIS_PLUGIN_URL.'assets/img/close-icon.png'; ?>" /></a>
550
  <div>
551
  <p>