Ultimate Responsive Image Slider Plugin - Version 3.2.7

Version Description

Download this release

Release Info

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

Code changes from version 3.2.6 to 3.2.7

img/5star.jpg ADDED
Binary file
img/Close-icon-uris.ico ADDED
Binary file
img/Close-icon.png DELETED
Binary file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.wpfrank.com/
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.8
6
  Tested up to: 4.9.8
7
- Stable tag: 3.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -123,6 +123,11 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
123
  == Changelog ==
124
  For more information, see [WP Frank](https://wpfrank.com/)
125
 
 
 
 
 
 
126
  = V 3.2.6 =
127
  - continuty update
128
 
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.8
6
  Tested up to: 4.9.8
7
+ Stable tag: 3.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
123
  == Changelog ==
124
  For more information, see [WP Frank](https://wpfrank.com/)
125
 
126
+ = V 3.2.7 =
127
+ - Update Review Button
128
+ - Update close icon of slider in dashboard
129
+ - Bug Fixed : Autoplay Slider Speed's span not visible
130
+
131
  = V 3.2.6 =
132
  - continuty update
133
 
ultimate-responsive-image-slider-settings-meta-box.php CHANGED
@@ -274,6 +274,7 @@ jQuery(document).ready(function(){
274
  <td>
275
  <?php if(!isset($WRIS_L3_Transition_Speed)) $WRIS_L3_Transition_Speed = 5000; ?>
276
  <input class="uris-slider" name="wl-l3-transition-speed" id="wl-l3-transition-speed" type="range" min="1000" max="60000" step="1000" value="<?php echo $WRIS_L3_Transition_Speed; ?>" data-rangeSlider>
 
277
  <p class="description">
278
  <?php _e('Set your desired slider speed of slides. Default speed is 5 Second', URIS_TD); ?>.
279
  </p>
274
  <td>
275
  <?php if(!isset($WRIS_L3_Transition_Speed)) $WRIS_L3_Transition_Speed = 5000; ?>
276
  <input class="uris-slider" name="wl-l3-transition-speed" id="wl-l3-transition-speed" type="range" min="1000" max="60000" step="1000" value="<?php echo $WRIS_L3_Transition_Speed; ?>" data-rangeSlider>
277
+ <span id="uris-range-val"></span>
278
  <p class="description">
279
  <?php _e('Set your desired slider speed of slides. Default speed is 5 Second', URIS_TD); ?>.
280
  </p>
ultimate-responsive-image-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Responsive Image Slider
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.2.6
7
  Author: WP Frank
8
  Author URI: https://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
@@ -217,17 +217,33 @@ class URIS {
217
  content: "\f155";
218
  font-size: 30px;
219
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  </style>
221
  <div align="center">
222
  <p>Please Review & Rate Us On WordPress</p>
223
  <a class="upgrade-to-pro-demo urisp-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/plugins/ultimate-responsive-image-slider/#reviews" target="_blank">
224
- <?php for($star=1;$star<=5;$star++){ ?>
225
- <span class="dashicons dashicons-star-filled"></span>
226
- <?php } ?>
227
  </a>
228
  </div>
229
  <div class="upgrade-to-pro" style="text-align:center;margin-bottom:10px;margin-top:10px;">
230
- <a href="https://wordpress.org/support/view/plugin-reviews/ultimate-responsive-image-slider" target="_blank" class="button button-primary button-hero ">RATE US</a>
231
  </div>
232
  <?php
233
  }
@@ -255,7 +271,7 @@ class URIS {
255
  $url1 = $WRIS_SinglePhotoDetails['rpggallery_admin_thumb'];
256
  $url3 = $WRIS_SinglePhotoDetails['rpggallery_admin_large']; ?>
257
  <li class="rpg-image-entry" id="rpg_img">
258
- <a class="gallery_remove rpggallery_remove" href="#gallery_remove" id="rpg_remove_bt" ><img src="<?php echo URIS_PLUGIN_URL.'img/Close-icon.png'; ?>" /></a>
259
  <div class="rpp-admin-inner-div1" >
260
  <img src="<?php echo esc_url ( $url1 ); ?>" class="rpg-meta-image" alt="" style="">
261
  <input type="hidden" id="unique_string[]" name="unique_string[]" value="<?php echo esc_attr( $UniqueString ); ?>" />
@@ -402,7 +418,7 @@ class URIS {
402
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
403
  ?>
404
  <li class="rpg-image-entry" id="rpg_img">
405
- <a class="gallery_remove rpggallery_remove" href="#gallery_remove" id="rpg_remove_bt" ><img src="<?php echo URIS_PLUGIN_URL.'img/Close-icon.png'; ?>" /></a>
406
  <div class="rpp-admin-inner-div1" >
407
  <img src="<?php echo esc_url( $image1[0] ); ?>" class="rpg-meta-image" alt="" style="">
408
  </div>
3
  Plugin Name: Ultimate Responsive Image Slider
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.2.7
7
  Author: WP Frank
8
  Author URI: https://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
217
  content: "\f155";
218
  font-size: 30px;
219
  }
220
+ .wpf_uris_fivestar{
221
+ width: 80%;
222
+ }
223
+
224
+ a.wpf_fs_btn {
225
+ text-decoration: none;
226
+ background-color: #d72323;
227
+ padding-left: 20px;
228
+ padding-right: 20px;
229
+ border-radius: 5px;
230
+ color: #fff;
231
+ padding-top: 8px;
232
+ padding-bottom: 8px;
233
+ }
234
+ a:focus, a:hover {
235
+ color: #fff !important;
236
+ text-decoration: none !important;
237
+ }
238
  </style>
239
  <div align="center">
240
  <p>Please Review & Rate Us On WordPress</p>
241
  <a class="upgrade-to-pro-demo urisp-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/plugins/ultimate-responsive-image-slider/#reviews" target="_blank">
242
+ <img class="wpf_uris_fivestar" src="<?php $path = URIS_PLUGIN_URL."/img/5star.jpg" ; echo $path; ?>">
 
 
243
  </a>
244
  </div>
245
  <div class="upgrade-to-pro" style="text-align:center;margin-bottom:10px;margin-top:10px;">
246
+ <a href="https://wordpress.org/support/view/plugin-reviews/ultimate-responsive-image-slider" target="_blank" class="wpf_fs_btn">RATE US</a>
247
  </div>
248
  <?php
249
  }
271
  $url1 = $WRIS_SinglePhotoDetails['rpggallery_admin_thumb'];
272
  $url3 = $WRIS_SinglePhotoDetails['rpggallery_admin_large']; ?>
273
  <li class="rpg-image-entry" id="rpg_img">
274
+ <a class="gallery_remove rpggallery_remove" href="#gallery_remove" id="rpg_remove_bt" ><img src="<?php echo URIS_PLUGIN_URL.'img/Close-icon-uris.ico'; ?>" /></a>
275
  <div class="rpp-admin-inner-div1" >
276
  <img src="<?php echo esc_url ( $url1 ); ?>" class="rpg-meta-image" alt="" style="">
277
  <input type="hidden" id="unique_string[]" name="unique_string[]" value="<?php echo esc_attr( $UniqueString ); ?>" />
418
  $UniqueString = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
419
  ?>
420
  <li class="rpg-image-entry" id="rpg_img">
421
+ <a class="gallery_remove rpggallery_remove" href="#gallery_remove" id="rpg_remove_bt" ><img src="<?php echo URIS_PLUGIN_URL.'img/Close-icon-uris.ico'; ?>" /></a>
422
  <div class="rpp-admin-inner-div1" >
423
  <img src="<?php echo esc_url( $image1[0] ); ?>" class="rpg-meta-image" alt="" style="">
424
  </div>