Version Description
Download this release
Release Info
Developer | weblizar |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.0.9 |
Comparing to | |
See all releases |
Code changes from version 3.0.8 to 3.0.9
- readme.txt +2 -1
- ultimate-responsive-image-slider.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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.8.2
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -154,6 +154,7 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
154 |
|
155 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
156 |
|
|
|
157 |
V 3.0.8 - Rich text editor added for making description text more useful and attractive
|
158 |
V 3.0.7 - version update + compatible upto wp 4.8.2
|
159 |
V 3.0.6 - Pre loader added
|
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.8.2
|
7 |
+
Stable tag: 3.0.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
154 |
|
155 |
For more information, see Weblizar(http://wwww.weblizar.com/).
|
156 |
|
157 |
+
V 3.0.9 - Rich text editor button size fix
|
158 |
V 3.0.8 - Rich text editor added for making description text more useful and attractive
|
159 |
V 3.0.7 - version update + compatible upto wp 4.8.2
|
160 |
V 3.0.6 - Pre loader added
|
ultimate-responsive-image-slider.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
-
* Version: 3.0.
|
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/
|
@@ -369,7 +369,7 @@ class WRIS {
|
|
369 |
<p>
|
370 |
<label><?php _e('Slide Descriptions', WRIS_TEXT_DOMAIN); ?></label>
|
371 |
<textarea rows="4" cols="50" id="rpgp_image_desc[]" name="rpgp_image_desc[]" placeholder="<?php _e('Enter Slide Description', WRIS_TEXT_DOMAIN); ?>" class=" urisp_richeditbox_<?php echo $i; ?> rpg_label_text"><?php echo htmlentities( $desc ); ?></textarea>
|
372 |
-
<button
|
373 |
</p>
|
374 |
</div>
|
375 |
</li>
|
@@ -499,7 +499,7 @@ class WRIS {
|
|
499 |
<p>
|
500 |
<label><?php _e('Slide Description', WRIS_TEXT_DOMAIN); ?></label>
|
501 |
<textarea rows="4" cols="50" id="rpgp_image_desc[]" name="rpgp_image_desc[]" placeholder="<?php _e('Enter Slide Description Here', WRIS_TEXT_DOMAIN); ?>" class="urisp_richeditbox_<?php echo $id; ?> rpg_label_text"></textarea>
|
502 |
-
<button
|
503 |
</p>
|
504 |
</div>
|
505 |
</li>
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Ultimate Responsive Image Slider
|
4 |
+
* Version: 3.0.9
|
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/
|
369 |
<p>
|
370 |
<label><?php _e('Slide Descriptions', WRIS_TEXT_DOMAIN); ?></label>
|
371 |
<textarea rows="4" cols="50" id="rpgp_image_desc[]" name="rpgp_image_desc[]" placeholder="<?php _e('Enter Slide Description', WRIS_TEXT_DOMAIN); ?>" class=" urisp_richeditbox_<?php echo $i; ?> rpg_label_text"><?php echo htmlentities( $desc ); ?></textarea>
|
372 |
+
<button type="button" class="btn btn-md btn-info btn-block" data-toggle="modal" data-target="#myModal" onclick="urisp_richeditor(<?php echo $i; ?>)"><?php _e('Use Rich Text Editor', WRIS_TEXT_DOMAIN); ?> <i class="fa fa-edit"></i></button>
|
373 |
</p>
|
374 |
</div>
|
375 |
</li>
|
499 |
<p>
|
500 |
<label><?php _e('Slide Description', WRIS_TEXT_DOMAIN); ?></label>
|
501 |
<textarea rows="4" cols="50" id="rpgp_image_desc[]" name="rpgp_image_desc[]" placeholder="<?php _e('Enter Slide Description Here', WRIS_TEXT_DOMAIN); ?>" class="urisp_richeditbox_<?php echo $id; ?> rpg_label_text"></textarea>
|
502 |
+
<button type="button" class="btn btn-md btn-info btn-block" data-toggle="modal" data-target="#myModal" onclick="urisp_richeditor(<?php echo $id; ?>)"><?php _e('Use Rich Text Editor', WRIS_TEXT_DOMAIN); ?> <i class="fa fa-edit"></i></button>
|
503 |
</p>
|
504 |
</div>
|
505 |
</li>
|