Slider by WD – Responsive Slider - Version 1.2.44

Version Description

  • Fixed: Make it possible to change bullet style in free version.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 Slider by WD – Responsive Slider
Version 1.2.44
Comparing to
See all releases

Code changes from version 1.2.43 to 1.2.44

admin/views/Sliders.php CHANGED
@@ -1492,19 +1492,19 @@ class SlidersView_wds extends AdminView_wds {
1492
  <div class="wd-table-col wd-table-col-50 wd-table-col-right">
1493
  <div class="wd-box-section">
1494
  <div class="wd-box-content">
1495
- <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>" id="bullet_size">
1496
  <label class="wd-label" for="bull_size"><?php _e('Size:', WDS()->prefix); ?></label>
1497
- <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_size" id="bull_size" value="<?php echo $row->bull_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1498
  <p class="description"><?php _e('Set the size of navigation bullets.', WDS()->prefix); ?></p>
1499
  </span>
1500
- <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>">
1501
  <label class="wd-label" for="bull_color"><?php _e('Color:', WDS()->prefix); ?></label>
1502
- <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_color" id="bull_color" value="<?php echo $row->bull_color; ?>" class="color" onchange="jQuery('#wds_deact_bull_style').css({color: '#' + jQuery(this).val()})" />
1503
  <p class="description"><?php _e('Select the color for navigation bullets.', WDS()->prefix); ?></p>
1504
  </span>
1505
- <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>" id="bullets_act_color">
1506
  <label class="wd-label" for="bull_act_color"><?php _e('Active color:', WDS()->prefix); ?></label>
1507
- <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_act_color" id="bull_act_color" value="<?php echo $row->bull_act_color; ?>" class="color" onchange="jQuery('#wds_act_bull_style').css({color: '#' + jQuery(this).val()})" />
1508
  <p class="description"><?php _e('Select the color for the bullet, which is currently displaying a corresponding image.', WDS()->prefix); ?></p>
1509
  </span>
1510
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>" id="bullets_back_act_color">
@@ -1522,9 +1522,9 @@ class SlidersView_wds extends AdminView_wds {
1522
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_radius" id="bull_radius" value="<?php echo $row->bull_radius; ?>" class="spider_char_input" />
1523
  <p class="description"><?php _e('Use CSS type values (e.g. 4px).', WDS()->prefix); ?></p>
1524
  </span>
1525
- <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>" id="bullet_margin">
1526
  <label class="wd-label" for="bull_margin"><?php _e('Margin:', WDS()->prefix); ?></label>
1527
- <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_margin" id="bull_margin" value="<?php echo $row->bull_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1528
  <p class="description"><?php _e('Set the margin for navigation bullets.', WDS()->prefix); ?></p>
1529
  </span>
1530
  </div>
1492
  <div class="wd-table-col wd-table-col-50 wd-table-col-right">
1493
  <div class="wd-box-section">
1494
  <div class="wd-box-content">
1495
+ <span class="wd-group" id="bullet_size">
1496
  <label class="wd-label" for="bull_size"><?php _e('Size:', WDS()->prefix); ?></label>
1497
+ <input type="text" name="bull_size" id="bull_size" value="<?php echo $row->bull_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1498
  <p class="description"><?php _e('Set the size of navigation bullets.', WDS()->prefix); ?></p>
1499
  </span>
1500
+ <span class="wd-group">
1501
  <label class="wd-label" for="bull_color"><?php _e('Color:', WDS()->prefix); ?></label>
1502
+ <input type="text" name="bull_color" id="bull_color" value="<?php echo $row->bull_color; ?>" class="color" onchange="jQuery('#wds_deact_bull_style').css({color: '#' + jQuery(this).val()})" />
1503
  <p class="description"><?php _e('Select the color for navigation bullets.', WDS()->prefix); ?></p>
1504
  </span>
1505
+ <span class="wd-group" id="bullets_act_color">
1506
  <label class="wd-label" for="bull_act_color"><?php _e('Active color:', WDS()->prefix); ?></label>
1507
+ <input type="text" name="bull_act_color" id="bull_act_color" value="<?php echo $row->bull_act_color; ?>" class="color" onchange="jQuery('#wds_act_bull_style').css({color: '#' + jQuery(this).val()})" />
1508
  <p class="description"><?php _e('Select the color for the bullet, which is currently displaying a corresponding image.', WDS()->prefix); ?></p>
1509
  </span>
1510
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>" id="bullets_back_act_color">
1522
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="text" name="bull_radius" id="bull_radius" value="<?php echo $row->bull_radius; ?>" class="spider_char_input" />
1523
  <p class="description"><?php _e('Use CSS type values (e.g. 4px).', WDS()->prefix); ?></p>
1524
  </span>
1525
+ <span class="wd-group" id="bullet_margin">
1526
  <label class="wd-label" for="bull_margin"><?php _e('Margin:', WDS()->prefix); ?></label>
1527
+ <input type="text" name="bull_margin" id="bull_margin" value="<?php echo $row->bull_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1528
  <p class="description"><?php _e('Set the margin for navigation bullets.', WDS()->prefix); ?></p>
1529
  </span>
1530
  </div>
css/wds_tables.css CHANGED
@@ -1932,7 +1932,6 @@ th.sorted a span {
1932
 
1933
  .wd-box-section {
1934
  background-color: #FFFFFF;
1935
- border: 1px solid #eaeaea;
1936
  margin: 5px 0;
1937
  }
1938
  .wd-table-col-left .wd-box-section {
1932
 
1933
  .wd-box-section {
1934
  background-color: #FFFFFF;
 
1935
  margin: 5px 0;
1936
  }
1937
  .wd-table-col-left .wd-box-section {
frontend/views/WDSViewSlider.php CHANGED
@@ -605,7 +605,7 @@ class WDSViewSlider {
605
  <div class="wds_btn_cont wds_contTable">
606
  <span class="wds_btn_cont wds_contTableCell" style="position: relative; text-align: left;">
607
  <span class="wds_left_btn_cont">
608
- <span class="wds_left-ico_<?php echo $wds; ?>" onclick="wds_change_image('<?php echo $wds; ?>', parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()), (parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()) - wds_iterator_wds(<?php echo $wds; ?>)) >= 0 ? (parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()) - wds_iterator_wds(<?php echo $wds; ?>)) % wds_params[<?php echo $wds; ?>].wds_data.length : wds_params[<?php echo $wds; ?>].wds_data.length - 1, wds_data_<?php echo $wds; ?>, false, 'left'); return false;">
609
  <?php
610
  if ($slider_row->rl_butt_img_or_not == 'style') {
611
  ?>
605
  <div class="wds_btn_cont wds_contTable">
606
  <span class="wds_btn_cont wds_contTableCell" style="position: relative; text-align: left;">
607
  <span class="wds_left_btn_cont">
608
+ <span class="wds_left-ico_<?php echo $wds; ?>" onclick="wds_change_image('<?php echo $wds; ?>', parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()), 0 <= (parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()) - wds_iterator_wds(<?php echo $wds; ?>)) ? (parseInt(jQuery('#wds_current_image_key_<?php echo $wds; ?>').val()) - wds_iterator_wds(<?php echo $wds; ?>)) % wds_params[<?php echo $wds; ?>].wds_data.length : wds_params[<?php echo $wds; ?>].wds_data.length - 1, wds_data_<?php echo $wds; ?>, false, 'left'); return false;">
609
  <?php
610
  if ($slider_row->rl_butt_img_or_not == 'style') {
611
  ?>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: responsive slider, slider, slideshow, wordpress slider, image slider, gall
4
  Requires at least: 3.4
5
  Tested up to: 5.7
6
  Requires PHP: 5.2
7
- Stable tag: 1.2.43
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -444,6 +444,8 @@ The plugin takes the full width of the widget area if the **Boxed Layout** in **
444
 
445
 
446
  == Changelog ==
 
 
447
 
448
  = 1.2.43 =
449
  * Fixed: Compatibility with PHP8.
4
  Requires at least: 3.4
5
  Tested up to: 5.7
6
  Requires PHP: 5.2
7
+ Stable tag: 1.2.44
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
444
 
445
 
446
  == Changelog ==
447
+ = 1.2.44 =
448
+ * Fixed: Make it possible to change bullet style in free version.
449
 
450
  = 1.2.43 =
451
  * Fixed: Compatibility with PHP8.
slider-wd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Slider by 10Web
4
  * Plugin URI: https://10web.io/plugins/wordpress-slider/?utm_source=slider&utm_medium=free_plugin
5
  * 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.
6
- * Version: 1.2.43
7
  * Author: 10Web
8
  * Author URI: https://10web.io/pricing/?utm_source=slider&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -79,8 +79,8 @@ final class WDS {
79
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
80
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
81
  $this->main_file = plugin_basename(__FILE__);
82
- $this->plugin_version = '1.2.43';
83
- $this->db_version = '1.2.43';
84
  $this->prefix = 'wds';
85
  $this->nicename = __('Slider', $this->prefix);
86
  $this->use_home_url();
3
  * Plugin Name: Slider by 10Web
4
  * Plugin URI: https://10web.io/plugins/wordpress-slider/?utm_source=slider&utm_medium=free_plugin
5
  * 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.
6
+ * Version: 1.2.44
7
  * Author: 10Web
8
  * Author URI: https://10web.io/pricing/?utm_source=slider&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
79
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
80
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
81
  $this->main_file = plugin_basename(__FILE__);
82
+ $this->plugin_version = '1.2.44';
83
+ $this->db_version = '1.2.44';
84
  $this->prefix = 'wds';
85
  $this->nicename = __('Slider', $this->prefix);
86
  $this->use_home_url();