Ultimate Responsive Image Slider Plugin - Version 3.0.0

Version Description

Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Ultimate Responsive Image Slider Plugin
Version 3.0.0
Comparing to
See all releases

Code changes from version 2.9.9 to 3.0.0

img/loading.gif ADDED
Binary file
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: weblizar
3
  Donate link: http://www.weblizar.com/
4
  Tags: slider, slider plugin, best slider plugin, image slide show, responsive slider, image slider, wordpress slider, slider widget, responsive image slider, theme slider, post slider, page slider, free slider plugin
5
  Requires at least: 3.8
6
- Tested up to: 4.7
7
- Stable tag: 2.9.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -154,6 +154,7 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
154
 
155
  For more information, see Weblizar(http://wwww.weblizar.com/).
156
 
 
157
  V 2.9.9 - version update only
158
  V 2.9.8 - compatible upto wp 4.7
159
  V 2.9.7 - update
3
  Donate link: http://www.weblizar.com/
4
  Tags: slider, slider plugin, best slider plugin, image slide show, responsive slider, image slider, wordpress slider, slider widget, responsive image slider, theme slider, post slider, page slider, free slider plugin
5
  Requires at least: 3.8
6
+ Tested up to: 4.7.3
7
+ Stable tag: 3.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
154
 
155
  For more information, see Weblizar(http://wwww.weblizar.com/).
156
 
157
+ V 3.0.0 - alt tag added, pre-loader added, seo friendly slides
158
  V 2.9.9 - version update only
159
  V 2.9.8 - compatible upto wp 4.7
160
  V 2.9.7 - update
ultimate-responsive-image-slider.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
- * Version: 2.9.9
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
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
+ * Version: 3.0.0
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
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
uris-layout.php CHANGED
@@ -25,6 +25,13 @@ $i = 1;
25
  $j = 1;
26
  ?>
27
  <script type="text/javascript">
 
 
 
 
 
 
 
28
  jQuery( document ).ready(function( jQuery ) {
29
  jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
30
  //width
@@ -205,9 +212,37 @@ $j = 1;
205
  display: none;
206
  }
207
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  /* Custom CSS */
209
  <?php echo $WRIS_L3_Custom_CSS; ?>
210
  </style>
 
 
 
 
 
 
211
  <?php if($WRIS_L3_Slide_Title == 1) { ?>
212
  <h3 class="uris-slider-title"><?php echo get_the_title( $post_id ); ?> </h3>
213
  <?php } ?>
@@ -259,9 +294,10 @@ $j = 1;
259
  <?php
260
  foreach($RPGP_AllPhotosDetails as $RPGP_SinglePhotoDetails) {
261
  $ThumbUrl = $RPGP_SinglePhotoDetails['rpggallery_admin_thumb'];
 
262
  $j++;
263
  ?>
264
- <img class="sp-thumbnail" src="<?php echo esc_url($ThumbUrl); ?>"/>
265
  <?php } ?>
266
  </div>
267
  <?php } ?>
25
  $j = 1;
26
  ?>
27
  <script type="text/javascript">
28
+ jQuery(window).load(function() {
29
+ // will first fade out the loading animation
30
+ jQuery("#preloader_status_uris").fadeOut();
31
+ // will fade out the whole DIV that covers the website.
32
+ jQuery("#preloader_uris").delay(1000).fadeOut("slow");
33
+ })
34
+
35
  jQuery( document ).ready(function( jQuery ) {
36
  jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
37
  //width
212
  display: none;
213
  }
214
  }
215
+
216
+ #preloader_uris {
217
+ position: absolute;
218
+ top: 0;
219
+ left: 0;
220
+ right: 0;
221
+ bottom: 0;
222
+ background-color: #fefefe;
223
+ z-index: 99;
224
+ height: 100%;
225
+ }
226
+
227
+ #preloader_status_uris {
228
+ width: 200px;
229
+ height: 200px;
230
+ position: absolute;
231
+ left: 50%;
232
+ top: 50%;
233
+ background-repeat: no-repeat;
234
+ background-position: center;
235
+ margin: -100px 0 0 -100px;
236
+ }
237
  /* Custom CSS */
238
  <?php echo $WRIS_L3_Custom_CSS; ?>
239
  </style>
240
+ <div id="preloader_uris">
241
+ <div id="preloader_status_uris">
242
+ <img src="<?php echo WRIS_PLUGIN_URL.'/img/loading.gif'; ?>" />
243
+ </div>
244
+ </div>
245
+
246
  <?php if($WRIS_L3_Slide_Title == 1) { ?>
247
  <h3 class="uris-slider-title"><?php echo get_the_title( $post_id ); ?> </h3>
248
  <?php } ?>
294
  <?php
295
  foreach($RPGP_AllPhotosDetails as $RPGP_SinglePhotoDetails) {
296
  $ThumbUrl = $RPGP_SinglePhotoDetails['rpggallery_admin_thumb'];
297
+ $Title = $RPGP_SinglePhotoDetails['rpgp_image_label'];
298
  $j++;
299
  ?>
300
+ <img class="sp-thumbnail" src="<?php echo esc_url($ThumbUrl); ?> " alt="<?php echo esc_url($Title); ?>"/>
301
  <?php } ?>
302
  </div>
303
  <?php } ?>