Version Description
Download this release
Release Info
Developer | weblizar |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 2.9.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.9.4 to 2.9.4.1
- readme.txt +6 -2
- ultimate-responsive-image-slider.php +1 -1
- uris-layout.php +2 -2
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, slider shortcode, slider widget, responsive image slider, theme slider, post slider, page slider, free slider plguin
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.4.
|
7 |
-
Stable tag: 2.9.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -138,6 +138,10 @@ If you have any question contact us at here: [Plugin Support Forum ](http://word
|
|
138 |
== Changelog ==
|
139 |
|
140 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
|
|
|
|
|
|
|
|
141 |
= Version 2.9.4 02-Feb-2016 =
|
142 |
* Removal of Non-required section of codes.
|
143 |
|
3 |
Donate link: http://www.weblizar.com/
|
4 |
Tags: slider, slider plugin, best slider plugin, image slide show, responsive slider, image slider, slider shortcode, slider widget, responsive image slider, theme slider, post slider, page slider, free slider plguin
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.4.2
|
7 |
+
Stable tag: 2.9.4.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
138 |
== Changelog ==
|
139 |
|
140 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
141 |
+
|
142 |
+
= Version 2.9.4.1 06-Feb-2016 =
|
143 |
+
* HTML tag display fixed
|
144 |
+
|
145 |
= Version 2.9.4 02-Feb-2016 =
|
146 |
* Removal of Non-required section of codes.
|
147 |
|
ultimate-responsive-image-slider.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
-
* Version: 2.9.4
|
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: 2.9.4.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/
|
uris-layout.php
CHANGED
@@ -228,7 +228,7 @@ $j = 1;
|
|
228 |
data-position="centerCenter"
|
229 |
data-vertical="-14%"
|
230 |
data-show-transition="left" data-show-delay="500">
|
231 |
-
<?php if(strlen($Title) > 100 ) echo substr($Title,0,100); else echo
|
232 |
</p>
|
233 |
<?php } ?>
|
234 |
|
@@ -237,7 +237,7 @@ $j = 1;
|
|
237 |
data-position="centerCenter"
|
238 |
data-vertical="14%"
|
239 |
data-show-transition="right" data-show-delay="500">
|
240 |
-
<?php if(strlen($Desc) > 300 ) echo substr($Desc,0,300)."..."; else echo
|
241 |
</p>
|
242 |
<?php } ?>
|
243 |
</div>
|
228 |
data-position="centerCenter"
|
229 |
data-vertical="-14%"
|
230 |
data-show-transition="left" data-show-delay="500">
|
231 |
+
<?php if(strlen(esc_html($Title)) > 100 ) echo substr(esc_html($Title),0,100); else echo esc_html( $Title ); ?>
|
232 |
</p>
|
233 |
<?php } ?>
|
234 |
|
237 |
data-position="centerCenter"
|
238 |
data-vertical="14%"
|
239 |
data-show-transition="right" data-show-delay="500">
|
240 |
+
<?php if(strlen(esc_html($Desc)) > 300 ) echo substr(esc_html($Desc),0,300)."..."; else echo esc_html($Desc); ?>
|
241 |
</p>
|
242 |
<?php } ?>
|
243 |
</div>
|