Version Description
- Custom image cropping removed
- Recover Old sliders page, Important Notice section "wrong plugin version 3.1.9 and 3.1.0" updated to "correct plugin version 3.3.9 and 3.3.10"
Download this release
Release Info
Developer | FARAZFRANK |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.4.2 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.4.2
- readme.txt +5 -1
- recover-slider.php +2 -2
- ultimate-responsive-image-slider.php +2 -6
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.0
|
6 |
Tested up to: 5.3.2
|
7 |
-
Stable tag: 3.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -157,6 +157,10 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
|
|
160 |
= 3.4.1 =
|
161 |
* Old slider recovery option added
|
162 |
* Dashboard count error fixed by recommit
|
4 |
Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 3.4.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
157 |
|
158 |
== Changelog ==
|
159 |
|
160 |
+
= 3.4.2 =
|
161 |
+
* Custom image cropping removed
|
162 |
+
* Recover Old sliders page, Important Notice section "wrong plugin version 3.1.9 and 3.1.0" updated to "correct plugin version 3.3.9 and 3.3.10"
|
163 |
+
|
164 |
= 3.4.1 =
|
165 |
* Old slider recovery option added
|
166 |
* Dashboard count error fixed by recommit
|
recover-slider.php
CHANGED
@@ -129,8 +129,8 @@ if(isset($_POST['slider-id'])) {
|
|
129 |
echo "<div style='text-align:left;padding-top:10px;'>";
|
130 |
echo "<h3 style='color:blue;'>Important Notes</h3><hr />";
|
131 |
echo "<p>1. <strong>Reupdate:</strong> Once you updated a Slider ID, don't re-update, It will break the slider or show errors.</p>";
|
132 |
-
echo "<p>2. <strong>Recoverable:</strong> Slider created in older versions of the plugin can be recoverable. Like Slider created in Version 3.
|
133 |
-
echo "<p>3. <strong>Non Recoverable:</strong> Slider created after major update version 3.
|
134 |
echo "<p>4. <strong>Non Recoverable:</strong> If you already updated slider by hitting update post button in latest plugin version. <a href='http://prntscr.com/qikp8q' target='_blank'>http://prntscr.com/qikp8q</a></p>";
|
135 |
echo "</div>";
|
136 |
?>
|
129 |
echo "<div style='text-align:left;padding-top:10px;'>";
|
130 |
echo "<h3 style='color:blue;'>Important Notes</h3><hr />";
|
131 |
echo "<p>1. <strong>Reupdate:</strong> Once you updated a Slider ID, don't re-update, It will break the slider or show errors.</p>";
|
132 |
+
echo "<p>2. <strong>Recoverable:</strong> Slider created in older versions of the plugin can be recoverable. Like Slider created in Version 3.3.9 or later.</p>";
|
133 |
+
echo "<p>3. <strong>Non Recoverable:</strong> Slider created after major update version 3.3.10 of the plugin can't be recoverable. Like Slider created in Version 3.3.10 or latest.</p>";
|
134 |
echo "<p>4. <strong>Non Recoverable:</strong> If you already updated slider by hitting update post button in latest plugin version. <a href='http://prntscr.com/qikp8q' target='_blank'>http://prntscr.com/qikp8q</a></p>";
|
135 |
echo "</div>";
|
136 |
?>
|
ultimate-responsive-image-slider.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Ultimate Responsive Image Slider - 3.4.
|
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.4.
|
7 |
Author: FARAZFRANK
|
8 |
Author URI: http://wpfrank.com/
|
9 |
Text Domain: ultimate-responsive-image-slider
|
@@ -68,10 +68,6 @@ function WRIS_DefaultSettingsPro() {
|
|
68 |
add_option("WRIS_Settings", $DefaultSettingsProArray);
|
69 |
}
|
70 |
|
71 |
-
// Image Crop Size Function
|
72 |
-
add_image_size( 'rpggallery_admin_thumb', 300, 300, true );
|
73 |
-
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/demo/ultimate-responsive-image-slider-pro/" target="_blank">Try Pro</a>';
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Ultimate Responsive Image Slider - 3.4.2
|
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.4.2
|
7 |
Author: FARAZFRANK
|
8 |
Author URI: http://wpfrank.com/
|
9 |
Text Domain: ultimate-responsive-image-slider
|
68 |
add_option("WRIS_Settings", $DefaultSettingsProArray);
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
71 |
// Add settings link on plugin page
|
72 |
function ris_links($links) {
|
73 |
$ris_pro_link = '<a href="http://wpfrank.com/demo/ultimate-responsive-image-slider-pro/" target="_blank">Try Pro</a>';
|