Ultimate Responsive Image Slider Plugin - Version 3.3.0

Version Description

Download this release

Release Info

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

Code changes from version 3.2.15 to 3.3.0

css/ris-meta.css CHANGED
@@ -268,4 +268,25 @@ input[type=range].uris-slider {
268
  border-radius: 50%;
269
  background: #000000;
270
  cursor: pointer;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  }
268
  border-radius: 50%;
269
  background: #000000;
270
  cursor: pointer;
271
+ }
272
+
273
+ #wpfrank-action-metabox {
274
+ font-family: 'Roboto', 'Helvetica', sans-serif;
275
+ }
276
+
277
+ #wpfrank-action-metabox h3 {
278
+ line-height: 1.4;
279
+ font-weight: 600;
280
+ font-size: 18px;
281
+ margin-bottom: 5px;
282
+ }
283
+
284
+ #wpfrank-action-metabox p {
285
+ font-weight: 600;
286
+ font-size: 14px;
287
+ }
288
+
289
+ #wpfrank-action-metabox a {
290
+ display: inline-block !important;
291
+ margin-bottom: 5px !important;
292
  }
img/{ultimate.png → ultimate.PNG} RENAMED
File without changes
products.php CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) || die;
4
 
5
  class WPFURIS_Product_Menu {
6
  public static function create_menu() {
7
- $products = add_submenu_page( 'edit.php?post_type=ris_gallery', 'Premium Products', 'Premium Products', 'manage_options', 'wpfuris_products', array( 'WPFURIS_Product_Menu', 'products' ) );
8
  add_action( 'admin_print_styles-' . $products, array( 'WPFURIS_Product_Menu', 'products_assets' ) );
9
  }
10
 
4
 
5
  class WPFURIS_Product_Menu {
6
  public static function create_menu() {
7
+ $products = add_submenu_page( 'edit.php?post_type=ris_gallery', 'Upgrade To Pro', 'Upgrade To Pro', 'manage_options', 'wpfuris_products', array( 'WPFURIS_Product_Menu', 'products' ) );
8
  add_action( 'admin_print_styles-' . $products, array( 'WPFURIS_Product_Menu', 'products_assets' ) );
9
  }
10
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Ultimate Responsive Image Slider Plugin ===
2
  Contributors: FARAZFRANK
3
- 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: 5.0.2
7
- Stable tag: 3.2.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -127,6 +127,12 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
127
  == Changelog ==
128
  For more information, see [WP Frank](https://wpfrank.com/)
129
 
 
 
 
 
 
 
130
  = V 3.2.15 =
131
  * SEO Improvement
132
  * Updated Pro Banner
1
  === Ultimate Responsive Image Slider Plugin ===
2
  Contributors: FARAZFRANK
3
+ 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.8
6
+ Tested up to: 5.1
7
+ Stable tag: 3.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
127
  == Changelog ==
128
  For more information, see [WP Frank](https://wpfrank.com/)
129
 
130
+ = V 3.3.0 =
131
+ * Tested upto wp 5.1
132
+
133
+ = V 3.2.16 =
134
+ * Fixed issue when jQuery is loaded in footer
135
+
136
  = V 3.2.15 =
137
  * SEO Improvement
138
  * Updated Pro Banner
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.15
7
  Author: WP Frank
8
  Author URI: https://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
@@ -74,7 +74,7 @@ add_image_size( 'rpggallery_admin_large', 500,9999 );
74
 
75
  // Add settings link on plugin page
76
  function ris_links($links) {
77
- $ris_pro_link = '<a href="http://wpfrank.com/" target="_blank">WP Frank</a>';
78
  array_unshift($links, $ris_pro_link);
79
  $ris_settings_link = '<a href="edit.php?post_type=ris_gallery">Settings</a>';
80
  array_unshift($links, $ris_settings_link);
@@ -205,7 +205,7 @@ class URIS {
205
  add_meta_box( __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), array(&$this, 'ris_settings_meta_box_function'), 'ris_gallery', 'normal', 'low');
206
  add_meta_box ( __('Copy Slider Shortcode', URIS_TD), __('Copy Slider Shortcode', URIS_TD), array(&$this, 'ris_shotcode_meta_box_function'), 'ris_gallery', 'side', 'low');
207
  add_meta_box('Show US Some Love & Rate Us', 'Show US Some Love & Rate Us', array(&$this, 'uris_Rate_us_meta_box_function'), 'ris_gallery', 'side', 'low');
208
- add_meta_box( __('Upgrade To Pro Plugin', URIS_TD), __('Upgrade To Pro Plugin', URIS_TD), array(&$this, 'ris_upgrade_to_pro_meta_box_function'), 'ris_gallery', 'advanced', 'low');
209
  }
210
 
211
  //Rate Us Meta Box
@@ -254,11 +254,12 @@ class URIS {
254
  * Upgrade To Meta Box
255
  */
256
  public function ris_upgrade_to_pro_meta_box_function() { ?>
257
- <div class="welcome-panel-column">
258
  <h3>Unlock More Features in Ultimate Responsive Image Slider Pro</h3>
259
- <p><strong>5 Design Layouts, Transition Effect, Color Customizations, 500+ Google Fonts For Slide Title & Description, Slides Ordering, Link On Slides, 2 Light Box Style, Various Slider Control Settings</strong></p>
260
- <a class="button button-primary button-hero load-customize hide-if-no-customize" target="_blank" href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/">Check Pro Plugin Demo</a>
261
- <a class="button button-primary button-hero load-customize hide-if-no-customize" target="_blank" href="https://wpfrank.com/account/signup/ultimate-responsive-image-slider-pro">Buy Pro Plugin $21</a>
 
262
  </div>
263
  <?php
264
  }
@@ -569,14 +570,14 @@ global $URIS;
569
  $URIS = URIS::forge();
570
 
571
  // Review Notice Box
572
- add_action( "admin_notices", "uris_admin_notice_resport" );
573
- function uris_admin_notice_resport() {
574
- global $pagenow;
575
- $uris_screen = get_current_screen();
576
- if ( $pagenow == 'edit.php' && $uris_screen->post_type == "ris_gallery" && ! isset( $_GET['page'] ) ) {
577
- require_once ( 'uris-feature-admin-notice.php' );
578
- }
579
- }
580
 
581
  /**
582
  * upgrade to pro
@@ -594,5 +595,6 @@ function uris_pro_SettingsPage() {
594
  * URIS Short Code
595
  */
596
  require_once("ultimate-responsive-image-slider-short-code.php");
 
597
  require_once( 'products.php' );
598
  ?>
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.3.0
7
  Author: WP Frank
8
  Author URI: https://wpfrank.com/
9
  Text Domain: ultimate-responsive-image-slider
74
 
75
  // Add settings link on plugin page
76
  function ris_links($links) {
77
+ $ris_pro_link = '<a href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/" target="_blank">Try Pro</a>';
78
  array_unshift($links, $ris_pro_link);
79
  $ris_settings_link = '<a href="edit.php?post_type=ris_gallery">Settings</a>';
80
  array_unshift($links, $ris_settings_link);
205
  add_meta_box( __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), array(&$this, 'ris_settings_meta_box_function'), 'ris_gallery', 'normal', 'low');
206
  add_meta_box ( __('Copy Slider Shortcode', URIS_TD), __('Copy Slider Shortcode', URIS_TD), array(&$this, 'ris_shotcode_meta_box_function'), 'ris_gallery', 'side', 'low');
207
  add_meta_box('Show US Some Love & Rate Us', 'Show US Some Love & Rate Us', array(&$this, 'uris_Rate_us_meta_box_function'), 'ris_gallery', 'side', 'low');
208
+ add_meta_box( __('Upgrade To Pro Plugin', URIS_TD), __('Upgrade To Pro Plugin', URIS_TD), array(&$this, 'ris_upgrade_to_pro_meta_box_function'), 'ris_gallery', 'side', 'low');
209
  }
210
 
211
  //Rate Us Meta Box
254
  * Upgrade To Meta Box
255
  */
256
  public function ris_upgrade_to_pro_meta_box_function() { ?>
257
+ <div class="welcome-panel-column" id="wpfrank-action-metabox">
258
  <h3>Unlock More Features in Ultimate Responsive Image Slider Pro</h3>
259
+ <p>5 Design Layouts, Transition Effect, Color Customizations, 500+ Google Fonts For Slide Title & Description, Slides Ordering, Link On Slides, 2 Light Box Style, Various Slider Control Settings</p>
260
+ <a class="button button-primary button-hero load-customize hide-if-no-customize wpfrank-action-button" target="_blank" href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/">Check Pro Plugin Demo</a>
261
+ <a class="button button-primary button-hero load-customize hide-if-no-customize wpfrank-action-button" target="_blank" href="https://wpfrank.com/account/signup/ultimate-responsive-image-slider-pro">Buy Pro Plugin $21</a>
262
+ <a class="button button-primary button-hero load-customize hide-if-no-customize wpfrank-action-button" target="_blank" href="https://wpfrank.com/demo/">Our Premium Products</a>
263
  </div>
264
  <?php
265
  }
570
  $URIS = URIS::forge();
571
 
572
  // Review Notice Box
573
+ // add_action( "admin_notices", "uris_admin_notice_resport" );
574
+ // function uris_admin_notice_resport() {
575
+ // global $pagenow;
576
+ // $uris_screen = get_current_screen();
577
+ // if ( $pagenow == 'edit.php' && $uris_screen->post_type == "ris_gallery" && ! isset( $_GET['page'] ) ) {
578
+ // require_once ( 'uris-feature-admin-notice.php' );
579
+ // }
580
+ // }
581
 
582
  /**
583
  * upgrade to pro
595
  * URIS Short Code
596
  */
597
  require_once("ultimate-responsive-image-slider-short-code.php");
598
+
599
  require_once( 'products.php' );
600
  ?>
uris-layout.php CHANGED
@@ -25,7 +25,7 @@ $i = 1;
25
  $j = 1;
26
  ?>
27
  <script type="text/javascript">
28
- jQuery( document ).ready(function() {
29
  jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
30
  //width
31
  <?php if($WRIS_L3_Width == "100%") { ?>
25
  $j = 1;
26
  ?>
27
  <script type="text/javascript">
28
+ document.addEventListener("DOMContentLoaded", function(event) {
29
  jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
30
  //width
31
  <?php if($WRIS_L3_Width == "100%") { ?>