Version Description
Changed: Add font-family without saving whole slider.
Download this release
Release Info
Developer | webdorado |
Plugin | Slider by WD – Responsive Slider |
Version | 1.1.30 |
Comparing to | |
See all releases |
Code changes from version 1.1.29 to 1.1.30
- admin/views/WDSViewSliders_wds.php +1 -0
- readme.txt +4 -1
- slider-wd.php +2 -2
admin/views/WDSViewSliders_wds.php
CHANGED
@@ -913,6 +913,7 @@ class WDSViewSliders_wds {
|
|
913 |
<input type="hidden" id="possib_add_ffamily" name="possib_add_ffamily" value="<?php echo $row->possib_add_ffamily; ?>" />
|
914 |
<input type="hidden" id="possib_add_ffamily_google" name="possib_add_ffamily_google" value="<?php echo $row->possib_add_ffamily_google; ?>" />
|
915 |
<input id="possib_add_google_fonts" type="checkbox" name="possib_add_google_fonts" <?php echo (($row->possib_add_google_fonts) ? 'checked="checked"' : ''); ?> value="1" /><label for="possib_add_google_fonts">Add to Google fonts</label>
|
|
|
916 |
<div class="spider_description">The added font family will appear in the drop-down list of fonts.</div>
|
917 |
</td>
|
918 |
</tr>
|
913 |
<input type="hidden" id="possib_add_ffamily" name="possib_add_ffamily" value="<?php echo $row->possib_add_ffamily; ?>" />
|
914 |
<input type="hidden" id="possib_add_ffamily_google" name="possib_add_ffamily_google" value="<?php echo $row->possib_add_ffamily_google; ?>" />
|
915 |
<input id="possib_add_google_fonts" type="checkbox" name="possib_add_google_fonts" <?php echo (($row->possib_add_google_fonts) ? 'checked="checked"' : ''); ?> value="1" /><label for="possib_add_google_fonts">Add to Google fonts</label>
|
916 |
+
<input id="add_font_family" class="button-primary" type="button" onclick="spider_ajax_save('sliders_form', event); return false;" value="Add font-family" />
|
917 |
<div class="spider_description">The added font family will appear in the drop-down list of fonts.</div>
|
918 |
</td>
|
919 |
</tr>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-slider-plugin.html
|
|
4 |
Tags: image slider, slider, slideshow, image, images, responsive, shortcode, widget, jquery, gallery, swipe, layer
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -160,6 +160,9 @@ After downloading the ZIP file of the slider plugin,
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
163 |
= 1.1.29 =
|
164 |
* Added: Text, image, hotspot layers click actions.
|
165 |
|
4 |
Tags: image slider, slider, slideshow, image, images, responsive, shortcode, widget, jquery, gallery, swipe, layer
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.1.30
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
160 |
|
161 |
== Changelog ==
|
162 |
|
163 |
+
= 1.1.30 =
|
164 |
+
Changed: Add font-family without saving whole slider.
|
165 |
+
|
166 |
= 1.1.29 =
|
167 |
* Added: Text, image, hotspot layers click actions.
|
168 |
|
slider-wd.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Slider WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
-
* Version: 1.1.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -435,7 +435,7 @@ register_activation_hook(__FILE__, 'wds_activate');
|
|
435 |
|
436 |
function wds_install() {
|
437 |
$version = get_option("wds_version");
|
438 |
-
$new_version = '1.1.
|
439 |
if ($version && version_compare($version, $new_version, '<')) {
|
440 |
require_once WD_S_DIR . "/sliders-update.php";
|
441 |
wds_update($version);
|
4 |
* Plugin Name: Slider WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
+
* Version: 1.1.30
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
435 |
|
436 |
function wds_install() {
|
437 |
$version = get_option("wds_version");
|
438 |
+
$new_version = '1.1.30';
|
439 |
if ($version && version_compare($version, $new_version, '<')) {
|
440 |
require_once WD_S_DIR . "/sliders-update.php";
|
441 |
wds_update($version);
|