Ultimate Responsive Image Slider Plugin - Version 3.1.0

Version Description

Download this release

Release Info

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

Code changes from version 3.0.10 to 3.1.0

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.weblizar.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.8.3
7
- Stable tag: 3.0.10
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 3.0.9 - Wooocommerce Conflict issue fixed + compatible upto wp 4.8.3
158
  V 3.0.9 - Rich text editor button size fix
159
  V 3.0.8 - Rich text editor added for making description text more useful and attractive
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.8.3
7
+ Stable tag: 3.1.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.1.0 - Multiple Delete Bug Fixed
158
  V 3.0.9 - Wooocommerce Conflict issue fixed + compatible upto wp 4.8.3
159
  V 3.0.9 - Rich text editor button size fix
160
  V 3.0.8 - Rich text editor added for making description text more useful and attractive
ultimate-responsive-image-slider.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
- * Version: 3.0.10
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/
@@ -317,6 +317,7 @@ class WRIS {
317
  */
318
  public function ris_generate_add_image_meta_box_function($post) { ?>
319
  <div id="rpggallery_container">
 
320
  <ul id="rpg_gallery_thumbs" class="clearfix">
321
  <?php
322
  /* load saved photos into ris */
@@ -438,7 +439,7 @@ class WRIS {
438
  if ( $screen->id == 'ris_gallery' ) {
439
  echo '<div class="notice notice-warning is-dismissible review-notice">
440
  <p>Thanks for installing and using Ultimate Responsive Image Slider plugin.
441
- Then please share your feedback about this plugin. Your feedback will be helpful to make plugin more error free. <a href="https://wordpress.org/support/plugin/ultimate-responsive-image-slider/reviews/?filter=5" target="_blank" name="review" id="review" class="button button-primary">Rate Us</a></p>
442
  </div>';
443
  }
444
  }
@@ -513,7 +514,7 @@ class WRIS {
513
  }
514
 
515
  public function add_image_meta_box_save($PostID) {
516
- if(isset($PostID) && isset($_POST['rpgp_image_url'])) {
517
  $TotalImages = count($_POST['rpgp_image_url']);
518
  $ImagesArray = array();
519
  if($TotalImages) {
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
+ * Version: 3.1.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/
317
  */
318
  public function ris_generate_add_image_meta_box_function($post) { ?>
319
  <div id="rpggallery_container">
320
+ <input type="hidden" id="risp_wl_action" name="risp_wl_action" value="wl-save-settings">
321
  <ul id="rpg_gallery_thumbs" class="clearfix">
322
  <?php
323
  /* load saved photos into ris */
439
  if ( $screen->id == 'ris_gallery' ) {
440
  echo '<div class="notice notice-warning is-dismissible review-notice">
441
  <p>Thanks for installing and using Ultimate Responsive Image Slider plugin.
442
+ Then please share your feedback about this plugin. Your feedback will be helpful to make plugin more robust. <a href="https://wordpress.org/support/plugin/ultimate-responsive-image-slider/reviews/?filter=5" target="_blank" name="review" id="review" class="button button-primary">Rate Us</a></p>
443
  </div>';
444
  }
445
  }
514
  }
515
 
516
  public function add_image_meta_box_save($PostID) {
517
+ if(isset($PostID) && isset($_POST['risp_wl_action'])) {
518
  $TotalImages = count($_POST['rpgp_image_url']);
519
  $ImagesArray = array();
520
  if($TotalImages) {