Version Description
Download this release
Release Info
Developer | weblizar |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.1.8 |
Comparing to | |
See all releases |
Code changes from version 3.1.7 to 3.1.8
- readme.txt +2 -1
- ultimate-responsive-image-slider.php +10 -16
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://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.9.6
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -195,6 +195,7 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
195 |
|
196 |
For more information, see Weblizar(https://weblizar.com/)
|
197 |
|
|
|
198 |
= V 3.1.7
|
199 |
- Add Back to top link at setting page
|
200 |
- Add banner at setting page (As a dissmiss)
|
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.6
|
7 |
+
Stable tag: 3.1.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
195 |
|
196 |
For more information, see Weblizar(https://weblizar.com/)
|
197 |
|
198 |
+
= V 3.1.8 - minor bug fix
|
199 |
= V 3.1.7
|
200 |
- Add Back to top link at setting page
|
201 |
- Add banner at setting page (As a dissmiss)
|
ultimate-responsive-image-slider.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
-
* Version: 3.1.
|
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/
|
@@ -163,8 +163,7 @@ class WRIS {
|
|
163 |
// add new slide function
|
164 |
add_action('wp_ajax_uris_get_thumbnail', array(&$this, 'ajax_get_thumbnail_uris'));
|
165 |
|
166 |
-
add_shortcode('rpggallery', array(&$this, 'shortcode'));
|
167 |
-
|
168 |
}
|
169 |
|
170 |
/**
|
@@ -223,7 +222,6 @@ class WRIS {
|
|
223 |
'rewrite' => false,
|
224 |
'capability_type' => 'post'
|
225 |
);
|
226 |
-
|
227 |
|
228 |
register_post_type( 'ris_gallery', $args );
|
229 |
add_filter( 'manage_edit-ris_gallery_columns', array(&$this, 'ris_gallery_columns' )) ;
|
@@ -277,8 +275,7 @@ class WRIS {
|
|
277 |
<a class="upgrade-to-pro-demo fag-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/plugins/ultimate-responsive-image-slider/#reviews" target="_blank">
|
278 |
<?php for($star=1;$star<=5;$star++){ ?>
|
279 |
<span class="dashicons dashicons-star-filled"></span>
|
280 |
-
<?php } ?>
|
281 |
-
|
282 |
</a>
|
283 |
</div>
|
284 |
<div class="upgrade-to-pro" style="text-align:center;margin-bottom:10px;margin-top:10px;">
|
@@ -302,13 +299,13 @@ class WRIS {
|
|
302 |
public function uris_pro_features(){ ?>
|
303 |
<ul style="">
|
304 |
<?php
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
</ul>
|
311 |
-
|
312 |
}
|
313 |
|
314 |
/**
|
@@ -427,9 +424,7 @@ class WRIS {
|
|
427 |
}
|
428 |
</script>
|
429 |
<?php
|
430 |
-
}
|
431 |
-
|
432 |
-
|
433 |
|
434 |
// Alert Message For Review
|
435 |
/*public function review_admin_notice_ris(){
|
@@ -659,7 +654,6 @@ function uris_pro_SettingsPage() {
|
|
659 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Help and Support', 'Help and Support', 'administrator', 'RIS-Help-page', 'RIS_Help_and_Support_page');
|
660 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Our Products', 'Our Products', 'administrator', 'RIS-Our-Products', 'uris_our_products_function');
|
661 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Recommendation', 'Recommendation', 'administrator', 'RIS-Recommendation', 'uris_recommendation_function');
|
662 |
-
|
663 |
}
|
664 |
/**
|
665 |
* Weblizar RIS Short Code [URIS]
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
+
* Version: 3.1.8
|
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/
|
163 |
// add new slide function
|
164 |
add_action('wp_ajax_uris_get_thumbnail', array(&$this, 'ajax_get_thumbnail_uris'));
|
165 |
|
166 |
+
add_shortcode('rpggallery', array(&$this, 'shortcode'));
|
|
|
167 |
}
|
168 |
|
169 |
/**
|
222 |
'rewrite' => false,
|
223 |
'capability_type' => 'post'
|
224 |
);
|
|
|
225 |
|
226 |
register_post_type( 'ris_gallery', $args );
|
227 |
add_filter( 'manage_edit-ris_gallery_columns', array(&$this, 'ris_gallery_columns' )) ;
|
275 |
<a class="upgrade-to-pro-demo fag-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/plugins/ultimate-responsive-image-slider/#reviews" target="_blank">
|
276 |
<?php for($star=1;$star<=5;$star++){ ?>
|
277 |
<span class="dashicons dashicons-star-filled"></span>
|
278 |
+
<?php } ?>
|
|
|
279 |
</a>
|
280 |
</div>
|
281 |
<div class="upgrade-to-pro" style="text-align:center;margin-bottom:10px;margin-top:10px;">
|
299 |
public function uris_pro_features(){ ?>
|
300 |
<ul style="">
|
301 |
<?php
|
302 |
+
$features = array("Responsive Design", "5 Slider Layout", "Unlimited Color Scheme", "Full Screen slideshow","Thumbnail Slider","Lightbox Integrated","External Link Button","Carousel Slider","All Gallery Shortcode","Each Gallery has Unique Shortcode","Drag and Drop image Position","Multiple Image uploader","Shortcode Button on post or page","Unique settings for each gallery","Auto Play Pause","All Browser Compatible");
|
303 |
+
foreach($features as $feature) {
|
304 |
+
echo "<li class='plan-feature'>$feature</li>";
|
305 |
+
}
|
306 |
+
?>
|
307 |
</ul>
|
308 |
+
<?php
|
309 |
}
|
310 |
|
311 |
/**
|
424 |
}
|
425 |
</script>
|
426 |
<?php
|
427 |
+
}
|
|
|
|
|
428 |
|
429 |
// Alert Message For Review
|
430 |
/*public function review_admin_notice_ris(){
|
654 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Help and Support', 'Help and Support', 'administrator', 'RIS-Help-page', 'RIS_Help_and_Support_page');
|
655 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Our Products', 'Our Products', 'administrator', 'RIS-Our-Products', 'uris_our_products_function');
|
656 |
add_submenu_page('edit.php?post_type=ris_gallery', 'Recommendation', 'Recommendation', 'administrator', 'RIS-Recommendation', 'uris_recommendation_function');
|
|
|
657 |
}
|
658 |
/**
|
659 |
* Weblizar RIS Short Code [URIS]
|