Version Description
- Post title error notice fixed
- Latest WordPress version 5.9.1 compatibility checked
Download this release
Release Info
Developer | FARAZFRANK |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.5.5 |
Comparing to | |
See all releases |
Code changes from version 3.5.4 to 3.5.5
- layout.php +7 -3
- readme.txt +6 -2
- ultimate-responsive-image-slider.php +2 -2
layout.php
CHANGED
@@ -214,13 +214,16 @@ document.addEventListener("DOMContentLoaded", function(event) {
|
|
214 |
/* Custom CSS */
|
215 |
<?php echo esc_html($WRIS_L3_Custom_CSS); ?>
|
216 |
</style>
|
217 |
-
<?php
|
|
|
|
|
218 |
<h3 class="uris-slider-post-title"><?php echo $post_title = get_the_title( $post_id ); ?></h3>
|
219 |
<?php } if($TotalSlideIds>0){ ?>
|
220 |
<div id="slider-pro-3-<?php echo esc_attr($post_id); ?>" class="slider-pro">
|
221 |
<!---- slides div start ---->
|
222 |
<div class="sp-slides">
|
223 |
-
<?php
|
|
|
224 |
if(is_array($URIS_All_Slide_Ids)){
|
225 |
foreach($URIS_All_Slide_Ids as $URIS_Slide_Id) {
|
226 |
$slide_id = $URIS_Slide_Id['rpgp_image_id'];
|
@@ -271,7 +274,8 @@ document.addEventListener("DOMContentLoaded", function(event) {
|
|
271 |
<?php if($WRIS_L3_Slider_Navigation == 1) { ?>
|
272 |
<!-- slides thumbnails div start -->
|
273 |
<div class="sp-thumbnails">
|
274 |
-
<?php
|
|
|
275 |
if(is_array($URIS_All_Slide_Ids)){
|
276 |
foreach($URIS_All_Slide_Ids as $URIS_Slide_Id) {
|
277 |
$slide_id = $URIS_Slide_Id['rpgp_image_id'];
|
214 |
/* Custom CSS */
|
215 |
<?php echo esc_html($WRIS_L3_Custom_CSS); ?>
|
216 |
</style>
|
217 |
+
<?php
|
218 |
+
$post_title = "";
|
219 |
+
if($WRIS_L3_Slide_Title) { ?>
|
220 |
<h3 class="uris-slider-post-title"><?php echo $post_title = get_the_title( $post_id ); ?></h3>
|
221 |
<?php } if($TotalSlideIds>0){ ?>
|
222 |
<div id="slider-pro-3-<?php echo esc_attr($post_id); ?>" class="slider-pro">
|
223 |
<!---- slides div start ---->
|
224 |
<div class="sp-slides">
|
225 |
+
<?php
|
226 |
+
$slide_alt = "";
|
227 |
if(is_array($URIS_All_Slide_Ids)){
|
228 |
foreach($URIS_All_Slide_Ids as $URIS_Slide_Id) {
|
229 |
$slide_id = $URIS_Slide_Id['rpgp_image_id'];
|
274 |
<?php if($WRIS_L3_Slider_Navigation == 1) { ?>
|
275 |
<!-- slides thumbnails div start -->
|
276 |
<div class="sp-thumbnails">
|
277 |
+
<?php
|
278 |
+
$slide_alt = "";
|
279 |
if(is_array($URIS_All_Slide_Ids)){
|
280 |
foreach($URIS_All_Slide_Ids as $URIS_Slide_Id) {
|
281 |
$slide_id = $URIS_Slide_Id['rpgp_image_id'];
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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: 4.0
|
6 |
-
Tested up to: 5.9
|
7 |
-
Stable tag: 3.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -166,6 +166,10 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
166 |
|
167 |
== Changelog ==
|
168 |
|
|
|
|
|
|
|
|
|
169 |
= 3.5.4 =
|
170 |
* Cross-Site Scripting (XSS) Vulnerabilities issue fixed
|
171 |
|
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: 4.0
|
6 |
+
Tested up to: 5.9.1
|
7 |
+
Stable tag: 3.5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
166 |
|
167 |
== Changelog ==
|
168 |
|
169 |
+
= 3.5.5 =
|
170 |
+
* Post title error notice fixed
|
171 |
+
* Latest WordPress version 5.9.1 compatibility checked
|
172 |
+
|
173 |
= 3.5.4 =
|
174 |
* Cross-Site Scripting (XSS) Vulnerabilities issue fixed
|
175 |
|
ultimate-responsive-image-slider.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
|
4 |
/*
|
5 |
-
Plugin Name: Ultimate Responsive Image Slider - 3.5.
|
6 |
Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
|
7 |
Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
8 |
-
Version: 3.5.
|
9 |
Author: FARAZFRANK
|
10 |
Author URI: http://wpfrank.com/
|
11 |
Text Domain: ultimate-responsive-image-slider
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
|
4 |
/*
|
5 |
+
Plugin Name: Ultimate Responsive Image Slider - 3.5.5
|
6 |
Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
|
7 |
Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
8 |
+
Version: 3.5.5
|
9 |
Author: FARAZFRANK
|
10 |
Author URI: http://wpfrank.com/
|
11 |
Text Domain: ultimate-responsive-image-slider
|