Slider by WD – Responsive Slider - Version 1.2.49

Version Description

Download this release

Release Info

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

Code changes from version 1.2.48 to 1.2.49

Files changed (6) hide show
  1. admin/controllers/Sliders.php +9 -9
  2. admin/views/Sliders.php +115 -110
  3. css/wds_tables.css +4 -2
  4. js/wds.js +147 -135
  5. readme.txt +1 -1169
  6. slider-wd.php +3 -3
admin/controllers/Sliders.php CHANGED
@@ -362,18 +362,18 @@ class SlidersController_wds {
362
  $slider_id = (isset($_POST['current_id']) ? (int) $_POST['current_id'] : $id);
363
  $slider_data = (isset($_POST['slider_data']) ? stripslashes($_POST['slider_data']) : '');
364
  $params_array = json_decode($slider_data, TRUE);
365
- $del_slide_ids = ( isset($params_array['del_slide_ids_string']) ? explode(',', $params_array['del_slide_ids_string']) : '');
366
  if ( !empty($del_slide_ids) ) {
367
  $slide_ids = array();
368
  foreach ( $del_slide_ids as $did ) {
369
- if ( isset($did) && is_numeric($did) ) {
370
- $slide_ids[] = trim(intval($did));
371
- }
372
- }
373
  if ( !empty($slide_ids) ) {
374
- $slide_ids = implode($slide_ids, ',');
375
- $wpdb->query('DELETE FROM ' . $wpdb->prefix . 'wdsslide WHERE slider_id=' . $slider_id . ' AND id IN (' . $slide_ids . ')');
376
- }
377
  }
378
  $name = WDW_S_Library::esc_sanitize_data($params_array, 'name', 'sanitize_text_field');
379
  $published = (int) WDW_S_Library::esc_sanitize_data($params_array, 'published', '', 1);
@@ -674,7 +674,7 @@ class SlidersController_wds {
674
  }
675
  }
676
  if ( !empty($slide_ids) ) {
677
- $slide_ids = implode($slide_ids, ',');
678
  $wpdb->query('DELETE FROM ' . $wpdb->prefix . 'wdslayer WHERE id IN (' . $slide_ids . ')');
679
  }
680
  }
362
  $slider_id = (isset($_POST['current_id']) ? (int) $_POST['current_id'] : $id);
363
  $slider_data = (isset($_POST['slider_data']) ? stripslashes($_POST['slider_data']) : '');
364
  $params_array = json_decode($slider_data, TRUE);
365
+ $del_slide_ids = ( isset($params_array['del_slide_ids_string']) ? explode(',', $params_array['del_slide_ids_string']) : '');
366
  if ( !empty($del_slide_ids) ) {
367
  $slide_ids = array();
368
  foreach ( $del_slide_ids as $did ) {
369
+ if ( isset($did) && is_numeric($did) ) {
370
+ $slide_ids[] = trim(intval($did));
371
+ }
372
+ }
373
  if ( !empty($slide_ids) ) {
374
+ $slide_ids = implode(',', $slide_ids);
375
+ $wpdb->query('DELETE FROM ' . $wpdb->prefix . 'wdsslide WHERE slider_id=' . $slider_id . ' AND id IN (' . $slide_ids . ')');
376
+ }
377
  }
378
  $name = WDW_S_Library::esc_sanitize_data($params_array, 'name', 'sanitize_text_field');
379
  $published = (int) WDW_S_Library::esc_sanitize_data($params_array, 'published', '', 1);
674
  }
675
  }
676
  if ( !empty($slide_ids) ) {
677
+ $slide_ids = implode(',', $slide_ids);
678
  $wpdb->query('DELETE FROM ' . $wpdb->prefix . 'wdslayer WHERE id IN (' . $slide_ids . ')');
679
  }
680
  }
admin/views/Sliders.php CHANGED
@@ -303,11 +303,11 @@ class SlidersView_wds extends AdminView_wds {
303
  <div class="wd-box-content">
304
  <span class="wd-group">
305
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width2" name="full_width" <?php echo (($row->full_width == '2' || $row->full_width == '') ? 'checked="checked"' : ''); ?> value="2" />
306
- <label <?php echo (($row->full_width == 2) ? 'class="selected_color"' : ''); ?> for="full_width2"><?php _e('Boxed layout', WDS()->prefix); ?></label>
307
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width1" name="full_width" <?php echo (($row->full_width == '1') ? 'checked="checked"' : ''); ?> value="1" />
308
- <label <?php echo ($row->full_width == 1) ? 'class="selected_color"' : ''; ?> for="full_width1"><?php _e('Full width', WDS()->prefix); ?></label>
309
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width0" name="full_width" <?php echo (($row->full_width == '0') ? 'checked="checked"' : ''); ?> value="0" />
310
- <label <?php echo ($row->full_width == 0) ? 'class="selected_color"' : ''; ?> for="full_width0"><?php _e('Custom', WDS()->prefix); ?></label>
311
  <p class="description full_width_desc" id="full_width2_desc"><?php _e('With Boxed layout, the slideshow will take the 100% width of its parent container.', WDS()->prefix); ?></p>
312
  <p class="description full_width_desc" id="full_width1_desc"><?php _e('The slider will take the full width of the page. Height will be applied based on the ratio of dimensions or auto height option.', WDS()->prefix); ?></p>
313
  <p class="description full_width_desc" id="full_width0_desc"><?php _e('This option lets you specify custom dimensions for your slider.', WDS()->prefix); ?></p>
@@ -315,9 +315,9 @@ class SlidersView_wds extends AdminView_wds {
315
  <span class="wd-group" id="auto_height">
316
  <label class="wd-label"><?php _e('Auto height', WDS()->prefix); ?></label>
317
  <input type="radio" onclick="hide_dimmension_ratio()" id="auto_height1" name="auto_height" <?php echo (($row->auto_height) ? 'checked="checked"' : ''); ?> value="1" />
318
- <label <?php echo (($row->auto_height) ? 'class="selected_color"' : ''); ?> for="auto_height1"><?php _e('Yes', WDS()->prefix); ?></label>
319
  <input type="radio" onclick="hide_dimmension_ratio()" id="auto_height0" name="auto_height" <?php echo (($row->auto_height) ? '' : 'checked="checked"'); ?> value="0" />
320
- <label <?php echo ($row->auto_height) ? '' : 'class="selected_color"'; ?> for="auto_height0"><?php _e('No', WDS()->prefix); ?></label>
321
  <p class="description"><?php _e('The slider will take the full height of the screen.', WDS()->prefix); ?></p>
322
  </span>
323
  <span class="wd-group" id="dimensions">
@@ -358,9 +358,9 @@ class SlidersView_wds extends AdminView_wds {
358
  <span class="wd-group" id="tr_smart_crop">
359
  <label class="wd-label"><?php _e('Smart Crop', WDS()->prefix); ?></label>
360
  <input onClick="wds_enable_disable('', 'tr_crop_pos', 'smart_crop1')" type="radio" id="smart_crop1" name="smart_crop" <?php echo (($row->smart_crop) ? 'checked="checked"' : ''); ?> value="1" />
361
- <label <?php echo (($row->smart_crop) ? 'class="selected_color"' : ''); ?> for="smart_crop1"><?php _e('Yes', WDS()->prefix); ?></label>
362
  <input onClick="wds_enable_disable('none', 'tr_crop_pos', 'smart_crop0')" type="radio" id="smart_crop0" name="smart_crop" <?php echo (($row->smart_crop) ? '' : 'checked="checked"'); ?> value="0" />
363
- <label <?php echo ((!$row->smart_crop) ? 'class="selected_color"' : ''); ?> for="smart_crop0"><?php _e('No', WDS()->prefix); ?></label>
364
  <p class="description"><?php _e('To use Smart Crop, please edit your slides and make sure Fillmode is set to Fill in Slide Options.', WDS()->prefix); ?></p>
365
  </span>
366
  <span class="wd-group" id="tr_crop_pos">
@@ -388,57 +388,57 @@ class SlidersView_wds extends AdminView_wds {
388
  <span class="wd-group">
389
  <label class="wd-label"><?php _e('Fixed background:', WDS()->prefix); ?></label>
390
  <input type="radio" id="fixed_bg1" name="fixed_bg" <?php echo (($row->fixed_bg) ? 'checked="checked"' : ''); ?> value="1" />
391
- <label <?php echo (($row->fixed_bg) ? 'class="selected_color"' : ''); ?> for="fixed_bg1"><?php _e('Yes', WDS()->prefix); ?></label>
392
  <input type="radio" id="fixed_bg0" name="fixed_bg" <?php echo (($row->fixed_bg) ? '' : 'checked="checked"'); ?> value="0" />
393
- <label <?php echo ((!$row->fixed_bg) ? 'class="selected_color"' : ''); ?> for="fixed_bg0"><?php _e('No', WDS()->prefix); ?></label>
394
  <p class="description"></p>
395
  </span>
396
  <span class="wd-group">
397
  <label class="wd-label"><?php _e('Slides order direction:', WDS()->prefix); ?></label>
398
  <input type="radio" id="order_dir1" name="order_dir" <?php echo checked('asc', $row->order_dir); ?> value="asc" />
399
- <label <?php echo (($row->order_dir == 'asc') ? 'class="selected_color"' : ''); ?> for="order_dir1"><?php _e('Ascending', WDS()->prefix); ?></label>
400
  <input type="radio" id="order_dir0" name="order_dir" <?php checked('desc', $row->order_dir); ?> value="desc" />
401
- <label <?php echo (($row->order_dir == 'desc') ? 'class="selected_color"' : ''); ?> for="order_dir0"><?php _e('Descending', WDS()->prefix); ?></label>
402
  <p class="description"></p>
403
  </span>
404
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>">
405
  <label class="wd-label"><?php _e('Parallax Effect', WDS()->prefix); ?></label>
406
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="parallax_effect1" name="parallax_effect" <?php echo (($row->parallax_effect) ? 'checked="checked"' : ''); ?> value="1" />
407
- <label <?php echo (($row->parallax_effect) ? 'class="selected_color"' : ''); ?> for="parallax_effect1"><?php _e('Yes', WDS()->prefix); ?></label>
408
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="parallax_effect0" name="parallax_effect" <?php echo (($row->parallax_effect) ? '' : 'checked="checked"'); ?> value="0" />
409
- <label <?php echo (($row->parallax_effect) ? '' : 'class="selected_color"'); ?> for="parallax_effect0"><?php _e('No', WDS()->prefix); ?></label>
410
  <p class="description"><?php _e('The direction of the movement, as well as the layer moving pace depend on the z-index value.', WDS()->prefix); ?></p>
411
  </span>
412
  <span class="wd-group">
413
  <label class="wd-label"><?php _e('Smart Load', WDS()->prefix); ?></label>
414
  <input type="radio" id="preload_images1" name="preload_images" <?php echo (($row->preload_images) ? 'checked="checked"' : ''); ?> value="1" />
415
- <label <?php echo (($row->preload_images) ? 'class="selected_color"' : ''); ?> for="preload_images1"><?php _e('Yes', WDS()->prefix); ?></label>
416
  <input type="radio" id="preload_images0" name="preload_images" <?php echo (($row->preload_images) ? '' : 'checked="checked"'); ?> value="0" />
417
- <label <?php echo (($row->preload_images) ? '' : 'class="selected_color"'); ?> for="preload_images0"><?php _e('No', WDS()->prefix); ?></label>
418
  <p class="description"><?php _e('Turn this option on to have faster loading for the first few images and process the rest meanwhile.', WDS()->prefix); ?></p>
419
  </span>
420
  <span class="wd-group">
421
  <label class="wd-label"><?php _e('Right click protection', WDS()->prefix); ?></label>
422
  <input type="radio" name="image_right_click" id="image_right_click_1" value="1" <?php if ($row->image_right_click) echo 'checked="checked"'; ?> />
423
- <label <?php echo $row->image_right_click ? 'class="selected_color"' : ''; ?> for="image_right_click_1"><?php _e('Yes', WDS()->prefix); ?></label>
424
  <input type="radio" name="image_right_click" id="image_right_click_0" value="0" <?php if (!$row->image_right_click) echo 'checked="checked"'; ?> />
425
- <label <?php echo $row->image_right_click ? '' : 'class="selected_color"'; ?> for="image_right_click_0"><?php _e('No', WDS()->prefix); ?></label>
426
  <p class="description"><?php _e('Disable right-click on slider images.', WDS()->prefix); ?></p>
427
  </span>
428
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>">
429
  <label class="wd-label"><?php _e('Layer out on next', WDS()->prefix); ?></label>
430
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" name="layer_out_next" id="layer_out_next_1" value="1" <?php if ($row->layer_out_next) echo 'checked="checked"'; ?> />
431
- <label <?php echo $row->layer_out_next ? 'class="selected_color"' : ''; ?> for="layer_out_next_1"><?php _e('Yes', WDS()->prefix); ?></label>
432
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" name="layer_out_next" id="layer_out_next_0" value="0" <?php if (!$row->layer_out_next) echo 'checked="checked"'; ?> />
433
- <label <?php echo $row->layer_out_next ? '' : 'class="selected_color"'; ?> for="layer_out_next_0"><?php _e('No', WDS()->prefix); ?></label>
434
  <p class="description"><?php _e('Enable this option to have the layer effect out regardless of the timing between the hit to the next slider.', WDS()->prefix); ?></p>
435
  </span>
436
  <span class="wd-group">
437
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
438
  <input type="radio" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" />
439
- <label <?php echo (($row->published) ? 'class="selected_color"' : ''); ?> for="published1"><?php _e('Yes', WDS()->prefix); ?></label>
440
  <input type="radio" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" />
441
- <label <?php echo (($row->published) ? '' : 'class="selected_color"'); ?> for="published0"><?php _e('No', WDS()->prefix); ?></label>
442
  <p class="description"></p>
443
  </span>
444
  </div>
@@ -450,9 +450,9 @@ class SlidersView_wds extends AdminView_wds {
450
  <span class="wd-group">
451
  <label class="wd-label"><?php _e('Autoplay', WDS()->prefix); ?></label>
452
  <input type="radio" id="autoplay1" name="autoplay" <?php echo (($row->autoplay) ? 'checked="checked"' : ''); ?> value="1" />
453
- <label <?php echo (($row->autoplay) ? 'class="selected_color"' : ''); ?> for="autoplay1"><?php _e('Yes', WDS()->prefix); ?></label>
454
  <input type="radio" id="autoplay0" name="autoplay" <?php echo (($row->autoplay) ? '' : 'checked="checked"'); ?> value="0" />
455
- <label <?php echo (($row->autoplay) ? '' : 'class="selected_color"'); ?> for="autoplay0"><?php _e('No', WDS()->prefix); ?></label>
456
  <p class="description"><?php _e('Enable this option to autoplay the slider.', WDS()->prefix); ?></p>
457
  </span>
458
  <span class="wd-group">
@@ -463,33 +463,33 @@ class SlidersView_wds extends AdminView_wds {
463
  <span class="wd-group">
464
  <label class="wd-label"><?php _e('Enable loop', WDS()->prefix); ?></label>
465
  <input type="radio" id="slider_loop1" name="slider_loop" <?php echo (($row->slider_loop) ? 'checked="checked"' : ''); ?> value="1" />
466
- <label <?php echo (($row->slider_loop) ? 'class="selected_color"' : ''); ?> for="slider_loop1"><?php _e('Yes', WDS()->prefix); ?></label>
467
  <input type="radio" id="slider_loop0" name="slider_loop" <?php echo (($row->slider_loop) ? '' : 'checked="checked"'); ?> value="0" />
468
- <label <?php echo (($row->slider_loop) ? '' : 'class="selected_color"'); ?> for="slider_loop0"><?php _e('No', WDS()->prefix); ?></label>
469
  <p class="description"></p>
470
  </span>
471
  <span class="wd-group">
472
  <label class="wd-label"><?php _e('Shuffle', WDS()->prefix); ?></label>
473
  <input type="radio" id="shuffle1" name="shuffle" <?php echo (($row->shuffle) ? 'checked="checked"' : ''); ?> value="1" />
474
- <label <?php echo (($row->shuffle) ? 'class="selected_color"' : ''); ?> for="shuffle1"><?php _e('Yes', WDS()->prefix); ?></label>
475
  <input type="radio" id="shuffle0" name="shuffle" <?php echo (($row->shuffle) ? '' : 'checked="checked"'); ?> value="0" />
476
- <label <?php echo (($row->shuffle) ? '' : 'class="selected_color"'); ?> for="shuffle0"><?php _e('No', WDS()->prefix); ?></label>
477
  <p class="description"><?php _e('Enable this setting to have the slides change in random order during autoplay.', WDS()->prefix); ?></p>
478
  </span>
479
  <span class="wd-group">
480
  <label class="wd-label"><?php _e('Two way slideshow', WDS()->prefix); ?></label>
481
  <input type="radio" id="twoway_slideshow1" name="twoway_slideshow" <?php echo (($row->twoway_slideshow) ? 'checked="checked"' : ''); ?> value="1" />
482
- <label <?php echo (($row->twoway_slideshow) ? 'class="selected_color"' : ''); ?> for="twoway_slideshow1"><?php _e('Yes', WDS()->prefix); ?></label>
483
  <input type="radio" id="twoway_slideshow0" name="twoway_slideshow" <?php echo (($row->twoway_slideshow) ? '' : 'checked="checked"'); ?> value="0" />
484
- <label <?php echo (($row->twoway_slideshow) ? '' : 'class="selected_color"'); ?> for="twoway_slideshow0"><?php _e('No', WDS()->prefix); ?></label>
485
  <p class="description"><?php _e('If the user switches to previous slide, the slideshow starts to go backwards during autoplay.', WDS()->prefix); ?></p>
486
  </span>
487
  <span class="wd-group">
488
  <label class="wd-label"><?php _e('Stop on hover', WDS()->prefix); ?></label>
489
  <input type="radio" id="stop_animation1" name="stop_animation" <?php echo (($row->stop_animation) ? 'checked="checked"' : ''); ?> value="1" />
490
- <label <?php echo (($row->stop_animation) ? 'class="selected_color"' : ''); ?> for="stop_animation1"><?php _e('Yes', WDS()->prefix); ?></label>
491
  <input type="radio" id="stop_animation0" name="stop_animation" <?php echo (($row->stop_animation) ? '' : 'checked="checked"'); ?> value="0" />
492
- <label <?php echo (($row->stop_animation) ? '' : 'class="selected_color"'); ?> for="stop_animation0"><?php _e('No', WDS()->prefix); ?></label>
493
  <p class="description"><?php _e('The option works when autoplay is on.', WDS()->prefix); ?></p>
494
  </span>
495
  <span class="wd-group">
@@ -500,9 +500,9 @@ class SlidersView_wds extends AdminView_wds {
500
  <span class="wd-group">
501
  <label class="wd-label"><?php _e('Music', WDS()->prefix); ?></label>
502
  <input type="radio" id="music1" name="music" <?php echo (($row->music) ? 'checked="checked"' : ''); ?> value="1" onClick="wds_enable_disable('', 'tr_music_url', 'music1')" />
503
- <label <?php echo (($row->music) ? 'class="selected_color"' : ''); ?> for="music1"><?php _e('Yes', WDS()->prefix); ?></label>
504
  <input type="radio" id="music0" name="music" <?php echo (($row->music) ? '' : 'checked="checked"'); ?> value="0" onClick="wds_enable_disable('none', 'tr_music_url', 'music0')" />
505
- <label <?php echo (($row->music) ? '' : 'class="selected_color"'); ?> for="music0"><?php _e('No', WDS()->prefix); ?></label>
506
  <p class="description"><?php _e('You can have music/audio track playback with the slider.', WDS()->prefix); ?></p>
507
  </span>
508
  <span class="wd-group" id="tr_music_url">
@@ -578,9 +578,9 @@ class SlidersView_wds extends AdminView_wds {
578
  <span class="wd-group">
579
  <label class="wd-label"><?php _e('Carousel:', WDS()->prefix); ?></label>
580
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel1" name="carousel" <?php echo (($row->carousel) ? 'checked="checked"' : ''); ?> value="1" onClick="showhide_for_carousel_fildes(1)"/>
581
- <label <?php echo (($row->carousel) ? 'class="selected_color"' : ''); ?> for="carousel1"><?php _e('Yes', WDS()->prefix); ?></label>
582
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel0" name="carousel" <?php echo (($row->carousel) ? '' : 'checked="checked"'); ?> value="0" onClick="showhide_for_carousel_fildes(0)"/>
583
- <label <?php echo (($row->carousel) ? '' : 'class="selected_color"'); ?> for="carousel0"><?php _e('No', WDS()->prefix); ?></label>
584
  <p class="description"><?php _e('Use this option to activate Carousel feature. Note, that the effects you have selected in Global settings for your slider will not apply.', WDS()->prefix); ?></p>
585
  </span>
586
  <span class="wd-group">
@@ -596,9 +596,9 @@ class SlidersView_wds extends AdminView_wds {
596
  <span class="wd-group">
597
  <label class="wd-label"><?php _e('Container fit:', WDS()->prefix); ?></label>
598
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel_fit_containerWidth1" name="carousel_fit_containerWidth" <?php echo (($row->carousel_fit_containerWidth) ? 'checked="checked"' : ''); ?> value="1" />
599
- <label <?php echo (($row->carousel_fit_containerWidth) ? 'class="selected_color"' : ''); ?> for="carousel_fit_containerWidth1"><?php _e('Yes', WDS()->prefix); ?></label>
600
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel_fit_containerWidth0" name="carousel_fit_containerWidth" <?php echo (($row->carousel_fit_containerWidth) ? '' : 'checked="checked"'); ?> value="0" />
601
- <label <?php echo (($row->carousel_fit_containerWidth) ? '' : 'class="selected_color"'); ?> for="carousel_fit_containerWidth0"><?php _e('No', WDS()->prefix); ?></label>
602
  <p class="description"></p>
603
  </span>
604
  </div>
@@ -640,59 +640,59 @@ class SlidersView_wds extends AdminView_wds {
640
  <span class="wd-group">
641
  <label class="wd-label"><?php _e('Next / Previous buttons:', WDS()->prefix); ?></label>
642
  <input type="radio" name="prev_next_butt" id="prev_next_butt_1" value="1" <?php if ($row->prev_next_butt) echo 'checked="checked"'; ?> />
643
- <label <?php echo $row->prev_next_butt ? 'class="selected_color"' : ''; ?> for="prev_next_butt_1"><?php _e('Yes', WDS()->prefix); ?></label>
644
  <input type="radio" name="prev_next_butt" id="prev_next_butt_0" value="0" <?php if (!$row->prev_next_butt) echo 'checked="checked"'; ?> />
645
- <label <?php echo $row->prev_next_butt ? '' : 'class="selected_color"'; ?> for="prev_next_butt_0"><?php _e('No', WDS()->prefix); ?></label>
646
  <p class="description"><?php _e('Enable this option to display Previous and Next buttons.', WDS()->prefix); ?></p>
647
  </span>
648
  <span class="wd-group">
649
  <label class="wd-label"><?php _e('Mouse swipe navigation:', WDS()->prefix); ?></label>
650
  <input type="radio" name="mouse_swipe_nav" id="mouse_swipe_nav_1" value="1" <?php if ($row->mouse_swipe_nav) echo 'checked="checked"'; ?> />
651
- <label <?php echo $row->mouse_swipe_nav ? 'class="selected_color"' : ''; ?> for="mouse_swipe_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
652
  <input type="radio" name="mouse_swipe_nav" id="mouse_swipe_nav_0" value="0" <?php if (!$row->mouse_swipe_nav) echo 'checked="checked"'; ?> />
653
- <label <?php echo $row->mouse_swipe_nav ? '' : 'class="selected_color"'; ?> for="mouse_swipe_nav_0"><?php _e('No', WDS()->prefix); ?></label>
654
  <p class="description"></p>
655
  </span>
656
  <span class="wd-group">
657
  <label class="wd-label"><?php _e('Touch swipe navigation:', WDS()->prefix); ?></label>
658
  <input type="radio" name="touch_swipe_nav" id="touch_swipe_nav_1" value="1" <?php if ($row->touch_swipe_nav) echo 'checked="checked"'; ?> />
659
- <label <?php echo $row->touch_swipe_nav ? 'class="selected_color"' : ''; ?> for="touch_swipe_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
660
  <input type="radio" name="touch_swipe_nav" id="touch_swipe_nav_0" value="0" <?php if (!$row->touch_swipe_nav) echo 'checked="checked"'; ?> />
661
- <label <?php echo $row->touch_swipe_nav ? '' : 'class="selected_color"'; ?> for="touch_swipe_nav_0"><?php _e('No', WDS()->prefix); ?></label>
662
  <p class="description"></p>
663
  </span>
664
  <span class="wd-group">
665
  <label class="wd-label"><?php _e('Mouse wheel navigation:', WDS()->prefix); ?></label>
666
  <input type="radio" name="mouse_wheel_nav" id="mouse_wheel_nav_1" value="1" <?php if ($row->mouse_wheel_nav) echo 'checked="checked"'; ?> />
667
- <label <?php echo $row->mouse_wheel_nav ? 'class="selected_color"' : ''; ?> for="mouse_wheel_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
668
  <input type="radio" name="mouse_wheel_nav" id="mouse_wheel_nav_0" value="0" <?php if (!$row->mouse_wheel_nav) echo 'checked="checked"'; ?> />
669
- <label <?php echo $row->mouse_wheel_nav ? '' : 'class="selected_color"'; ?> for="mouse_wheel_nav_0"><?php _e('No', WDS()->prefix); ?></label>
670
  <p class="description"></p>
671
  </span>
672
  <span class="wd-group">
673
  <label class="wd-label"><?php _e('Keyboard navigation:', WDS()->prefix); ?></label>
674
  <input type="radio" name="keyboard_nav" id="keyboard_nav_1" value="1" <?php if ($row->keyboard_nav) echo 'checked="checked"'; ?> />
675
- <label <?php echo $row->keyboard_nav ? 'class="selected_color"' : ''; ?> for="keyboard_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
676
  <input type="radio" name="keyboard_nav" id="keyboard_nav_0" value="0" <?php if (!$row->keyboard_nav) echo 'checked="checked"'; ?> />
677
- <label <?php echo $row->keyboard_nav ? '' : 'class="selected_color"'; ?> for="keyboard_nav_0"><?php _e('No', WDS()->prefix); ?></label>
678
  <p class="description"></p>
679
  </span>
680
  <span class="wd-group">
681
  <label class="wd-label"><?php _e('Show Navigation buttons:', WDS()->prefix); ?></label>
682
  <input type="radio" name="navigation" id="navigation_1" value="hover" <?php if ($row->navigation == 'hover') echo 'checked="checked"'; ?> />
683
- <label <?php echo $row->navigation == 'hover' ? 'class="selected_color"' : ''; ?> for="navigation_1"><?php _e('On hover', WDS()->prefix); ?></label>
684
  <input type="radio" name="navigation" id="navigation_0" value="always" <?php if ($row->navigation == 'always' ) echo 'checked="checked"'; ?> />
685
- <label <?php echo $row->navigation == 'always' ? 'class="selected_color"' : ''; ?> for="navigation_0"><?php _e('Always', WDS()->prefix); ?></label>
686
  <p class="description"></p>
687
  </span>
688
  <span class="wd-group">
689
  <label class="wd-label"><?php _e('Image for Next / Previous buttons:', WDS()->prefix); ?></label>
690
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_our" value="our" <?php if ($row->rl_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('our')" />
691
- <label <?php if ($row->rl_butt_img_or_not == 'our') echo 'class="selected_color"'; ?> for="rl_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
692
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_cust" value="custom" <?php if ($row->rl_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('custom')" />
693
- <label <?php if ($row->rl_butt_img_or_not == 'custom') echo 'class="selected_color"'; ?> for="rl_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
694
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_style" value="style" <?php if ($row->rl_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('style')" />
695
- <label <?php if ($row->rl_butt_img_or_not == 'style') echo 'class="selected_color"'; ?> for="rl_butt_img_or_not_style"><?php _e('Styled', WDS()->prefix); ?></label>
696
  <input type="hidden" id="right_butt_url" name="right_butt_url" value="<?php echo $row->right_butt_url; ?>" />
697
  <input type="hidden" id="right_butt_hov_url" name="right_butt_hov_url" value="<?php echo $row->right_butt_hov_url; ?>" />
698
  <input type="hidden" id="left_butt_url" name="left_butt_url" value="<?php echo $row->left_butt_url; ?>" />
@@ -947,19 +947,19 @@ class SlidersView_wds extends AdminView_wds {
947
  <span class="wd-group">
948
  <label class="wd-label"><?php _e('Play / Pause button:', WDS()->prefix); ?></label>
949
  <input type="radio" name="play_paus_butt" id="play_paus_butt_1" value="1" <?php if ($row->play_paus_butt) echo 'checked="checked"'; ?> />
950
- <label <?php if ($row->play_paus_butt) echo 'class="selected_color"'; ?> for="play_paus_butt_1"><?php _e('Yes', WDS()->prefix); ?></label>
951
  <input type="radio" name="play_paus_butt" id="play_paus_butt_0" value="0" <?php if (!$row->play_paus_butt) echo 'checked="checked"'; ?> />
952
- <label <?php if (!$row->play_paus_butt) echo 'class="selected_color"'; ?> for="play_paus_butt_0"><?php _e('No', WDS()->prefix); ?></label>
953
  <p class="description"><?php _e('Select this option to display Play and Pause buttons.', WDS()->prefix); ?></p>
954
  </span>
955
  <span class="wd-group">
956
  <label class="wd-label"><?php _e('Image for Play / Pause buttons:', WDS()->prefix); ?></label>
957
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_our" value="our" <?php if ($row->play_paus_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('our')" />
958
- <label <?php if ($row->play_paus_butt_img_or_not == 'our') echo 'class="selected_color"'; ?> for="play_pause_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
959
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_cust" value="custom" <?php if ($row->play_paus_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('custom')" />
960
- <label <?php if ($row->play_paus_butt_img_or_not == 'custom') echo 'class="selected_color"'; ?> for="play_pause_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
961
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_select" value="style" <?php if ($row->play_paus_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('style')" />
962
- <label <?php if ($row->play_paus_butt_img_or_not == 'style') echo 'class="selected_color"'; ?> for="play_pause_butt_img_or_not_select"><?php _e('Styled', WDS()->prefix); ?></label>
963
  <input type="hidden" id="play_butt_url" name="play_butt_url" value="<?php echo $row->play_butt_url; ?>" />
964
  <input type="hidden" id="play_butt_hov_url" name="play_butt_hov_url" value="<?php echo $row->play_butt_hov_url; ?>" />
965
  <input type="hidden" id="paus_butt_url" name="paus_butt_url" value="<?php echo $row->paus_butt_url; ?>" />
@@ -1240,23 +1240,23 @@ class SlidersView_wds extends AdminView_wds {
1240
  <span class="wd-group">
1241
  <label class="wd-label"><?php _e('Enable bullets:', WDS()->prefix); ?></label>
1242
  <input type="radio" id="enable_bullets1" name="enable_bullets" <?php echo (($row->enable_bullets) ? 'checked="checked"' : ''); ?> value="1" />
1243
- <label <?php echo (($row->enable_bullets) ? 'class="selected_color"' : ''); ?> for="enable_bullets1"><?php _e('Yes', WDS()->prefix); ?></label>
1244
  <input type="radio" id="enable_bullets0" name="enable_bullets" <?php echo (($row->enable_bullets) ? '' : 'checked="checked"'); ?> value="0" />
1245
- <label <?php echo (($row->enable_bullets) ? '' : 'class="selected_color"'); ?> for="enable_bullets0"><?php _e('No', WDS()->prefix); ?></label>
1246
  <p class="description"><?php _e('Enable navigation bullets with this option.', WDS()->prefix); ?></p>
1247
  </span>
1248
  <span class="wd-group">
1249
  <label class="wd-label"><?php _e('Show bullets:', WDS()->prefix); ?></label>
1250
  <input type="radio" name="bull_hover" id="bull_hover_0" value="0" <?php if ($row->bull_hover == 0) echo 'checked="checked"'; ?> />
1251
- <label <?php if ($row->bull_hover == 0) echo 'class="selected_color"'; ?> for="bull_hover_0"><?php _e('On hover', WDS()->prefix); ?></label>
1252
  <input type="radio" name="bull_hover" id="bull_hover_1" value="1" <?php if ($row->bull_hover == 1) echo 'checked="checked"'; ?> />
1253
- <label <?php if ($row->bull_hover == 1) echo 'class="selected_color"'; ?> for="bull_hover_1"><?php _e('Always', WDS()->prefix); ?></label>
1254
  <p class="description"><?php _e('You can display navigation bullets always or only when hovered.', WDS()->prefix); ?></p>
1255
  </span>
1256
  <span class="wd-group">
1257
  <label class="wd-label"><?php _e('Show thumbnail on bullet hover:', WDS()->prefix); ?></label>
1258
  <input onClick="wds_enable_disable('', 'tr_thumb_size', 'show_thumbnail1')" type="radio" id="show_thumbnail1" name="show_thumbnail" <?php echo (($row->show_thumbnail) ? 'checked="checked"' : ''); ?> value="1" />
1259
- <label <?php echo (($row->show_thumbnail) ? 'class="selected_color"' : ''); ?> for="show_thumbnail1"><?php _e('Yes', WDS()->prefix); ?></label>
1260
  <input onClick="wds_enable_disable('none', 'tr_thumb_size', 'show_thumbnail0')" type="radio" id="show_thumbnail0" name="show_thumbnail" <?php echo (($row->show_thumbnail) ? '' : 'checked="checked"'); ?> value="0" />
1261
  <label for="show_thumbnail0"><?php _e('No', WDS()->prefix); ?></label>
1262
  <p class="description"></p>
@@ -1277,13 +1277,13 @@ class SlidersView_wds extends AdminView_wds {
1277
  <span class="wd-group">
1278
  <label class="wd-label"><?php _e('Bullets type:', WDS()->prefix); ?></label>
1279
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_our" value="our" <?php if ($row->bull_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('our')" />
1280
- <label <?php if ($row->bull_butt_img_or_not == 'our') echo 'class="selected_color"'; ?> for="bull_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
1281
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_cust" value="custom" <?php if ($row->bull_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('custom')" />
1282
- <label <?php if ($row->bull_butt_img_or_not == 'custom') echo 'class="selected_color"'; ?> for="bull_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
1283
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_stl" value="style" <?php if ($row->bull_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('style')" />
1284
- <label <?php if ($row->bull_butt_img_or_not == 'style') echo 'class="selected_color"'; ?> for="bull_butt_img_or_not_stl"><?php _e('Styled', WDS()->prefix); ?></label>
1285
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_txt" value="text" <?php if ($row->bull_butt_img_or_not == 'text') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('text')" />
1286
- <label <?php if ($row->bull_butt_img_or_not == 'text') echo 'class="selected_color"'; ?> for="bull_butt_img_or_not_txt"><?php _e('Text', WDS()->prefix); ?></label>
1287
  <input type="hidden" id="bullets_img_main_url" name="bullets_img_main_url" value="<?php echo $row->bullets_img_main_url; ?>" />
1288
  <input type="hidden" id="bullets_img_hov_url" name="bullets_img_hov_url" value="<?php echo $row->bullets_img_hov_url; ?>" />
1289
  <p class="description"></p>
@@ -1545,9 +1545,9 @@ class SlidersView_wds extends AdminView_wds {
1545
  <span class="wd-group">
1546
  <label class="wd-label"><?php _e('Enable filmstrip:', WDS()->prefix); ?></label>
1547
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="enable_filmstrip1" name="enable_filmstrip" <?php echo (($row->enable_filmstrip) ? 'checked="checked"' : ''); ?> value="1" />
1548
- <label <?php echo (($row->enable_filmstrip) ? 'class="selected_color"' : ''); ?> for="enable_filmstrip1"><?php _e('Yes', WDS()->prefix); ?></label>
1549
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="enable_filmstrip0" name="enable_filmstrip" <?php echo (($row->enable_filmstrip) ? '' : 'checked="checked"'); ?> value="0" />
1550
- <label <?php echo (($row->enable_filmstrip) ? '' : 'class="selected_color"'); ?> for="enable_filmstrip0"><?php _e('No', WDS()->prefix); ?></label>
1551
  <p class="description"><?php _e('Enable this option to display thumbnails of the slides in a filmstrip.', WDS()->prefix); ?></p>
1552
  </span>
1553
  <span class="wd-group" id="filmstrip_small_screen">
@@ -1620,9 +1620,9 @@ class SlidersView_wds extends AdminView_wds {
1620
  <span class="wd-group">
1621
  <label class="wd-label"><?php _e('Enable timer bar:', WDS()->prefix); ?></label>
1622
  <input type="radio" id="enable_time_bar1" name="enable_time_bar" <?php echo (($row->enable_time_bar) ? 'checked="checked"' : ''); ?> value="1" />
1623
- <label <?php echo (($row->enable_time_bar) ? 'class="selected_color"' : ''); ?> for="enable_time_bar1"><?php _e('Yes', WDS()->prefix); ?></label>
1624
  <input type="radio" id="enable_time_bar0" name="enable_time_bar" <?php echo (($row->enable_time_bar) ? '' : 'checked="checked"'); ?> value="0" />
1625
- <label <?php echo (($row->enable_time_bar) ? '' : 'class="selected_color"'); ?> for="enable_time_bar0"><?php _e('No', WDS()->prefix); ?></label>
1626
  <p class="description"><?php _e('You can add a bar, which displays the time left untill the slider switches to the next slide on autoplay.', WDS()->prefix); ?></p>
1627
  </span>
1628
  <span class="wd-group">
@@ -1672,11 +1672,11 @@ class SlidersView_wds extends AdminView_wds {
1672
  <span class="wd-group" id="tr_built_in_watermark_type">
1673
  <label class="wd-label"><?php _e('Watermark type:', WDS()->prefix); ?></label>
1674
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_none" value="none" <?php if ($row->built_in_watermark_type == 'none') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_none')" />
1675
- <label <?php if ($row->built_in_watermark_type == 'none') echo 'class="selected_color"'; ?> for="built_in_watermark_type_none"><?php _e('None', WDS()->prefix); ?></label>
1676
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_text" value="text" <?php if ($row->built_in_watermark_type == 'text') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_text')" onchange="preview_built_in_watermark()" />
1677
- <label <?php if ($row->built_in_watermark_type == 'text') echo 'class="selected_color"'; ?> for="built_in_watermark_type_text"><?php _e('Text', WDS()->prefix); ?></label>
1678
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_image" value="image" <?php if ($row->built_in_watermark_type == 'image') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_image')" onchange="preview_built_in_watermark()" />
1679
- <label <?php if ($row->built_in_watermark_type == 'image') echo 'class="selected_color"'; ?> for="built_in_watermark_type_image"><?php _e('Image', WDS()->prefix); ?></label>
1680
  <p class="description"><?php _e('Choose the kind of watermark you would like to use.', WDS()->prefix); ?></p>
1681
  </span>
1682
  <span class="wd-group" id="tr_built_in_watermark_url">
@@ -1966,7 +1966,10 @@ class SlidersView_wds extends AdminView_wds {
1966
  </div>
1967
  <div class="wd-group">
1968
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
1969
- <input type="radio" id="published<?php echo $slide_row->id; ?>1" name="published<?php echo $slide_row->id; ?>" <?php echo (($slide_row->published) ? 'checked="checked"' : ''); ?> value="1" /><label <?php echo (($slide_row->published) ? 'class="selected_color"' : ''); ?> for="published<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label><input type="radio" id="published<?php echo $slide_row->id; ?>0" name="published<?php echo $slide_row->id; ?>" <?php echo (($slide_row->published) ? '' : 'checked="checked"'); ?> value="0" /><label <?php echo (($slide_row->published) ? '' : 'class="selected_color"'); ?> for="published<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
 
 
 
1970
  <p class="description"></p>
1971
  </div>
1972
  </div>
@@ -1978,41 +1981,41 @@ class SlidersView_wds extends AdminView_wds {
1978
  <div class="wd-group" id="controls<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'video' ? '' : 'style="display: none;"'; ?>>
1979
  <label class="wd-label"><?php _e('Controls', WDS()->prefix); ?></label>
1980
  <input type="radio" onClick="wds_enable_disable('', 'autoplay<?php echo $slide_row->id; ?>', 'controls<?php echo $slide_row->id; ?>1')" id="controls<?php echo $slide_row->id; ?>1" name="controls<?php echo $slide_row->id; ?>" <?php echo (($slide_row->link == '1' || empty($slide_row->link) ) ? 'checked="checked"' : ''); ?> value="1" />
1981
- <label <?php echo ($slide_row->link == '1' || empty($slide_row->link) ) ? 'class="selected_color"' : ''; ?> for="controls<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1982
  <input type="radio" onClick="wds_enable_disable('none', 'autoplay<?php echo $slide_row->id; ?>', 'controls<?php echo $slide_row->id; ?>0')" id="controls<?php echo $slide_row->id; ?>0" name="controls<?php echo $slide_row->id; ?>" <?php echo (($slide_row->link == "0") ? 'checked="checked"' : '' ); ?> value="0" />
1983
- <label <?php echo (($slide_row->link == "0") ? 'class="selected_color"' : '' ); ?> for="controls<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
1984
  <p class="description"></p>
1985
  </div>
1986
  <div class="wd-group" id="autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->type == 'video' && $slide_row->link == '1') || $slide_row->type == 'EMBED_OEMBED_YOUTUBE_VIDEO'|| $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
1987
  <label class="wd-label"><?php _e('Autoplay', WDS()->prefix); ?></label>
1988
  <input type="radio" id="autoplay<?php echo $slide_row->id; ?>1" name="wds_slide_autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->target_attr_slide) ? 'checked="checked"' : ''); ?> value="1" />
1989
- <label <?php echo (($slide_row->target_attr_slide) ? 'class="selected_color"' : ''); ?> for="autoplay<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1990
  <input type="radio" id="autoplay<?php echo $slide_row->id; ?>0" name="wds_slide_autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->target_attr_slide) ? '' : 'checked="checked"'); ?> value="0" />
1991
- <label <?php echo (($slide_row->target_attr_slide) ? '' : 'class="selected_color"'); ?> for="autoplay<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
1992
  <p class="description"> <b><?php _e('Important! ', WDS()->prefix); ?></b><?php _e('Some browsers only support autoplay in case videos are muted. Therefore, Slider by 10Web will automatically mute them on these browsers to trigger video autoplay.', WDS()->prefix); ?></p>
1993
  </div>
1994
  <div class="wd-group" id="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'EMBED_OEMBED_YOUTUBE_VIDEO' ? '' : 'style="display: none;"'; ?>>
1995
  <label class="wd-label"><?php _e('Youtube related video', WDS()->prefix); ?></label>
1996
  <input type="radio" id="youtube_rel_video<?php echo $slide_row->id; ?>1" name="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo (($slide_row->youtube_rel_video) ? 'checked="checked"' : ''); ?> value="1" />
1997
- <label <?php echo (($slide_row->youtube_rel_video) ? 'class="selected_color"' : ''); ?> for="youtube_rel_video<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1998
  <input type="radio" id="youtube_rel_video<?php echo $slide_row->id; ?>0" name="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo (($slide_row->youtube_rel_video) ? '' : 'checked="checked"'); ?> value="0" />
1999
- <label <?php echo (($slide_row->youtube_rel_video) ? '' : 'class="selected_color"'); ?> for="youtube_rel_video<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2000
  <p class="description"></p>
2001
  </div>
2002
  <div class="wd-group" id="video_loop<?php echo $slide_row->id; ?>" <?php echo ($slide_row->type == 'video' || $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
2003
  <label class="wd-label"><?php _e('Video Loop', WDS()->prefix); ?></label>
2004
  <input type="radio" id="video_loop<?php echo $slide_row->id; ?>1" name="video_loop<?php echo $slide_row->id; ?>" <?php echo (($slide_row->video_loop) ? 'checked="checked"' : ''); ?> value="1" />
2005
- <label <?php echo (($slide_row->video_loop) ? 'class="selected_color"' : ''); ?> for="video_loop<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
2006
  <input type="radio" id="video_loop<?php echo $slide_row->id; ?>0" name="video_loop<?php echo $slide_row->id; ?>" <?php echo (($slide_row->video_loop) ? '' : 'checked="checked"'); ?> value="0" />
2007
- <label <?php echo (($slide_row->video_loop) ? '' : 'class="selected_color"'); ?> for="video_loop<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2008
  <p class="description"></p>
2009
  </div>
2010
  <div class="wd-group" id="mute<?php echo $slide_row->id; ?>" <?php echo ($slide_row->type == 'video' || $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
2011
  <label class="wd-label"><?php _e('Mute', WDS()->prefix); ?></label>
2012
  <input type="radio" id="mute<?php echo $slide_row->id; ?>1" name="mute<?php echo $slide_row->id; ?>" <?php echo (($slide_row->mute) ? 'checked="checked"' : ''); ?> value="1" />
2013
- <label <?php echo (($slide_row->mute) ? 'class="selected_color"' : ''); ?> for="mute<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
2014
  <input type="radio" id="mute<?php echo $slide_row->id; ?>0" name="mute<?php echo $slide_row->id; ?>" <?php echo (($slide_row->mute) ? '' : 'checked="checked"'); ?> value="0" />
2015
- <label <?php echo (($slide_row->mute) ? '' : 'class="selected_color"'); ?> for="mute<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2016
  <p class="description"></p>
2017
  </div>
2018
  <div class="wd-group" id="trlink<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'image' ? '' : 'style="display: none;"'; ?>>
@@ -2574,9 +2577,9 @@ class SlidersView_wds extends AdminView_wds {
2574
  <span class="wd-group">
2575
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
2576
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
2577
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
2578
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?>/>
2579
- <label <?php echo ((!$new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
2580
  <p class="description"></p>
2581
  </span>
2582
  <span class="wd-group">
@@ -2869,9 +2872,9 @@ class SlidersView_wds extends AdminView_wds {
2869
  <span class="wd-group">
2870
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
2871
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
2872
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
2873
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
2874
- <label <?php echo (($new_layer['published']) ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
2875
  <p class="description"></p>
2876
  </span>
2877
 
@@ -3230,9 +3233,9 @@ class SlidersView_wds extends AdminView_wds {
3230
  <span class="wd-group">
3231
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3232
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3233
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3234
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3235
- <label <?php echo ((!$new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3236
  <p class="description"></p>
3237
  </span>
3238
  <span class="wd-group">
@@ -3276,17 +3279,17 @@ class SlidersView_wds extends AdminView_wds {
3276
  <span class="wd-group <?php echo $prefix; ?>_autoplay_td" <?php echo ($new_layer['target_attr_layer'] == "0" && $new_layer['videoType'] == 'upvideo') ? 'style="visibility:hidden"' : ''; ?>>
3277
  <label class="wd-label"><?php _e('Autoplay:', WDS()->prefix); ?></label>
3278
  <input id="<?php echo $prefix; ?>_image_scale1" type="radio" name="<?php echo $prefix; ?>_image_scale" value="on" <?php echo (($new_layer['image_scale'] == "on") ? 'checked="checked"' : ''); ?> />
3279
- <label <?php echo (($new_layer['image_scale'] == "on") ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_image_scale1"><?php _e('Yes', WDS()->prefix); ?></label>
3280
  <input id="<?php echo $prefix; ?>_image_scale0" type="radio" name="<?php echo $prefix; ?>_image_scale" value="off" <?php echo (($new_layer['image_scale'] == "on") ? '' : 'checked="checked"'); ?> />
3281
- <label <?php echo (($new_layer['image_scale'] == "on") ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_image_scale0"><?php _e('No', WDS()->prefix); ?></label>
3282
  <p class="description"></p>
3283
  </span>
3284
  <span class="wd-group" <?php echo ($new_layer['alt'] != 'EMBED_OEMBED_YOUTUBE_VIDEO') ? 'style="visibility:hidden"' : ''; ?>>
3285
  <label class="wd-label"><?php _e('Disable youtube related video:', WDS()->prefix); ?></label>
3286
  <input id="<?php echo $prefix; ?>_youtube_rel_layer_video1" type="radio" name="<?php echo $prefix; ?>_youtube_rel_layer_video" value="0" <?php echo ((!$new_layer['youtube_rel_layer_video']) ? 'checked="checked"' : ''); ?> />
3287
- <label <?php echo ((!$new_layer['youtube_rel_layer_video']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_youtube_rel_layer_video1"><?php _e('Yes', WDS()->prefix); ?></label>
3288
  <input id="<?php echo $prefix; ?>_youtube_rel_layer_video0" type="radio" name="<?php echo $prefix; ?>_youtube_rel_layer_video" value="1" <?php echo ((!$new_layer['youtube_rel_layer_video']) ? '' : 'checked="checked"'); ?> />
3289
- <label <?php echo (($new_layer['youtube_rel_layer_video']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_youtube_rel_layer_video0"><?php _e('No', WDS()->prefix); ?></label>
3290
  <p class="description"></p>
3291
  </span>
3292
  </div>
@@ -3476,9 +3479,9 @@ class SlidersView_wds extends AdminView_wds {
3476
  <span class="wd-group">
3477
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3478
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3479
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3480
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3481
- <label <?php echo ((!$new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3482
  <p class="description"></p>
3483
  </span>
3484
  <span class="wd-group">
@@ -3522,25 +3525,25 @@ class SlidersView_wds extends AdminView_wds {
3522
  <span class="wd-group">
3523
  <label class="wd-label"><?php _e('Video Loop:', WDS()->prefix); ?></label>
3524
  <input id="<?php echo $prefix; ?>_layer_video_loop1" type="radio" name="<?php echo $prefix; ?>_layer_video_loop" value="1" <?php echo (($new_layer['layer_video_loop']) ? 'checked="checked"' : ''); ?> />
3525
- <label <?php echo (($new_layer['layer_video_loop']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_layer_video_loop1"><?php _e('Yes', WDS()->prefix); ?></label>
3526
  <input id="<?php echo $prefix; ?>_layer_video_loop0" type="radio" name="<?php echo $prefix; ?>_layer_video_loop" value="0" <?php echo (($new_layer['layer_video_loop']) ? '' : 'checked="checked"'); ?> />
3527
- <label <?php echo ((!$new_layer['layer_video_loop']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_layer_video_loop0"><?php _e('No', WDS()->prefix); ?></label>
3528
  <p class="description"></p>
3529
  </span>
3530
  <span class="wd-group">
3531
  <label class="wd-label"><?php _e('Controls:', WDS()->prefix); ?></label>
3532
  <input id="<?php echo $prefix; ?>_target_attr_layer1" type="radio" onClick="wds_enable_disable_autoplay('visible', '<?php echo $prefix; ?>_autoplay_td', '<?php echo $prefix; ?>_target_attr_layer1')" name="<?php echo $prefix; ?>_controls" value="1" <?php echo (($new_layer['target_attr_layer'] == "1") ? 'checked="checked"' : ''); ?> />
3533
- <label <?php echo (($new_layer['target_attr_layer'] == "1") ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_target_attr_layer1"><?php _e('Yes', WDS()->prefix); ?></label>
3534
  <input id="<?php echo $prefix; ?>_target_attr_layer0" type="radio" onClick="wds_enable_disable_autoplay('hidden', '<?php echo $prefix; ?>_autoplay_td', '<?php echo $prefix; ?>_target_attr_layer0')" name="<?php echo $prefix; ?>_controls" value="0" <?php echo (($new_layer['target_attr_layer'] == "1") ? '' : 'checked="checked"'); ?> />
3535
- <label <?php echo (($new_layer['target_attr_layer'] == "1") ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_target_attr_layer0"><?php _e('No', WDS()->prefix); ?></label>
3536
  <p class="description"></p>
3537
  </span>
3538
  <span class="wd-group <?php echo $prefix; ?>_autoplay_td" <?php echo ($new_layer['target_attr_layer'] == "0" && $new_layer['videoType'] == 'upvideo') ? 'style="visibility:hidden"' : ''; ?>>
3539
  <label class="wd-label"><?php _e('Autoplay:', WDS()->prefix); ?></label>
3540
  <input id="<?php echo $prefix; ?>_image_scale1" type="radio" name="<?php echo $prefix; ?>_image_scale" value="on" <?php echo (($new_layer['image_scale'] == "on") ? 'checked="checked"' : ''); ?> />
3541
- <label <?php echo (($new_layer['image_scale'] == "on") ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_image_scale1"><?php _e('Yes', WDS()->prefix); ?></label>
3542
  <input id="<?php echo $prefix; ?>_image_scale0" type="radio" name="<?php echo $prefix; ?>_image_scale" value="off" <?php echo (($new_layer['image_scale'] == "on") ? '' : 'checked="checked"'); ?> />
3543
- <label <?php echo (($new_layer['image_scale'] == "on") ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_image_scale0"><?php _e('No', WDS()->prefix); ?></label>
3544
  <p class="description"></p>
3545
  </span>
3546
  </div>
@@ -3753,9 +3756,9 @@ class SlidersView_wds extends AdminView_wds {
3753
  <span class="wd-group">
3754
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3755
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3756
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3757
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3758
- <label <?php echo (($new_layer['published']) ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3759
  <p class="description"></p>
3760
  </span>
3761
  <span class="wd-group">
@@ -3802,8 +3805,10 @@ class SlidersView_wds extends AdminView_wds {
3802
  </span>
3803
  <span class="wd-group">
3804
  <label class="wd-label" title=""><?php _e('Show Hotspot text:', WDS()->prefix); ?></label>
3805
- <input type="radio" name="<?php echo $prefix; ?>_hotspot_text_display" id="<?php echo $prefix; ?>_hotspot_text_display_1" value="hover" <?php if ($new_layer['hotspot_text_display'] == 'hover') echo 'checked="checked"'; ?> /><label <?php echo $new_layer['hotspot_text_display'] == 'hover' ? 'class="selected_color"' : ''; ?> for="<?php echo $prefix; ?>_hotspot_text_display_1"><?php _e('On hover', WDS()->prefix); ?></label>
3806
- <input type="radio" name="<?php echo $prefix; ?>_hotspot_text_display" id="<?php echo $prefix; ?>_hotspot_text_display_0" value="click" <?php if ($new_layer['hotspot_text_display'] == 'click' ) echo 'checked="checked"'; ?> /><label <?php echo $new_layer['hotspot_text_display'] == 'click' ? 'class="selected_color"' : ''; ?> for="<?php echo $prefix; ?>_hotspot_text_display_0"><?php _e('On click', WDS()->prefix); ?></label>
 
 
3807
  <p class="description"><?php _e('Select between the option of always displaying the navigation buttons or only when hovered.', WDS()->prefix); ?></p>
3808
  </span>
3809
  <span class="wd-group">
@@ -3838,9 +3843,9 @@ class SlidersView_wds extends AdminView_wds {
3838
  <span class="wd-group">
3839
  <label class="wd-label"><?php _e('Hotspot Animation:', WDS()->prefix); ?></label>
3840
  <input id="<?php echo $prefix; ?>_hotspot_animation1" type="radio" name="<?php echo $prefix; ?>_hotspot_animation" value="1" <?php echo (($new_layer['hotspot_animation']) ? 'checked="checked"' : ''); ?> />
3841
- <label <?php echo (($new_layer['hotspot_animation']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_hotspot_animation1"><?php _e('Yes', WDS()->prefix); ?></label>
3842
  <input id="<?php echo $prefix; ?>_hotspot_animation0" type="radio" name="<?php echo $prefix; ?>_hotspot_animation" value="0" <?php echo (($new_layer['hotspot_animation']) ? '' : 'checked="checked"'); ?> />
3843
- <label <?php echo (($new_layer['hotspot_animation']) ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_hotspot_animation0"><?php _e('No', WDS()->prefix); ?></label>
3844
  <p class="description"></p>
3845
  </span>
3846
  <span class="wd-group">
@@ -4120,9 +4125,9 @@ class SlidersView_wds extends AdminView_wds {
4120
  <span class="wd-group">
4121
  <label class="wd-label"><?php _e('Published:', WDS()->prefix);?></label>
4122
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
4123
- <label <?php echo (($new_layer['published']) ? 'class="selected_color"' : ''); ?> for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix);?></label>
4124
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?>/>
4125
- <label <?php echo (($new_layer['published']) ? '' : 'class="selected_color"'); ?> for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix);?></label>
4126
  <p class="description"></p>
4127
  </span>
4128
  <span class="wd-group">
303
  <div class="wd-box-content">
304
  <span class="wd-group">
305
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width2" name="full_width" <?php echo (($row->full_width == '2' || $row->full_width == '') ? 'checked="checked"' : ''); ?> value="2" />
306
+ <label for="full_width2"><?php _e('Boxed layout', WDS()->prefix); ?></label>
307
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width1" name="full_width" <?php echo (($row->full_width == '1') ? 'checked="checked"' : ''); ?> value="1" />
308
+ <label for="full_width1"><?php _e('Full width', WDS()->prefix); ?></label>
309
  <input type="radio" onclick="hide_dimmension_ratio()" id="full_width0" name="full_width" <?php echo (($row->full_width == '0') ? 'checked="checked"' : ''); ?> value="0" />
310
+ <label for="full_width0"><?php _e('Custom', WDS()->prefix); ?></label>
311
  <p class="description full_width_desc" id="full_width2_desc"><?php _e('With Boxed layout, the slideshow will take the 100% width of its parent container.', WDS()->prefix); ?></p>
312
  <p class="description full_width_desc" id="full_width1_desc"><?php _e('The slider will take the full width of the page. Height will be applied based on the ratio of dimensions or auto height option.', WDS()->prefix); ?></p>
313
  <p class="description full_width_desc" id="full_width0_desc"><?php _e('This option lets you specify custom dimensions for your slider.', WDS()->prefix); ?></p>
315
  <span class="wd-group" id="auto_height">
316
  <label class="wd-label"><?php _e('Auto height', WDS()->prefix); ?></label>
317
  <input type="radio" onclick="hide_dimmension_ratio()" id="auto_height1" name="auto_height" <?php echo (($row->auto_height) ? 'checked="checked"' : ''); ?> value="1" />
318
+ <label for="auto_height1"><?php _e('Yes', WDS()->prefix); ?></label>
319
  <input type="radio" onclick="hide_dimmension_ratio()" id="auto_height0" name="auto_height" <?php echo (($row->auto_height) ? '' : 'checked="checked"'); ?> value="0" />
320
+ <label for="auto_height0"><?php _e('No', WDS()->prefix); ?></label>
321
  <p class="description"><?php _e('The slider will take the full height of the screen.', WDS()->prefix); ?></p>
322
  </span>
323
  <span class="wd-group" id="dimensions">
358
  <span class="wd-group" id="tr_smart_crop">
359
  <label class="wd-label"><?php _e('Smart Crop', WDS()->prefix); ?></label>
360
  <input onClick="wds_enable_disable('', 'tr_crop_pos', 'smart_crop1')" type="radio" id="smart_crop1" name="smart_crop" <?php echo (($row->smart_crop) ? 'checked="checked"' : ''); ?> value="1" />
361
+ <label for="smart_crop1"><?php _e('Yes', WDS()->prefix); ?></label>
362
  <input onClick="wds_enable_disable('none', 'tr_crop_pos', 'smart_crop0')" type="radio" id="smart_crop0" name="smart_crop" <?php echo (($row->smart_crop) ? '' : 'checked="checked"'); ?> value="0" />
363
+ <label for="smart_crop0"><?php _e('No', WDS()->prefix); ?></label>
364
  <p class="description"><?php _e('To use Smart Crop, please edit your slides and make sure Fillmode is set to Fill in Slide Options.', WDS()->prefix); ?></p>
365
  </span>
366
  <span class="wd-group" id="tr_crop_pos">
388
  <span class="wd-group">
389
  <label class="wd-label"><?php _e('Fixed background:', WDS()->prefix); ?></label>
390
  <input type="radio" id="fixed_bg1" name="fixed_bg" <?php echo (($row->fixed_bg) ? 'checked="checked"' : ''); ?> value="1" />
391
+ <label for="fixed_bg1"><?php _e('Yes', WDS()->prefix); ?></label>
392
  <input type="radio" id="fixed_bg0" name="fixed_bg" <?php echo (($row->fixed_bg) ? '' : 'checked="checked"'); ?> value="0" />
393
+ <label for="fixed_bg0"><?php _e('No', WDS()->prefix); ?></label>
394
  <p class="description"></p>
395
  </span>
396
  <span class="wd-group">
397
  <label class="wd-label"><?php _e('Slides order direction:', WDS()->prefix); ?></label>
398
  <input type="radio" id="order_dir1" name="order_dir" <?php echo checked('asc', $row->order_dir); ?> value="asc" />
399
+ <label for="order_dir1"><?php _e('Ascending', WDS()->prefix); ?></label>
400
  <input type="radio" id="order_dir0" name="order_dir" <?php checked('desc', $row->order_dir); ?> value="desc" />
401
+ <label for="order_dir0"><?php _e('Descending', WDS()->prefix); ?></label>
402
  <p class="description"></p>
403
  </span>
404
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>">
405
  <label class="wd-label"><?php _e('Parallax Effect', WDS()->prefix); ?></label>
406
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="parallax_effect1" name="parallax_effect" <?php echo (($row->parallax_effect) ? 'checked="checked"' : ''); ?> value="1" />
407
+ <label for="parallax_effect1"><?php _e('Yes', WDS()->prefix); ?></label>
408
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="parallax_effect0" name="parallax_effect" <?php echo (($row->parallax_effect) ? '' : 'checked="checked"'); ?> value="0" />
409
+ <label for="parallax_effect0"><?php _e('No', WDS()->prefix); ?></label>
410
  <p class="description"><?php _e('The direction of the movement, as well as the layer moving pace depend on the z-index value.', WDS()->prefix); ?></p>
411
  </span>
412
  <span class="wd-group">
413
  <label class="wd-label"><?php _e('Smart Load', WDS()->prefix); ?></label>
414
  <input type="radio" id="preload_images1" name="preload_images" <?php echo (($row->preload_images) ? 'checked="checked"' : ''); ?> value="1" />
415
+ <label for="preload_images1"><?php _e('Yes', WDS()->prefix); ?></label>
416
  <input type="radio" id="preload_images0" name="preload_images" <?php echo (($row->preload_images) ? '' : 'checked="checked"'); ?> value="0" />
417
+ <label for="preload_images0"><?php _e('No', WDS()->prefix); ?></label>
418
  <p class="description"><?php _e('Turn this option on to have faster loading for the first few images and process the rest meanwhile.', WDS()->prefix); ?></p>
419
  </span>
420
  <span class="wd-group">
421
  <label class="wd-label"><?php _e('Right click protection', WDS()->prefix); ?></label>
422
  <input type="radio" name="image_right_click" id="image_right_click_1" value="1" <?php if ($row->image_right_click) echo 'checked="checked"'; ?> />
423
+ <label for="image_right_click_1"><?php _e('Yes', WDS()->prefix); ?></label>
424
  <input type="radio" name="image_right_click" id="image_right_click_0" value="0" <?php if (!$row->image_right_click) echo 'checked="checked"'; ?> />
425
+ <label for="image_right_click_0"><?php _e('No', WDS()->prefix); ?></label>
426
  <p class="description"><?php _e('Disable right-click on slider images.', WDS()->prefix); ?></p>
427
  </span>
428
  <span class="wd-group<?php echo (WDS()->is_free ? ' wd-free' : ''); ?>">
429
  <label class="wd-label"><?php _e('Layer out on next', WDS()->prefix); ?></label>
430
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" name="layer_out_next" id="layer_out_next_1" value="1" <?php if ($row->layer_out_next) echo 'checked="checked"'; ?> />
431
+ <label for="layer_out_next_1"><?php _e('Yes', WDS()->prefix); ?></label>
432
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" name="layer_out_next" id="layer_out_next_0" value="0" <?php if (!$row->layer_out_next) echo 'checked="checked"'; ?> />
433
+ <label for="layer_out_next_0"><?php _e('No', WDS()->prefix); ?></label>
434
  <p class="description"><?php _e('Enable this option to have the layer effect out regardless of the timing between the hit to the next slider.', WDS()->prefix); ?></p>
435
  </span>
436
  <span class="wd-group">
437
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
438
  <input type="radio" id="published1" name="published" <?php echo (($row->published) ? 'checked="checked"' : ''); ?> value="1" />
439
+ <label for="published1"><?php _e('Yes', WDS()->prefix); ?></label>
440
  <input type="radio" id="published0" name="published" <?php echo (($row->published) ? '' : 'checked="checked"'); ?> value="0" />
441
+ <label for="published0"><?php _e('No', WDS()->prefix); ?></label>
442
  <p class="description"></p>
443
  </span>
444
  </div>
450
  <span class="wd-group">
451
  <label class="wd-label"><?php _e('Autoplay', WDS()->prefix); ?></label>
452
  <input type="radio" id="autoplay1" name="autoplay" <?php echo (($row->autoplay) ? 'checked="checked"' : ''); ?> value="1" />
453
+ <label for="autoplay1"><?php _e('Yes', WDS()->prefix); ?></label>
454
  <input type="radio" id="autoplay0" name="autoplay" <?php echo (($row->autoplay) ? '' : 'checked="checked"'); ?> value="0" />
455
+ <label for="autoplay0"><?php _e('No', WDS()->prefix); ?></label>
456
  <p class="description"><?php _e('Enable this option to autoplay the slider.', WDS()->prefix); ?></p>
457
  </span>
458
  <span class="wd-group">
463
  <span class="wd-group">
464
  <label class="wd-label"><?php _e('Enable loop', WDS()->prefix); ?></label>
465
  <input type="radio" id="slider_loop1" name="slider_loop" <?php echo (($row->slider_loop) ? 'checked="checked"' : ''); ?> value="1" />
466
+ <label for="slider_loop1"><?php _e('Yes', WDS()->prefix); ?></label>
467
  <input type="radio" id="slider_loop0" name="slider_loop" <?php echo (($row->slider_loop) ? '' : 'checked="checked"'); ?> value="0" />
468
+ <label for="slider_loop0"><?php _e('No', WDS()->prefix); ?></label>
469
  <p class="description"></p>
470
  </span>
471
  <span class="wd-group">
472
  <label class="wd-label"><?php _e('Shuffle', WDS()->prefix); ?></label>
473
  <input type="radio" id="shuffle1" name="shuffle" <?php echo (($row->shuffle) ? 'checked="checked"' : ''); ?> value="1" />
474
+ <label for="shuffle1"><?php _e('Yes', WDS()->prefix); ?></label>
475
  <input type="radio" id="shuffle0" name="shuffle" <?php echo (($row->shuffle) ? '' : 'checked="checked"'); ?> value="0" />
476
+ <label for="shuffle0"><?php _e('No', WDS()->prefix); ?></label>
477
  <p class="description"><?php _e('Enable this setting to have the slides change in random order during autoplay.', WDS()->prefix); ?></p>
478
  </span>
479
  <span class="wd-group">
480
  <label class="wd-label"><?php _e('Two way slideshow', WDS()->prefix); ?></label>
481
  <input type="radio" id="twoway_slideshow1" name="twoway_slideshow" <?php echo (($row->twoway_slideshow) ? 'checked="checked"' : ''); ?> value="1" />
482
+ <label for="twoway_slideshow1"><?php _e('Yes', WDS()->prefix); ?></label>
483
  <input type="radio" id="twoway_slideshow0" name="twoway_slideshow" <?php echo (($row->twoway_slideshow) ? '' : 'checked="checked"'); ?> value="0" />
484
+ <label for="twoway_slideshow0"><?php _e('No', WDS()->prefix); ?></label>
485
  <p class="description"><?php _e('If the user switches to previous slide, the slideshow starts to go backwards during autoplay.', WDS()->prefix); ?></p>
486
  </span>
487
  <span class="wd-group">
488
  <label class="wd-label"><?php _e('Stop on hover', WDS()->prefix); ?></label>
489
  <input type="radio" id="stop_animation1" name="stop_animation" <?php echo (($row->stop_animation) ? 'checked="checked"' : ''); ?> value="1" />
490
+ <label for="stop_animation1"><?php _e('Yes', WDS()->prefix); ?></label>
491
  <input type="radio" id="stop_animation0" name="stop_animation" <?php echo (($row->stop_animation) ? '' : 'checked="checked"'); ?> value="0" />
492
+ <label for="stop_animation0"><?php _e('No', WDS()->prefix); ?></label>
493
  <p class="description"><?php _e('The option works when autoplay is on.', WDS()->prefix); ?></p>
494
  </span>
495
  <span class="wd-group">
500
  <span class="wd-group">
501
  <label class="wd-label"><?php _e('Music', WDS()->prefix); ?></label>
502
  <input type="radio" id="music1" name="music" <?php echo (($row->music) ? 'checked="checked"' : ''); ?> value="1" onClick="wds_enable_disable('', 'tr_music_url', 'music1')" />
503
+ <label for="music1"><?php _e('Yes', WDS()->prefix); ?></label>
504
  <input type="radio" id="music0" name="music" <?php echo (($row->music) ? '' : 'checked="checked"'); ?> value="0" onClick="wds_enable_disable('none', 'tr_music_url', 'music0')" />
505
+ <label for="music0"><?php _e('No', WDS()->prefix); ?></label>
506
  <p class="description"><?php _e('You can have music/audio track playback with the slider.', WDS()->prefix); ?></p>
507
  </span>
508
  <span class="wd-group" id="tr_music_url">
578
  <span class="wd-group">
579
  <label class="wd-label"><?php _e('Carousel:', WDS()->prefix); ?></label>
580
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel1" name="carousel" <?php echo (($row->carousel) ? 'checked="checked"' : ''); ?> value="1" onClick="showhide_for_carousel_fildes(1)"/>
581
+ <label for="carousel1"><?php _e('Yes', WDS()->prefix); ?></label>
582
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel0" name="carousel" <?php echo (($row->carousel) ? '' : 'checked="checked"'); ?> value="0" onClick="showhide_for_carousel_fildes(0)"/>
583
+ <label for="carousel0"><?php _e('No', WDS()->prefix); ?></label>
584
  <p class="description"><?php _e('Use this option to activate Carousel feature. Note, that the effects you have selected in Global settings for your slider will not apply.', WDS()->prefix); ?></p>
585
  </span>
586
  <span class="wd-group">
596
  <span class="wd-group">
597
  <label class="wd-label"><?php _e('Container fit:', WDS()->prefix); ?></label>
598
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel_fit_containerWidth1" name="carousel_fit_containerWidth" <?php echo (($row->carousel_fit_containerWidth) ? 'checked="checked"' : ''); ?> value="1" />
599
+ <label for="carousel_fit_containerWidth1"><?php _e('Yes', WDS()->prefix); ?></label>
600
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="carousel_fit_containerWidth0" name="carousel_fit_containerWidth" <?php echo (($row->carousel_fit_containerWidth) ? '' : 'checked="checked"'); ?> value="0" />
601
+ <label for="carousel_fit_containerWidth0"><?php _e('No', WDS()->prefix); ?></label>
602
  <p class="description"></p>
603
  </span>
604
  </div>
640
  <span class="wd-group">
641
  <label class="wd-label"><?php _e('Next / Previous buttons:', WDS()->prefix); ?></label>
642
  <input type="radio" name="prev_next_butt" id="prev_next_butt_1" value="1" <?php if ($row->prev_next_butt) echo 'checked="checked"'; ?> />
643
+ <label for="prev_next_butt_1"><?php _e('Yes', WDS()->prefix); ?></label>
644
  <input type="radio" name="prev_next_butt" id="prev_next_butt_0" value="0" <?php if (!$row->prev_next_butt) echo 'checked="checked"'; ?> />
645
+ <label for="prev_next_butt_0"><?php _e('No', WDS()->prefix); ?></label>
646
  <p class="description"><?php _e('Enable this option to display Previous and Next buttons.', WDS()->prefix); ?></p>
647
  </span>
648
  <span class="wd-group">
649
  <label class="wd-label"><?php _e('Mouse swipe navigation:', WDS()->prefix); ?></label>
650
  <input type="radio" name="mouse_swipe_nav" id="mouse_swipe_nav_1" value="1" <?php if ($row->mouse_swipe_nav) echo 'checked="checked"'; ?> />
651
+ <label for="mouse_swipe_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
652
  <input type="radio" name="mouse_swipe_nav" id="mouse_swipe_nav_0" value="0" <?php if (!$row->mouse_swipe_nav) echo 'checked="checked"'; ?> />
653
+ <label for="mouse_swipe_nav_0"><?php _e('No', WDS()->prefix); ?></label>
654
  <p class="description"></p>
655
  </span>
656
  <span class="wd-group">
657
  <label class="wd-label"><?php _e('Touch swipe navigation:', WDS()->prefix); ?></label>
658
  <input type="radio" name="touch_swipe_nav" id="touch_swipe_nav_1" value="1" <?php if ($row->touch_swipe_nav) echo 'checked="checked"'; ?> />
659
+ <label for="touch_swipe_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
660
  <input type="radio" name="touch_swipe_nav" id="touch_swipe_nav_0" value="0" <?php if (!$row->touch_swipe_nav) echo 'checked="checked"'; ?> />
661
+ <label for="touch_swipe_nav_0"><?php _e('No', WDS()->prefix); ?></label>
662
  <p class="description"></p>
663
  </span>
664
  <span class="wd-group">
665
  <label class="wd-label"><?php _e('Mouse wheel navigation:', WDS()->prefix); ?></label>
666
  <input type="radio" name="mouse_wheel_nav" id="mouse_wheel_nav_1" value="1" <?php if ($row->mouse_wheel_nav) echo 'checked="checked"'; ?> />
667
+ <label for="mouse_wheel_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
668
  <input type="radio" name="mouse_wheel_nav" id="mouse_wheel_nav_0" value="0" <?php if (!$row->mouse_wheel_nav) echo 'checked="checked"'; ?> />
669
+ <label for="mouse_wheel_nav_0"><?php _e('No', WDS()->prefix); ?></label>
670
  <p class="description"></p>
671
  </span>
672
  <span class="wd-group">
673
  <label class="wd-label"><?php _e('Keyboard navigation:', WDS()->prefix); ?></label>
674
  <input type="radio" name="keyboard_nav" id="keyboard_nav_1" value="1" <?php if ($row->keyboard_nav) echo 'checked="checked"'; ?> />
675
+ <label for="keyboard_nav_1"><?php _e('Yes', WDS()->prefix); ?></label>
676
  <input type="radio" name="keyboard_nav" id="keyboard_nav_0" value="0" <?php if (!$row->keyboard_nav) echo 'checked="checked"'; ?> />
677
+ <label for="keyboard_nav_0"><?php _e('No', WDS()->prefix); ?></label>
678
  <p class="description"></p>
679
  </span>
680
  <span class="wd-group">
681
  <label class="wd-label"><?php _e('Show Navigation buttons:', WDS()->prefix); ?></label>
682
  <input type="radio" name="navigation" id="navigation_1" value="hover" <?php if ($row->navigation == 'hover') echo 'checked="checked"'; ?> />
683
+ <label for="navigation_1"><?php _e('On hover', WDS()->prefix); ?></label>
684
  <input type="radio" name="navigation" id="navigation_0" value="always" <?php if ($row->navigation == 'always' ) echo 'checked="checked"'; ?> />
685
+ <label for="navigation_0"><?php _e('Always', WDS()->prefix); ?></label>
686
  <p class="description"></p>
687
  </span>
688
  <span class="wd-group">
689
  <label class="wd-label"><?php _e('Image for Next / Previous buttons:', WDS()->prefix); ?></label>
690
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_our" value="our" <?php if ($row->rl_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('our')" />
691
+ <label for="rl_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
692
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_cust" value="custom" <?php if ($row->rl_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('custom')" />
693
+ <label for="rl_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
694
  <input type="radio" name="rl_butt_img_or_not" id="rl_butt_img_or_not_style" value="style" <?php if ($row->rl_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_next_prev_butt('style')" />
695
+ <label for="rl_butt_img_or_not_style"><?php _e('Styled', WDS()->prefix); ?></label>
696
  <input type="hidden" id="right_butt_url" name="right_butt_url" value="<?php echo $row->right_butt_url; ?>" />
697
  <input type="hidden" id="right_butt_hov_url" name="right_butt_hov_url" value="<?php echo $row->right_butt_hov_url; ?>" />
698
  <input type="hidden" id="left_butt_url" name="left_butt_url" value="<?php echo $row->left_butt_url; ?>" />
947
  <span class="wd-group">
948
  <label class="wd-label"><?php _e('Play / Pause button:', WDS()->prefix); ?></label>
949
  <input type="radio" name="play_paus_butt" id="play_paus_butt_1" value="1" <?php if ($row->play_paus_butt) echo 'checked="checked"'; ?> />
950
+ <label for="play_paus_butt_1"><?php _e('Yes', WDS()->prefix); ?></label>
951
  <input type="radio" name="play_paus_butt" id="play_paus_butt_0" value="0" <?php if (!$row->play_paus_butt) echo 'checked="checked"'; ?> />
952
+ <label for="play_paus_butt_0"><?php _e('No', WDS()->prefix); ?></label>
953
  <p class="description"><?php _e('Select this option to display Play and Pause buttons.', WDS()->prefix); ?></p>
954
  </span>
955
  <span class="wd-group">
956
  <label class="wd-label"><?php _e('Image for Play / Pause buttons:', WDS()->prefix); ?></label>
957
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_our" value="our" <?php if ($row->play_paus_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('our')" />
958
+ <label for="play_pause_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
959
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_cust" value="custom" <?php if ($row->play_paus_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('custom')" />
960
+ <label for="play_pause_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
961
  <input type="radio" name="play_paus_butt_img_or_not" id="play_pause_butt_img_or_not_select" value="style" <?php if ($row->play_paus_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_play_pause_butt('style')" />
962
+ <label for="play_pause_butt_img_or_not_select"><?php _e('Styled', WDS()->prefix); ?></label>
963
  <input type="hidden" id="play_butt_url" name="play_butt_url" value="<?php echo $row->play_butt_url; ?>" />
964
  <input type="hidden" id="play_butt_hov_url" name="play_butt_hov_url" value="<?php echo $row->play_butt_hov_url; ?>" />
965
  <input type="hidden" id="paus_butt_url" name="paus_butt_url" value="<?php echo $row->paus_butt_url; ?>" />
1240
  <span class="wd-group">
1241
  <label class="wd-label"><?php _e('Enable bullets:', WDS()->prefix); ?></label>
1242
  <input type="radio" id="enable_bullets1" name="enable_bullets" <?php echo (($row->enable_bullets) ? 'checked="checked"' : ''); ?> value="1" />
1243
+ <label for="enable_bullets1"><?php _e('Yes', WDS()->prefix); ?></label>
1244
  <input type="radio" id="enable_bullets0" name="enable_bullets" <?php echo (($row->enable_bullets) ? '' : 'checked="checked"'); ?> value="0" />
1245
+ <label for="enable_bullets0"><?php _e('No', WDS()->prefix); ?></label>
1246
  <p class="description"><?php _e('Enable navigation bullets with this option.', WDS()->prefix); ?></p>
1247
  </span>
1248
  <span class="wd-group">
1249
  <label class="wd-label"><?php _e('Show bullets:', WDS()->prefix); ?></label>
1250
  <input type="radio" name="bull_hover" id="bull_hover_0" value="0" <?php if ($row->bull_hover == 0) echo 'checked="checked"'; ?> />
1251
+ <label for="bull_hover_0"><?php _e('On hover', WDS()->prefix); ?></label>
1252
  <input type="radio" name="bull_hover" id="bull_hover_1" value="1" <?php if ($row->bull_hover == 1) echo 'checked="checked"'; ?> />
1253
+ <label for="bull_hover_1"><?php _e('Always', WDS()->prefix); ?></label>
1254
  <p class="description"><?php _e('You can display navigation bullets always or only when hovered.', WDS()->prefix); ?></p>
1255
  </span>
1256
  <span class="wd-group">
1257
  <label class="wd-label"><?php _e('Show thumbnail on bullet hover:', WDS()->prefix); ?></label>
1258
  <input onClick="wds_enable_disable('', 'tr_thumb_size', 'show_thumbnail1')" type="radio" id="show_thumbnail1" name="show_thumbnail" <?php echo (($row->show_thumbnail) ? 'checked="checked"' : ''); ?> value="1" />
1259
+ <label for="show_thumbnail1"><?php _e('Yes', WDS()->prefix); ?></label>
1260
  <input onClick="wds_enable_disable('none', 'tr_thumb_size', 'show_thumbnail0')" type="radio" id="show_thumbnail0" name="show_thumbnail" <?php echo (($row->show_thumbnail) ? '' : 'checked="checked"'); ?> value="0" />
1261
  <label for="show_thumbnail0"><?php _e('No', WDS()->prefix); ?></label>
1262
  <p class="description"></p>
1277
  <span class="wd-group">
1278
  <label class="wd-label"><?php _e('Bullets type:', WDS()->prefix); ?></label>
1279
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_our" value="our" <?php if ($row->bull_butt_img_or_not == 'our') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('our')" />
1280
+ <label for="bull_butt_img_or_not_our"><?php _e('Default', WDS()->prefix); ?></label>
1281
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_cust" value="custom" <?php if ($row->bull_butt_img_or_not == 'custom') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('custom')" />
1282
+ <label for="bull_butt_img_or_not_cust"><?php _e('Custom', WDS()->prefix); ?></label>
1283
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_stl" value="style" <?php if ($row->bull_butt_img_or_not == 'style') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('style')" />
1284
+ <label for="bull_butt_img_or_not_stl"><?php _e('Styled', WDS()->prefix); ?></label>
1285
  <input type="radio" name="bull_butt_img_or_not" id="bull_butt_img_or_not_txt" value="text" <?php if ($row->bull_butt_img_or_not == 'text') echo 'checked="checked"'; ?> onClick="image_for_bull_butt('text')" />
1286
+ <label for="bull_butt_img_or_not_txt"><?php _e('Text', WDS()->prefix); ?></label>
1287
  <input type="hidden" id="bullets_img_main_url" name="bullets_img_main_url" value="<?php echo $row->bullets_img_main_url; ?>" />
1288
  <input type="hidden" id="bullets_img_hov_url" name="bullets_img_hov_url" value="<?php echo $row->bullets_img_hov_url; ?>" />
1289
  <p class="description"></p>
1545
  <span class="wd-group">
1546
  <label class="wd-label"><?php _e('Enable filmstrip:', WDS()->prefix); ?></label>
1547
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="enable_filmstrip1" name="enable_filmstrip" <?php echo (($row->enable_filmstrip) ? 'checked="checked"' : ''); ?> value="1" />
1548
+ <label for="enable_filmstrip1"><?php _e('Yes', WDS()->prefix); ?></label>
1549
  <input <?php echo (WDS()->is_free ? 'disabled="disabled" title="' . __('This functionality is disabled in free version.', WDS()->prefix) . '"' : ''); ?> type="radio" id="enable_filmstrip0" name="enable_filmstrip" <?php echo (($row->enable_filmstrip) ? '' : 'checked="checked"'); ?> value="0" />
1550
+ <label for="enable_filmstrip0"><?php _e('No', WDS()->prefix); ?></label>
1551
  <p class="description"><?php _e('Enable this option to display thumbnails of the slides in a filmstrip.', WDS()->prefix); ?></p>
1552
  </span>
1553
  <span class="wd-group" id="filmstrip_small_screen">
1620
  <span class="wd-group">
1621
  <label class="wd-label"><?php _e('Enable timer bar:', WDS()->prefix); ?></label>
1622
  <input type="radio" id="enable_time_bar1" name="enable_time_bar" <?php echo (($row->enable_time_bar) ? 'checked="checked"' : ''); ?> value="1" />
1623
+ <label for="enable_time_bar1"><?php _e('Yes', WDS()->prefix); ?></label>
1624
  <input type="radio" id="enable_time_bar0" name="enable_time_bar" <?php echo (($row->enable_time_bar) ? '' : 'checked="checked"'); ?> value="0" />
1625
+ <label for="enable_time_bar0"><?php _e('No', WDS()->prefix); ?></label>
1626
  <p class="description"><?php _e('You can add a bar, which displays the time left untill the slider switches to the next slide on autoplay.', WDS()->prefix); ?></p>
1627
  </span>
1628
  <span class="wd-group">
1672
  <span class="wd-group" id="tr_built_in_watermark_type">
1673
  <label class="wd-label"><?php _e('Watermark type:', WDS()->prefix); ?></label>
1674
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_none" value="none" <?php if ($row->built_in_watermark_type == 'none') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_none')" />
1675
+ <label for="built_in_watermark_type_none"><?php _e('None', WDS()->prefix); ?></label>
1676
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_text" value="text" <?php if ($row->built_in_watermark_type == 'text') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_text')" onchange="preview_built_in_watermark()" />
1677
+ <label for="built_in_watermark_type_text"><?php _e('Text', WDS()->prefix); ?></label>
1678
  <input type="radio" name="built_in_watermark_type" id="built_in_watermark_type_image" value="image" <?php if ($row->built_in_watermark_type == 'image') echo 'checked="checked"'; ?> onClick="wds_built_in_watermark('watermark_type_image')" onchange="preview_built_in_watermark()" />
1679
+ <label for="built_in_watermark_type_image"><?php _e('Image', WDS()->prefix); ?></label>
1680
  <p class="description"><?php _e('Choose the kind of watermark you would like to use.', WDS()->prefix); ?></p>
1681
  </span>
1682
  <span class="wd-group" id="tr_built_in_watermark_url">
1966
  </div>
1967
  <div class="wd-group">
1968
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
1969
+ <input type="radio" id="published<?php echo $slide_row->id; ?>1" name="published<?php echo $slide_row->id; ?>" <?php echo (($slide_row->published) ? 'checked="checked"' : ''); ?> value="1" />
1970
+ <label for="published<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1971
+ <input type="radio" id="published<?php echo $slide_row->id; ?>0" name="published<?php echo $slide_row->id; ?>" <?php echo (($slide_row->published) ? '' : 'checked="checked"'); ?> value="0" />
1972
+ <label for="published<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
1973
  <p class="description"></p>
1974
  </div>
1975
  </div>
1981
  <div class="wd-group" id="controls<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'video' ? '' : 'style="display: none;"'; ?>>
1982
  <label class="wd-label"><?php _e('Controls', WDS()->prefix); ?></label>
1983
  <input type="radio" onClick="wds_enable_disable('', 'autoplay<?php echo $slide_row->id; ?>', 'controls<?php echo $slide_row->id; ?>1')" id="controls<?php echo $slide_row->id; ?>1" name="controls<?php echo $slide_row->id; ?>" <?php echo (($slide_row->link == '1' || empty($slide_row->link) ) ? 'checked="checked"' : ''); ?> value="1" />
1984
+ <label for="controls<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1985
  <input type="radio" onClick="wds_enable_disable('none', 'autoplay<?php echo $slide_row->id; ?>', 'controls<?php echo $slide_row->id; ?>0')" id="controls<?php echo $slide_row->id; ?>0" name="controls<?php echo $slide_row->id; ?>" <?php echo (($slide_row->link == "0") ? 'checked="checked"' : '' ); ?> value="0" />
1986
+ <label for="controls<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
1987
  <p class="description"></p>
1988
  </div>
1989
  <div class="wd-group" id="autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->type == 'video' && $slide_row->link == '1') || $slide_row->type == 'EMBED_OEMBED_YOUTUBE_VIDEO'|| $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
1990
  <label class="wd-label"><?php _e('Autoplay', WDS()->prefix); ?></label>
1991
  <input type="radio" id="autoplay<?php echo $slide_row->id; ?>1" name="wds_slide_autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->target_attr_slide) ? 'checked="checked"' : ''); ?> value="1" />
1992
+ <label for="autoplay<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
1993
  <input type="radio" id="autoplay<?php echo $slide_row->id; ?>0" name="wds_slide_autoplay<?php echo $slide_row->id; ?>" <?php echo (($slide_row->target_attr_slide) ? '' : 'checked="checked"'); ?> value="0" />
1994
+ <label for="autoplay<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
1995
  <p class="description"> <b><?php _e('Important! ', WDS()->prefix); ?></b><?php _e('Some browsers only support autoplay in case videos are muted. Therefore, Slider by 10Web will automatically mute them on these browsers to trigger video autoplay.', WDS()->prefix); ?></p>
1996
  </div>
1997
  <div class="wd-group" id="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'EMBED_OEMBED_YOUTUBE_VIDEO' ? '' : 'style="display: none;"'; ?>>
1998
  <label class="wd-label"><?php _e('Youtube related video', WDS()->prefix); ?></label>
1999
  <input type="radio" id="youtube_rel_video<?php echo $slide_row->id; ?>1" name="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo (($slide_row->youtube_rel_video) ? 'checked="checked"' : ''); ?> value="1" />
2000
+ <label for="youtube_rel_video<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
2001
  <input type="radio" id="youtube_rel_video<?php echo $slide_row->id; ?>0" name="youtube_rel_video<?php echo $slide_row->id; ?>" <?php echo (($slide_row->youtube_rel_video) ? '' : 'checked="checked"'); ?> value="0" />
2002
+ <label for="youtube_rel_video<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2003
  <p class="description"></p>
2004
  </div>
2005
  <div class="wd-group" id="video_loop<?php echo $slide_row->id; ?>" <?php echo ($slide_row->type == 'video' || $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
2006
  <label class="wd-label"><?php _e('Video Loop', WDS()->prefix); ?></label>
2007
  <input type="radio" id="video_loop<?php echo $slide_row->id; ?>1" name="video_loop<?php echo $slide_row->id; ?>" <?php echo (($slide_row->video_loop) ? 'checked="checked"' : ''); ?> value="1" />
2008
+ <label for="video_loop<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
2009
  <input type="radio" id="video_loop<?php echo $slide_row->id; ?>0" name="video_loop<?php echo $slide_row->id; ?>" <?php echo (($slide_row->video_loop) ? '' : 'checked="checked"'); ?> value="0" />
2010
+ <label for="video_loop<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2011
  <p class="description"></p>
2012
  </div>
2013
  <div class="wd-group" id="mute<?php echo $slide_row->id; ?>" <?php echo ($slide_row->type == 'video' || $slide_row->type == 'EMBED_OEMBED_VIMEO_VIDEO') ? '' : 'style="display: none;"'; ?>>
2014
  <label class="wd-label"><?php _e('Mute', WDS()->prefix); ?></label>
2015
  <input type="radio" id="mute<?php echo $slide_row->id; ?>1" name="mute<?php echo $slide_row->id; ?>" <?php echo (($slide_row->mute) ? 'checked="checked"' : ''); ?> value="1" />
2016
+ <label for="mute<?php echo $slide_row->id; ?>1"><?php _e('Yes', WDS()->prefix); ?></label>
2017
  <input type="radio" id="mute<?php echo $slide_row->id; ?>0" name="mute<?php echo $slide_row->id; ?>" <?php echo (($slide_row->mute) ? '' : 'checked="checked"'); ?> value="0" />
2018
+ <label for="mute<?php echo $slide_row->id; ?>0"><?php _e('No', WDS()->prefix); ?></label>
2019
  <p class="description"></p>
2020
  </div>
2021
  <div class="wd-group" id="trlink<?php echo $slide_row->id; ?>" <?php echo $slide_row->type == 'image' ? '' : 'style="display: none;"'; ?>>
2577
  <span class="wd-group">
2578
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
2579
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
2580
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
2581
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?>/>
2582
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
2583
  <p class="description"></p>
2584
  </span>
2585
  <span class="wd-group">
2872
  <span class="wd-group">
2873
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
2874
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
2875
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
2876
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
2877
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
2878
  <p class="description"></p>
2879
  </span>
2880
 
3233
  <span class="wd-group">
3234
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3235
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3236
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3237
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3238
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3239
  <p class="description"></p>
3240
  </span>
3241
  <span class="wd-group">
3279
  <span class="wd-group <?php echo $prefix; ?>_autoplay_td" <?php echo ($new_layer['target_attr_layer'] == "0" && $new_layer['videoType'] == 'upvideo') ? 'style="visibility:hidden"' : ''; ?>>
3280
  <label class="wd-label"><?php _e('Autoplay:', WDS()->prefix); ?></label>
3281
  <input id="<?php echo $prefix; ?>_image_scale1" type="radio" name="<?php echo $prefix; ?>_image_scale" value="on" <?php echo (($new_layer['image_scale'] == "on") ? 'checked="checked"' : ''); ?> />
3282
+ <label for="<?php echo $prefix; ?>_image_scale1"><?php _e('Yes', WDS()->prefix); ?></label>
3283
  <input id="<?php echo $prefix; ?>_image_scale0" type="radio" name="<?php echo $prefix; ?>_image_scale" value="off" <?php echo (($new_layer['image_scale'] == "on") ? '' : 'checked="checked"'); ?> />
3284
+ <label for="<?php echo $prefix; ?>_image_scale0"><?php _e('No', WDS()->prefix); ?></label>
3285
  <p class="description"></p>
3286
  </span>
3287
  <span class="wd-group" <?php echo ($new_layer['alt'] != 'EMBED_OEMBED_YOUTUBE_VIDEO') ? 'style="visibility:hidden"' : ''; ?>>
3288
  <label class="wd-label"><?php _e('Disable youtube related video:', WDS()->prefix); ?></label>
3289
  <input id="<?php echo $prefix; ?>_youtube_rel_layer_video1" type="radio" name="<?php echo $prefix; ?>_youtube_rel_layer_video" value="0" <?php echo ((!$new_layer['youtube_rel_layer_video']) ? 'checked="checked"' : ''); ?> />
3290
+ <label for="<?php echo $prefix; ?>_youtube_rel_layer_video1"><?php _e('Yes', WDS()->prefix); ?></label>
3291
  <input id="<?php echo $prefix; ?>_youtube_rel_layer_video0" type="radio" name="<?php echo $prefix; ?>_youtube_rel_layer_video" value="1" <?php echo ((!$new_layer['youtube_rel_layer_video']) ? '' : 'checked="checked"'); ?> />
3292
+ <label for="<?php echo $prefix; ?>_youtube_rel_layer_video0"><?php _e('No', WDS()->prefix); ?></label>
3293
  <p class="description"></p>
3294
  </span>
3295
  </div>
3479
  <span class="wd-group">
3480
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3481
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3482
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3483
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3484
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3485
  <p class="description"></p>
3486
  </span>
3487
  <span class="wd-group">
3525
  <span class="wd-group">
3526
  <label class="wd-label"><?php _e('Video Loop:', WDS()->prefix); ?></label>
3527
  <input id="<?php echo $prefix; ?>_layer_video_loop1" type="radio" name="<?php echo $prefix; ?>_layer_video_loop" value="1" <?php echo (($new_layer['layer_video_loop']) ? 'checked="checked"' : ''); ?> />
3528
+ <label for="<?php echo $prefix; ?>_layer_video_loop1"><?php _e('Yes', WDS()->prefix); ?></label>
3529
  <input id="<?php echo $prefix; ?>_layer_video_loop0" type="radio" name="<?php echo $prefix; ?>_layer_video_loop" value="0" <?php echo (($new_layer['layer_video_loop']) ? '' : 'checked="checked"'); ?> />
3530
+ <label for="<?php echo $prefix; ?>_layer_video_loop0"><?php _e('No', WDS()->prefix); ?></label>
3531
  <p class="description"></p>
3532
  </span>
3533
  <span class="wd-group">
3534
  <label class="wd-label"><?php _e('Controls:', WDS()->prefix); ?></label>
3535
  <input id="<?php echo $prefix; ?>_target_attr_layer1" type="radio" onClick="wds_enable_disable_autoplay('visible', '<?php echo $prefix; ?>_autoplay_td', '<?php echo $prefix; ?>_target_attr_layer1')" name="<?php echo $prefix; ?>_controls" value="1" <?php echo (($new_layer['target_attr_layer'] == "1") ? 'checked="checked"' : ''); ?> />
3536
+ <label for="<?php echo $prefix; ?>_target_attr_layer1"><?php _e('Yes', WDS()->prefix); ?></label>
3537
  <input id="<?php echo $prefix; ?>_target_attr_layer0" type="radio" onClick="wds_enable_disable_autoplay('hidden', '<?php echo $prefix; ?>_autoplay_td', '<?php echo $prefix; ?>_target_attr_layer0')" name="<?php echo $prefix; ?>_controls" value="0" <?php echo (($new_layer['target_attr_layer'] == "1") ? '' : 'checked="checked"'); ?> />
3538
+ <label for="<?php echo $prefix; ?>_target_attr_layer0"><?php _e('No', WDS()->prefix); ?></label>
3539
  <p class="description"></p>
3540
  </span>
3541
  <span class="wd-group <?php echo $prefix; ?>_autoplay_td" <?php echo ($new_layer['target_attr_layer'] == "0" && $new_layer['videoType'] == 'upvideo') ? 'style="visibility:hidden"' : ''; ?>>
3542
  <label class="wd-label"><?php _e('Autoplay:', WDS()->prefix); ?></label>
3543
  <input id="<?php echo $prefix; ?>_image_scale1" type="radio" name="<?php echo $prefix; ?>_image_scale" value="on" <?php echo (($new_layer['image_scale'] == "on") ? 'checked="checked"' : ''); ?> />
3544
+ <label for="<?php echo $prefix; ?>_image_scale1"><?php _e('Yes', WDS()->prefix); ?></label>
3545
  <input id="<?php echo $prefix; ?>_image_scale0" type="radio" name="<?php echo $prefix; ?>_image_scale" value="off" <?php echo (($new_layer['image_scale'] == "on") ? '' : 'checked="checked"'); ?> />
3546
+ <label for="<?php echo $prefix; ?>_image_scale0"><?php _e('No', WDS()->prefix); ?></label>
3547
  <p class="description"></p>
3548
  </span>
3549
  </div>
3756
  <span class="wd-group">
3757
  <label class="wd-label"><?php _e('Published:', WDS()->prefix); ?></label>
3758
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
3759
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix); ?></label>
3760
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?> />
3761
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix); ?></label>
3762
  <p class="description"></p>
3763
  </span>
3764
  <span class="wd-group">
3805
  </span>
3806
  <span class="wd-group">
3807
  <label class="wd-label" title=""><?php _e('Show Hotspot text:', WDS()->prefix); ?></label>
3808
+ <input type="radio" name="<?php echo $prefix; ?>_hotspot_text_display" id="<?php echo $prefix; ?>_hotspot_text_display_1" value="hover" <?php if ($new_layer['hotspot_text_display'] == 'hover') echo 'checked="checked"'; ?> />
3809
+ <label for="<?php echo $prefix; ?>_hotspot_text_display_1"><?php _e('On hover', WDS()->prefix); ?></label>
3810
+ <input type="radio" name="<?php echo $prefix; ?>_hotspot_text_display" id="<?php echo $prefix; ?>_hotspot_text_display_0" value="click" <?php if ($new_layer['hotspot_text_display'] == 'click' ) echo 'checked="checked"'; ?> />
3811
+ <label for="<?php echo $prefix; ?>_hotspot_text_display_0"><?php _e('On click', WDS()->prefix); ?></label>
3812
  <p class="description"><?php _e('Select between the option of always displaying the navigation buttons or only when hovered.', WDS()->prefix); ?></p>
3813
  </span>
3814
  <span class="wd-group">
3843
  <span class="wd-group">
3844
  <label class="wd-label"><?php _e('Hotspot Animation:', WDS()->prefix); ?></label>
3845
  <input id="<?php echo $prefix; ?>_hotspot_animation1" type="radio" name="<?php echo $prefix; ?>_hotspot_animation" value="1" <?php echo (($new_layer['hotspot_animation']) ? 'checked="checked"' : ''); ?> />
3846
+ <label for="<?php echo $prefix; ?>_hotspot_animation1"><?php _e('Yes', WDS()->prefix); ?></label>
3847
  <input id="<?php echo $prefix; ?>_hotspot_animation0" type="radio" name="<?php echo $prefix; ?>_hotspot_animation" value="0" <?php echo (($new_layer['hotspot_animation']) ? '' : 'checked="checked"'); ?> />
3848
+ <label for="<?php echo $prefix; ?>_hotspot_animation0"><?php _e('No', WDS()->prefix); ?></label>
3849
  <p class="description"></p>
3850
  </span>
3851
  <span class="wd-group">
4125
  <span class="wd-group">
4126
  <label class="wd-label"><?php _e('Published:', WDS()->prefix);?></label>
4127
  <input id="<?php echo $prefix; ?>_published1" type="radio" name="<?php echo $prefix; ?>_published" value="1" <?php echo (($new_layer['published']) ? 'checked="checked"' : ''); ?> />
4128
+ <label for="<?php echo $prefix; ?>_published1"><?php _e('Yes', WDS()->prefix);?></label>
4129
  <input id="<?php echo $prefix; ?>_published0" type="radio" name="<?php echo $prefix; ?>_published" value="0" <?php echo (($new_layer['published']) ? '' : 'checked="checked"'); ?>/>
4130
+ <label for="<?php echo $prefix; ?>_published0"><?php _e('No', WDS()->prefix);?></label>
4131
  <p class="description"></p>
4132
  </span>
4133
  <span class="wd-group">
css/wds_tables.css CHANGED
@@ -1487,7 +1487,7 @@ tbody .action_buttons {
1487
  width: 45% !important;
1488
  }
1489
 
1490
- .selected_color {
1491
  color:#00A2D0 !important;
1492
  }
1493
 
@@ -1969,7 +1969,9 @@ th.sorted a span {
1969
  margin-bottom: 10px;
1970
  padding: 0;
1971
  }
1972
-
 
 
1973
  .wd-group label,
1974
  .wd-group input[type=radio] {
1975
  margin-right: 5px;
1487
  width: 45% !important;
1488
  }
1489
 
1490
+ input[type="radio"]:checked + label {
1491
  color:#00A2D0 !important;
1492
  }
1493
 
1969
  margin-bottom: 10px;
1970
  padding: 0;
1971
  }
1972
+ .wd-group input[type=text] {
1973
+ min-width: 50px;
1974
+ }
1975
  .wd-group label,
1976
  .wd-group input[type=radio] {
1977
  margin-right: 5px;
js/wds.js CHANGED
@@ -9,6 +9,11 @@ jQuery(document).ready(function () {
9
  setDataFormElement();
10
 
11
  hide_dimmension_ratio();
 
 
 
 
 
12
  wds_whr('height');
13
 
14
  /* Ask a question menu link target _blank */
@@ -486,6 +491,11 @@ function wds_spider_ajax_save(form_id, event) {
486
  setDataSlideElement();
487
  setDataFormElement();
488
  hide_dimmension_ratio();
 
 
 
 
 
489
  showHowToTabBlock();
490
  });
491
  if (event.preventDefault) {
@@ -705,11 +715,7 @@ function wds_onload() {
705
  jQuery(this).find('.bull_col_src_right').attr('src', bull_col_src_right);
706
  }
707
  });
708
- jQuery('input:radio').on('change', function(){
709
- var radios = jQuery(this).closest('td').find('label').removeClass('selected_color');
710
- var label_for = jQuery("label[for='"+jQuery(this).attr('id')+"']");
711
- label_for.addClass('selected_color');
712
- });
713
  if ( !wds_object.is_free ) {
714
  wds_display_hotspot();
715
  wds_hotspot_position();
@@ -1474,32 +1480,36 @@ function change_bullets_src() {
1474
  }
1475
 
1476
  function image_for_next_prev_butt(display) {
 
 
 
 
 
 
 
 
 
 
 
 
 
1477
  switch (display) {
1478
  case 'our' : {
1479
  jQuery("#rl_butt_img_or_not_our").prop('checked', true);
1480
- jQuery("#right_left_butt_style").css('display', 'none');
1481
- jQuery("#right_butt_upl").css('display', 'none');
1482
- jQuery("#right_left_butt_select").css('display', '');
1483
- jQuery("#tr_butts_color").css('display', 'none');
1484
- jQuery("#tr_hover_color").css('display', 'none');
1485
  break;
1486
  }
1487
  case 'custom' : {
1488
  jQuery("#rl_butt_img_or_not_custom").prop('checked', true);
1489
- jQuery("#right_butt_upl").css('display', '');
1490
- jQuery("#right_left_butt_select").css('display', 'none');
1491
- jQuery("#right_left_butt_style").css('display', 'none');
1492
- jQuery("#tr_butts_color").css('display', 'none');
1493
- jQuery("#tr_hover_color").css('display', 'none');
1494
  break;
1495
  }
1496
  case 'style' : {
1497
  jQuery("#rl_butt_img_or_not_0").prop('checked', true);
1498
- jQuery("#right_butt_upl").css('display', 'none');
1499
- jQuery("#right_left_butt_select").css('display', 'none');
1500
- jQuery("#right_left_butt_style").css('display', '');
1501
- jQuery("#tr_butts_color").css('display', '');
1502
- jQuery("#tr_hover_color").css('display', '');
1503
  break;
1504
  }
1505
  default: {
@@ -1509,55 +1519,48 @@ function image_for_next_prev_butt(display) {
1509
  }
1510
 
1511
  function image_for_bull_butt(display) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  switch (display) {
1513
  case 'our' : {
1514
  jQuery("#bull_butt_img_or_not_our").prop('checked', true);
1515
- jQuery("#bullets_style").css('display', 'none');
1516
- jQuery("#bullets_images_cust").css('display', 'none');
1517
- jQuery("#bullets_images_select").css('display', '');
1518
- jQuery("#bullets_act_color").css('display', 'none');
1519
- jQuery("#bullets_color").css('display', 'none');
1520
- jQuery("#bullets_back_act_color").css('display', 'none');
1521
- jQuery("#bullets_back_color").css('display', 'none');
1522
- jQuery("#bullets_radius").css('display', 'none');
1523
  break;
1524
  }
1525
 
1526
  case 'custom' : {
1527
  jQuery("#bull_butt_img_or_not_cust").prop('checked', true);
1528
- jQuery("#bullets_images_cust").css('display', '');
1529
- jQuery("#bullets_images_select").css('display', 'none');
1530
- jQuery("#bullets_style").css('display', 'none');
1531
- jQuery("#bullets_act_color").css('display', 'none');
1532
- jQuery("#bullets_color").css('display', 'none');
1533
- jQuery("#bullets_back_act_color").css('display', 'none');
1534
- jQuery("#bullets_back_color").css('display', 'none');
1535
- jQuery("#bullets_radius").css('display', 'none');
1536
  break;
1537
  }
1538
 
1539
  case 'style' : {
1540
  jQuery("#bull_butt_img_or_not_stl").prop('checked', true);
1541
- jQuery("#bullets_images_select").css('display', 'none');
1542
- jQuery("#bullets_images_cust").css('display', 'none');
1543
- jQuery("#bullets_style").css('display', '');
1544
- jQuery("#bullets_act_color").css('display', '');
1545
- jQuery("#bullets_color").css('display', '');
1546
- jQuery("#bullets_back_act_color").css('display', 'none');
1547
- jQuery("#bullets_back_color").css('display', 'none');
1548
- jQuery("#bullets_radius").css('display', 'none');
1549
  break;
1550
  }
1551
- case 'text' : {
1552
  jQuery("#bull_butt_img_or_not_txt").prop('checked', true);
1553
- jQuery("#bullets_images_select").css('display', 'none');
1554
- jQuery("#bullets_images_cust").css('display', 'none');
1555
- jQuery("#bullets_style").css('display', 'none');
1556
- jQuery("#bullets_act_color").css('display', 'none');
1557
- jQuery("#bullets_color").css('display', '');
1558
- jQuery("#bullets_back_act_color").css('display', '');
1559
- jQuery("#bullets_back_color").css('display', '');
1560
- jQuery("#bullets_radius").css('display', '');
1561
  break;
1562
  }
1563
  default: {
@@ -1578,32 +1581,36 @@ function showhide_for_carousel_fildes(display) {
1578
  }
1579
 
1580
  function image_for_play_pause_butt(display) {
 
 
 
 
 
 
 
 
 
 
 
 
 
1581
  switch (display) {
1582
  case 'our' : {
1583
  jQuery("#play_pause_butt_img_or_not_our").prop('checked', true);
1584
- jQuery("#play_pause_butt_style").css('display', 'none');
1585
- jQuery("#play_pause_butt_cust").css('display', 'none');
1586
- jQuery("#play_pause_butt_select").css('display', '');
1587
- jQuery("#tr_butts_color").css('display', 'none');
1588
- jQuery("#tr_hover_color").css('display', 'none');
1589
  break;
1590
  }
1591
  case 'custom' : {
1592
  jQuery("#play_pause_butt_img_or_not_cust").prop('checked', true);
1593
- jQuery("#play_pause_butt_cust").css('display', '');
1594
- jQuery("#play_pause_butt_select").css('display', 'none');
1595
- jQuery("#play_pause_butt_style").css('display', 'none');
1596
- jQuery("#tr_butts_color").css('display', 'none');
1597
- jQuery("#tr_hover_color").css('display', 'none');
1598
  break;
1599
  }
1600
  case 'style' : {
1601
  jQuery("#play_pause_butt_img_or_not_style").prop('checked', true);
1602
- jQuery("#play_pause_butt_cust").css('display', 'none');
1603
- jQuery("#play_pause_butt_select").css('display', 'none');
1604
- jQuery("#play_pause_butt_style").css('display', '');
1605
- jQuery("#tr_butts_color").css('display', '');
1606
- jQuery("#tr_hover_color").css('display', '');
1607
  break;
1608
  }
1609
  default: {
@@ -1678,87 +1685,92 @@ function wds_media_uploader_add_slide(e, id, multiple) {
1678
  var supported_video_mime = ['video/mp4', 'audio/ogg', 'video/webm'];
1679
  var supported_audio_mime = ['audio/mpeg3', 'audio/ogg', 'audio/aac', 'audio/m4a', 'audio/f4a', 'audio/mp4'];
1680
  for (var i in attachment) {
1681
- if (jQuery.inArray(attachment[i].mime, supported_image_mime) == -1
1682
- && jQuery.inArray(attachment[i].mime, supported_video_mime) == -1) {
1683
- alert(wds.file_not_supported);
1684
- wds_media_uploader_add_slide(e);
1685
- return;
1686
- }
1687
- if ( wds_object.is_free ) {
1688
- if ( jQuery.inArray(attachment[i].mime, supported_video_mime) != -1 ) {
1689
- alert(wds_object.translate.video_disabled_in_free_version);
1690
  wds_media_uploader_add_slide(e);
1691
  return;
1692
  }
 
 
 
 
 
 
 
1693
  }
1694
  }
1695
  /* Delete active slide if it has no image. */
1696
  jQuery(".wds_box input[id^='image_url']").each(function () {
1697
  var slide_id = jQuery(this).attr("id").replace("image_url", "");
1698
- if (!jQuery("#image_url" + slide_id).val() && !jQuery("#slide" + slide_id + "_layer_ids_string").val()) {
1699
  wds_remove_slide(slide_id, 0);
1700
  }
1701
  });
1702
- for (var i in attachment) {
1703
- var slides_count = jQuery(".wbs_subtab div[id^='wbs_subtab']").length;
1704
- if (typeof id == "undefined") {
1705
- var new_slide_id = wds_add_slide();
1706
- }
1707
- else {
1708
- var new_slide_id = id;
1709
- }
1710
- if (jQuery.inArray(attachment[i].mime, supported_image_mime) != -1) { /* image */
1711
- var thumb_url = (attachment[i]['sizes'] && attachment[i]['sizes']['thumbnail']) ? attachment[i]['sizes']['thumbnail']['url'] : attachment[i]['url'];
1712
- jQuery("#wds_preview_image" + new_slide_id).css({
1713
- backgroundImage: 'url("' + attachment[i]['url'] + '")',
1714
- display: "inline-block"
1715
- });
1716
- jQuery("#wds_tab_image" + new_slide_id).css({
1717
- backgroundImage: 'url("' + attachment[i]['url'] + '")',
1718
- backgroundPosition: 'center'
1719
- });
1720
- jQuery("#type" + new_slide_id).val("image");
1721
- jQuery("#trlink" + new_slide_id).show();
1722
- jQuery("#controls" + new_slide_id).hide();
1723
- jQuery("#autoplay" + new_slide_id).hide();
1724
- jQuery("#video_loop" + new_slide_id).hide();
1725
- jQuery("#mute" + new_slide_id).hide();
1726
- }
1727
- else if (jQuery.inArray(attachment[i].mime, supported_video_mime) != -1) { /* video */
1728
- var thumb_url = WD_S_URL + '/images/no-video.png';
1729
- if (typeof attachment[i].image != "undefined") {
1730
- if (attachment[i].image.src.indexOf('media/video.png') == '-1') {
1731
- thumb_url = attachment[i].image.src;
 
 
 
1732
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1733
  }
1734
- jQuery("#att_width" + new_slide_id).val(attachment[i].width);
1735
- jQuery("#att_height" + new_slide_id).val(attachment[i].height);
1736
- jQuery("#post_id" + new_slide_id).val(attachment[i].id);
1737
- jQuery("#video_duration" + new_slide_id).val(attachment.fileLength);
1738
- jQuery("#wds_preview_image" + new_slide_id).css({
1739
- backgroundImage: 'url("' + thumb_url + '")',
1740
- backgroundSize: "cover",
1741
- width: "inherit",
1742
- height: "inherit",
1743
- display: "inline-block"
1744
- });
1745
- jQuery("#wds_tab_image" + new_slide_id).css({
1746
- backgroundImage: 'url("' + thumb_url + '")',
1747
- backgroundReapeat: 'no-repeat',
1748
- backgroundPosition: 'center',
1749
- });
1750
- jQuery("#type" + new_slide_id).val("video");
1751
- jQuery("#trlink" + new_slide_id).hide();
1752
- jQuery("#controls" + new_slide_id).show();
1753
- jQuery("#autoplay" + new_slide_id).show();
1754
- jQuery("#video_loop" + new_slide_id).show();
1755
- jQuery("#mute" + new_slide_id).show();
1756
- jQuery('#wds_fillmode_option-' + new_slide_id + ' .spider_options_cont').addClass('type_video');
1757
  }
1758
- jQuery("#image_url" + new_slide_id).val(attachment[i]['url']);
1759
- jQuery("#thumb_url" + new_slide_id).val(thumb_url);
1760
- jQuery("#delete_image_url" + new_slide_id).css("display", "inline-block");
1761
- jQuery("#youtube_rel_video" + new_slide_id).hide();
1762
  }
1763
  });
1764
  /* Open the uploader dialog. */
9
  setDataFormElement();
10
 
11
  hide_dimmension_ratio();
12
+
13
+ image_for_play_pause_butt();
14
+ image_for_next_prev_butt();
15
+ image_for_bull_butt();
16
+
17
  wds_whr('height');
18
 
19
  /* Ask a question menu link target _blank */
491
  setDataSlideElement();
492
  setDataFormElement();
493
  hide_dimmension_ratio();
494
+
495
+ image_for_play_pause_butt();
496
+ image_for_next_prev_butt();
497
+ image_for_bull_butt();
498
+
499
  showHowToTabBlock();
500
  });
501
  if (event.preventDefault) {
715
  jQuery(this).find('.bull_col_src_right').attr('src', bull_col_src_right);
716
  }
717
  });
718
+
 
 
 
 
719
  if ( !wds_object.is_free ) {
720
  wds_display_hotspot();
721
  wds_hotspot_position();
1480
  }
1481
 
1482
  function image_for_next_prev_butt(display) {
1483
+ if ( jQuery('.wds_settings_box [name=rl_butt_img_or_not]:checked').val() == 'our' ) {
1484
+ jQuery("#right_left_butt_style, #right_butt_upl, #tr_butts_color, #tr_hover_color").hide();
1485
+ jQuery("#right_left_butt_select").show();
1486
+ }
1487
+ if ( jQuery('.wds_settings_box [name=rl_butt_img_or_not]:checked').val() == 'custom' ) {
1488
+ jQuery("#right_left_butt_select, #right_left_butt_style, #tr_butts_color, #tr_hover_color").hide();
1489
+ jQuery("#right_butt_upl").show();
1490
+ }
1491
+ if ( jQuery('.wds_settings_box [name=rl_butt_img_or_not]:checked').val() == 'style' ) {
1492
+ jQuery("#right_butt_upl, #right_left_butt_select").hide();
1493
+ jQuery("#right_left_butt_style, #tr_butts_color, #tr_hover_color").show();
1494
+ }
1495
+
1496
  switch (display) {
1497
  case 'our' : {
1498
  jQuery("#rl_butt_img_or_not_our").prop('checked', true);
1499
+ jQuery("#right_left_butt_style, #right_butt_upl, #tr_butts_color, #tr_hover_color").hide();
1500
+ jQuery("#right_left_butt_select").show();
 
 
 
1501
  break;
1502
  }
1503
  case 'custom' : {
1504
  jQuery("#rl_butt_img_or_not_custom").prop('checked', true);
1505
+ jQuery("#right_left_butt_select, #right_left_butt_style, #tr_butts_color, #tr_hover_color").hide();
1506
+ jQuery("#right_butt_upl").show();
 
 
 
1507
  break;
1508
  }
1509
  case 'style' : {
1510
  jQuery("#rl_butt_img_or_not_0").prop('checked', true);
1511
+ jQuery("#right_butt_upl, #right_left_butt_select").hide();
1512
+ jQuery("#right_left_butt_style, #tr_butts_color, #tr_hover_color").show();
 
 
 
1513
  break;
1514
  }
1515
  default: {
1519
  }
1520
 
1521
  function image_for_bull_butt(display) {
1522
+ if ( jQuery('.wds_settings_box [name=bull_butt_img_or_not]:checked').val() == 'our' ) {
1523
+ jQuery("#bullets_style, #bullets_images_cust, #bullets_act_color, #bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1524
+ jQuery("#bullets_images_select").show();
1525
+ }
1526
+ if ( jQuery('.wds_settings_box [name=bull_butt_img_or_not]:checked').val() == 'custom' ) {
1527
+ jQuery("#bullets_images_select, #bullets_style, #bullets_act_color, #bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1528
+ jQuery("#bullets_images_cust").show();
1529
+ }
1530
+ if ( jQuery('.wds_settings_box [name=bull_butt_img_or_not]:checked').val() == 'style' ) {
1531
+ jQuery("#bullets_images_select, #bullets_images_cust, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1532
+ jQuery("#bullets_style, #bullets_act_color, #bullets_color").show();
1533
+ }
1534
+ if ( jQuery('.wds_settings_box [name=bull_butt_img_or_not]:checked').val() == 'text' ) {
1535
+ jQuery("#bullets_images_select, #bullets_images_select, #bullets_images_cust, #bullets_style, #bullets_act_color").hide();
1536
+ jQuery("#bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").show();
1537
+ }
1538
+
1539
  switch (display) {
1540
  case 'our' : {
1541
  jQuery("#bull_butt_img_or_not_our").prop('checked', true);
1542
+ jQuery("#bullets_style, #bullets_images_cust, #bullets_act_color, #bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1543
+ jQuery("#bullets_images_select").show();
 
 
 
 
 
 
1544
  break;
1545
  }
1546
 
1547
  case 'custom' : {
1548
  jQuery("#bull_butt_img_or_not_cust").prop('checked', true);
1549
+ jQuery("#bullets_images_select, #bullets_style, #bullets_act_color, #bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1550
+ jQuery("#bullets_images_cust").show();
 
 
 
 
 
 
1551
  break;
1552
  }
1553
 
1554
  case 'style' : {
1555
  jQuery("#bull_butt_img_or_not_stl").prop('checked', true);
1556
+ jQuery("#bullets_images_select, #bullets_images_cust, #bullets_back_act_color, #bullets_back_color, #bullets_radius").hide();
1557
+ jQuery("#bullets_style, #bullets_act_color, #bullets_color").show();
 
 
 
 
 
 
1558
  break;
1559
  }
1560
+ case 'text' : {
1561
  jQuery("#bull_butt_img_or_not_txt").prop('checked', true);
1562
+ jQuery("#bullets_images_select, #bullets_images_select, #bullets_images_cust, #bullets_style, #bullets_act_color").hide();
1563
+ jQuery("#bullets_color, #bullets_back_act_color, #bullets_back_color, #bullets_radius").show();
 
 
 
 
 
 
1564
  break;
1565
  }
1566
  default: {
1581
  }
1582
 
1583
  function image_for_play_pause_butt(display) {
1584
+ if ( jQuery('.wds_settings_box [name=play_paus_butt_img_or_not]:checked').val() == 'our' ) {
1585
+ jQuery("#play_pause_butt_style, #play_pause_butt_cust, #tr_butts_color, #tr_hover_color").hide();
1586
+ jQuery("#play_pause_butt_select").show();
1587
+ }
1588
+ if ( jQuery('.wds_settings_box [name=play_paus_butt_img_or_not]:checked').val() == 'custom' ) {
1589
+ jQuery("#play_pause_butt_select, #play_pause_butt_style, #tr_butts_color, #tr_hover_color").hide();
1590
+ jQuery("#play_pause_butt_cust").show();
1591
+ }
1592
+ if ( jQuery('.wds_settings_box [name=play_paus_butt_img_or_not]:checked').val() == 'style' ) {
1593
+ jQuery("#play_pause_butt_cust, #play_pause_butt_select").hide();
1594
+ jQuery("#tr_butts_color, #tr_hover_color, #play_pause_butt_style").show();
1595
+ }
1596
+
1597
  switch (display) {
1598
  case 'our' : {
1599
  jQuery("#play_pause_butt_img_or_not_our").prop('checked', true);
1600
+ jQuery("#play_pause_butt_style, #play_pause_butt_cust, #tr_butts_color, #tr_hover_color").hide();
1601
+ jQuery("#play_pause_butt_select").show();
 
 
 
1602
  break;
1603
  }
1604
  case 'custom' : {
1605
  jQuery("#play_pause_butt_img_or_not_cust").prop('checked', true);
1606
+ jQuery("#play_pause_butt_select, #play_pause_butt_style, #tr_butts_color, #tr_hover_color").hide();
1607
+ jQuery("#play_pause_butt_cust").show();
 
 
 
1608
  break;
1609
  }
1610
  case 'style' : {
1611
  jQuery("#play_pause_butt_img_or_not_style").prop('checked', true);
1612
+ jQuery("#play_pause_butt_cust, #play_pause_butt_select").hide();
1613
+ jQuery("#tr_butts_color, #tr_hover_color, #play_pause_butt_style").show();
 
 
 
1614
  break;
1615
  }
1616
  default: {
1685
  var supported_video_mime = ['video/mp4', 'audio/ogg', 'video/webm'];
1686
  var supported_audio_mime = ['audio/mpeg3', 'audio/ogg', 'audio/aac', 'audio/m4a', 'audio/f4a', 'audio/mp4'];
1687
  for (var i in attachment) {
1688
+ /* In some case (found from support) attachment[i].mime was typed 2 times - with correct value and with 'undefined'. */
1689
+ if ( typeof attachment[i].mime != 'undefined') {
1690
+ if ( jQuery.inArray(attachment[i].mime, supported_image_mime) == -1 && jQuery.inArray(attachment[i].mime, supported_video_mime) == -1 ) {
1691
+ alert(wds.file_not_supported);
 
 
 
 
 
1692
  wds_media_uploader_add_slide(e);
1693
  return;
1694
  }
1695
+ if ( wds_object.is_free ) {
1696
+ if ( jQuery.inArray(attachment[i].mime, supported_video_mime) != -1 ) {
1697
+ alert(wds_object.translate.video_disabled_in_free_version);
1698
+ wds_media_uploader_add_slide(e);
1699
+ return;
1700
+ }
1701
+ }
1702
  }
1703
  }
1704
  /* Delete active slide if it has no image. */
1705
  jQuery(".wds_box input[id^='image_url']").each(function () {
1706
  var slide_id = jQuery(this).attr("id").replace("image_url", "");
1707
+ if ( !jQuery("#image_url" + slide_id).val() && !jQuery("#slide" + slide_id + "_layer_ids_string").val() ) {
1708
  wds_remove_slide(slide_id, 0);
1709
  }
1710
  });
1711
+ for ( var i in attachment ) {
1712
+ /* In some case (found from support) attachment[i].mime was typed 2 times - with correct value and with 'undefined'. */
1713
+ if ( typeof attachment[i].mime != 'undefined') {
1714
+ var slides_count = jQuery(".wbs_subtab div[id^='wbs_subtab']").length;
1715
+ if ( typeof id == "undefined" ) {
1716
+ var new_slide_id = wds_add_slide();
1717
+ }
1718
+ else {
1719
+ var new_slide_id = id;
1720
+ }
1721
+ if ( jQuery.inArray(attachment[i].mime, supported_image_mime) != -1 ) { /* image */
1722
+ var thumb_url = (attachment[i]['sizes'] && attachment[i]['sizes']['thumbnail']) ? attachment[i]['sizes']['thumbnail']['url'] : attachment[i]['url'];
1723
+ jQuery("#wds_preview_image" + new_slide_id).css({
1724
+ backgroundImage: 'url("' + attachment[i]['url'] + '")',
1725
+ display: "inline-block"
1726
+ });
1727
+ jQuery("#wds_tab_image" + new_slide_id).css({
1728
+ backgroundImage: 'url("' + attachment[i]['url'] + '")',
1729
+ backgroundPosition: 'center'
1730
+ });
1731
+ jQuery("#type" + new_slide_id).val("image");
1732
+ jQuery("#trlink" + new_slide_id).show();
1733
+ jQuery("#controls" + new_slide_id).hide();
1734
+ jQuery("#autoplay" + new_slide_id).hide();
1735
+ jQuery("#video_loop" + new_slide_id).hide();
1736
+ jQuery("#mute" + new_slide_id).hide();
1737
+ }
1738
+ else if (jQuery.inArray(attachment[i].mime, supported_video_mime) != -1) { /* video */
1739
+ var thumb_url = WD_S_URL + '/images/no-video.png';
1740
+ if ( typeof attachment[i].image != "undefined" ) {
1741
+ if ( attachment[i].image.src.indexOf('media/video.png') == '-1' ) {
1742
+ thumb_url = attachment[i].image.src;
1743
+ }
1744
  }
1745
+ jQuery("#att_width" + new_slide_id).val(attachment[i].width);
1746
+ jQuery("#att_height" + new_slide_id).val(attachment[i].height);
1747
+ jQuery("#post_id" + new_slide_id).val(attachment[i].id);
1748
+ jQuery("#video_duration" + new_slide_id).val(attachment.fileLength);
1749
+ jQuery("#wds_preview_image" + new_slide_id).css({
1750
+ backgroundImage: 'url("' + thumb_url + '")',
1751
+ backgroundSize: "cover",
1752
+ width: "inherit",
1753
+ height: "inherit",
1754
+ display: "inline-block"
1755
+ });
1756
+ jQuery("#wds_tab_image" + new_slide_id).css({
1757
+ backgroundImage: 'url("' + thumb_url + '")',
1758
+ backgroundReapeat: 'no-repeat',
1759
+ backgroundPosition: 'center',
1760
+ });
1761
+ jQuery("#type" + new_slide_id).val("video");
1762
+ jQuery("#trlink" + new_slide_id).hide();
1763
+ jQuery("#controls" + new_slide_id).show();
1764
+ jQuery("#autoplay" + new_slide_id).show();
1765
+ jQuery("#video_loop" + new_slide_id).show();
1766
+ jQuery("#mute" + new_slide_id).show();
1767
+ jQuery('#wds_fillmode_option-' + new_slide_id + ' .spider_options_cont').addClass('type_video');
1768
  }
1769
+ jQuery("#image_url" + new_slide_id).val(attachment[i]['url']);
1770
+ jQuery("#thumb_url" + new_slide_id).val(thumb_url);
1771
+ jQuery("#delete_image_url" + new_slide_id).css("display", "inline-block");
1772
+ jQuery("#youtube_rel_video" + new_slide_id).hide();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1773
  }
 
 
 
 
1774
  }
1775
  });
1776
  /* Open the uploader dialog. */
readme.txt CHANGED
@@ -4,1174 +4,6 @@ Tags: responsive slider, slider, slideshow, wordpress slider, image slider, gall
4
  Requires at least: 3.4
5
  Tested up to: 5.8
6
  Requires PHP: 5.2
7
- Stable tag: 1.2.48
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
-
11
- Slider by 10Web plugin is the perfect slider solution for Wordpress. Create a great responsive slideshow, image slider, layer slider, video slider and post slider with Slider by 10Web.
12
-
13
- == Description ==
14
-
15
-
16
- https://www.youtube.com/watch?v=xebpM_-GwG0
17
-
18
- = Useful Links: =
19
- [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
20
- [WordPress Slider Plugin](https://10web.io/plugins/wordpress-slider/)
21
- [Demo](https://demo.10web.io/slider/)
22
- [User Manual](https://docs.10web.io/docs/slider-wd/indroduction.html)
23
- [Support Forum](https://wordpress.org/support/plugin/slider-wd)
24
-
25
-
26
- Slider by 10Web is a versatile solution to help you add fast loading, responsive and SEO-friendly sliders to your website pages, posts, theme header or any other location. The plugin supports both images and videos on the slides, which further could be spiced up with various transition effects. Filmstrip, carousel and parallax effects of Premium version will have your slides look even better. You can create multi-functional sliders in Premium version, by applying text, image, video, hotspot and social media button layers to the slides. Every feature of the slides, from text size, navigation buttons to slide loading icon, can be customized, giving you a myriad of options to experiment with style and design. It’s by far the easiest solution to create beautiful sliders, which you can add to your website with a shortcode, by inserting into the theme using the PHP function or through widget. Slider by 10Web supports swipe control to make sure your slides look great on touchscreen devices. If you’re looking for power-packed slider plugin which is also user-friendly, go ahead, download it and test the plugin yourself.
27
-
28
- == Benefits ==
29
- * **User engagement** - Sliders are engaging. Once you add beautiful slides to your posts or pages with some high quality images and appealing styling, you may observe improved user engagement rates.
30
- * **Better user experience** - With its swipe control support Slider by 10Web will provide better user experience on your website. No matter the device or the screen size you can make sure your slides will perform as they should.
31
- * **Differentiation** - From simple text color and fonts, to hotspot animation and effect duration, there are almost unlimited styling options you can try. Factor in support for custom CSS and you will have more space and flexibility with the styling of your sliders.
32
- * **High level of personalization** - One of the best things about Slider by 10Web is its flexibility! You can adjust and customize every aspect of your slides.You can play with all the features of the slides and have them match with your website’s design and overall look and feel.
33
- * **Grabbing users’ attention** - Since the sliders can be basically placed anywhere on your website, it’s a great way to bring attention to any information you want to highlight. Whether it’s an announcement, new post, or just one of your recent video tutorials, you can make sure it will catch the eye.
34
- * **Easy to set up, use and customize** - Plugin was developed with users in mind. Anyone from beginners to WordPress profs will be able to easily create and customize the sliders without any coding skills.
35
- * **Get Support** - Ger timely and effective support to all its users. We keep standards high and response time low.
36
-
37
-
38
- == What’s in it ==
39
-
40
- = UNLIMITED SLIDES AND SLIDERS =
41
-
42
- Slider by 10Web allows you to add unlimited number of sliders to your website with as many slides as you want. Easily insert the sliders to any of your posts or pages with the generated shortcode.
43
-
44
-
45
- = MULTIPLE LAYERS =
46
-
47
- The Premium version allows for creation of multi-functional sliders using the available image, text, video , social media and hotspot layers. Apart from uploading video files from your pc, you can also embed media from YouTube, Vimeo, Instagram, Flickr or Dailymotion using the file’s URL.
48
-
49
-
50
- = MULTIPLE TRANSITION AND LAYER EFFECTS =
51
-
52
- Slider by 10Web Premium version offers 27 slide transition and 38 mind-blowing layer effects to give your slides a distinct look. You can specify the start/end point of the effects, as well as specify the effect duration.
53
-
54
-
55
- = IMAGE WATERMARKING =
56
-
57
- Add text and image watermarks to your slides, by selecting the size, transparency, and one of the available nine watermark positions.
58
-
59
- = SOCIAL SHARING BUTTONS =
60
-
61
- Add a social sharing buttons’ layer to your slides in Premium version. You can customize almost every aspect of the buttons and enable your visitors to share your slides across the major social media platforms, like Facebook, Google +, Twitter, Pinterest and Tumbler.
62
-
63
- = PARALLAX AND CAROUSEL SUPPORT =
64
-
65
- Premium version adds Parallax and carousel support. You can set to display the slides in carousel view, which shows the main image at the foreground, while having the rest of the images at the background. The parallax effect will create modern 3D-like effects on the slides and take them to the next level.
66
-
67
- = SLIDER EXPORT/IMPORT =
68
-
69
- If you want to export/import your slides from one website to another, that’s absolutely doable with Slider by 10Web Premium version. You can choose to transfer the slider with pictures and settings, or you can transfer only the settings of the slider and then add your images afterwards.
70
-
71
- = SETTINGS/CUSTOMIZATION =
72
- *Some customizations described here are available in Premium version. Please refer to feature summary for additional info.
73
-
74
- Slider by 10Web has an intuitive drag and drop interface, which makes it easy to create, organize and customize your slides. All the slider options as well as the plugin overview is available at the admin panel. This is basically where you can create the sliders and make the necessary changes as you go. Under the plugin’s global options, you’ll find the default options for layers and some other general settings, such as enabling Slider by 10Web media upload, choosing the loading icon,adding font families, etc. All the other options for customizing the slides can be found under the sliders section, the place where you can actually start adding new slides. The user friendly interface lets you easily add images and videos to the slides, as well as embed media from popular social platforms. Beneath the added slides you’ll find the available layers that you can apply to them, each of the layers coming with its own set of settings. Before you save the final version of the slide you can preview all the changes you’ve made. At the top of the page,you’ll also find a settings icon,where you can configure the settings for the slider you’re working on. From this section you can activate carousel view, give custom styling to bullets and buttons, adjust settings for filmstrip view, as well as configure the settings for watermarking. Also, you can add custom CSS to the slides for the additional styling features.
75
-
76
-
77
- [Premium version adds](https://10web.io/plugins/wordpress-slider/)
78
-
79
- * 27 Transition effects for slider
80
- * 38 Layer effects
81
- * Support for posts in the slides
82
- * Video Slide support (YouTube slider and Vimeo slider)
83
- * Dailymotion, Instagram and Flickr embed
84
- * Layers (text, image and media embed)- Video Manual
85
- * Social sharing buttons layer (Google+, Tumblr, Twitter, Pinterest and Facebook)
86
- * Hotspot layer
87
- * Filmstrip support
88
- * Custom styles for navigation buttons/bullets
89
- * Support for Parallax Slider
90
- * Support for Carousel effect
91
- * Video Slide and layer (mp4)
92
- * Slider Export/Import.
93
-
94
-
95
- ###IMPORTANT:
96
- If you think you found a bug in Slider by 10Web or have any problem/question concerning the plugin, please check out [WordPress Slider Support Forum](https://wordpress.org/support/plugin/slider-wd) in our website. If you do not find a solution here, do not hesitate to [click here to contact us](https://10web.io/contact-us/).
97
-
98
-
99
- == Installation ==
100
-
101
- #### Thank you for your interest in Slider by 10Web.
102
-
103
- **Installing via WordPress**
104
- Follow the steps below to install Slider by 10Web to your website.
105
- Log-in to your WordPress administrator panel.
106
- Select Plugins page from toolbar menu, click Add New.
107
- Search for Slider by 10Web in the right-top search bar if you want to download the Free version or click Upload Plugin button > “Choose file” (“Browse”) and select the Slider by 10Web zip file if you are installing the Professional version of Slider by 10Web.
108
-
109
- For Mac Users
110
- Go to your Downloads folder and locate the folder with the Slider by 10Web. Right-click on the folder and select Compress. This will create a .zip file which can be installed as described below:
111
- Click “Upload & Install” button.
112
- Click “Activate Plugin” button for activating the plugin.
113
-
114
- **Installing via FTP**
115
-
116
- Login to your hosting space via an FTP software, e.g. FileZilla.
117
- Unzip the downloaded Slider by 10Web plugin folder without making any changes to the folder.
118
- Upload the Slider by 10Web plugin into the following location wp-content>wp-plugins.
119
- Login to the WordPress Administrator Panel.
120
- Activate Slider by 10Web by going to Plugins and pressing Activate button.
121
-
122
- If any problem occurs with installation of Slider by 10Web, [please let us know](https://10web.io/contact-us/).
123
-
124
- == Frequently Asked Questions ==
125
-
126
- = What can I achieve with Slider by 10Web plugin? =
127
-
128
- WordPress Slider plugin is a user-friendly tool which helps you create unlimited responsive sliders for your website.
129
-
130
- It lets you add images, videos, posts and other media as slides or layers. Configure the numerous useful options and showcase your slider on a WordPress **page, post, widget area** or a **custom PHP** template.
131
-
132
- Include **YouTube, Vimeo,** as well as **self-hosted** videos to your slideshow with just a few clicks. Video autoplay feature of Slider plugin lets you provide a modern user interface for the visitors of your website.
133
-
134
- Enrich the display of your slides with **6 amazing layer features,** such as text, image and video layers, other media, social buttons, and hotspots. WordPress Slider plugin provides various aesthetic **transition effects** for slides and layers, letting you advance your slideshow to a whole new level.
135
-
136
- Using this WordPress Slider plugin, you can turn your slideshow into **a posts slider** using your website posts. Furthermore, you can create an interactive slideshow by linking any slide to an internal or external web page.
137
-
138
- Powered by modern technology, WordPress Slider plugin will help you build amazing sliders without having to code a single line. You can create the following types of CSS3 slider with wonderful autoplay feature:
139
-
140
- * cycle slider,
141
- * free video slideshow (specifically TouTube slideshow and vimeo slideshow),
142
- * product carousel,
143
- * Javascript slideshow,
144
- * photo slideshow,
145
- * testimonial slider,
146
- * content slideshow,
147
- * simple image rotator,
148
- * video gallery and more.
149
-
150
- You can display images slider with different elegant animations. This slideshow plugin allows you to display your portfolio images, videos in a modern slider gallery.
151
-
152
- The options to create these slideshows are infinite. For instance, if you wish to create a simple PDF slider, you can use text layers and image layers on a white background image, and thus showcase your content slider in a PDF-like style.
153
-
154
- Or, you can turn the slider into a Woocommerce slider by adding links to Woocommerce product pages.
155
-
156
- = How can I add images to slider? =
157
-
158
- Press **Add Slides** button below **Slider Title** to add an item to your banner rotator. You will access **WordPress Media Library,** which lets you use existing images or upload new media.
159
-
160
- Upload the images and videos you wish to add or browse items from WordPress Media Library. You can select a single item by clicking on it, or choose multiple by pressing and holding **Shift** or **Control** keys on your keyboard.
161
-
162
- After choosing the images and videos for your image carousel or cycle slider, press **Add to Slider** button.
163
-
164
- When the slides are added, you will be able to see the list of their thumbnails which help you to easily navigate through slides. Each thumbnail has its own set of buttons, which will become visible after hovering on an item:
165
-
166
- * **Edit.** You can change the slide image, keeping its attributes (e.g. layers on slides, transitions).
167
- * **Copy.** Pressing this button will create a duplicate of the current slide. The duplicate will be added as the last slide of your slideshow.
168
- * **Delete.** You can delete the slide using this button.
169
-
170
- Furthermore, you are able to change the ordering of the slides by dragging the thumbnails and repositioning them.
171
-
172
- Make sure to **Publish/Update** your slideshow to keep the changes you made. You can also **Preview** the slider to check its appearance.
173
-
174
- **Adding Images from URL**
175
-
176
- In addition to uploading, embedding items and using WordPress posts, WordPress Slider plugin allows to insert images using their absolute links. To do this, press **Add Slides** button and navigate to **Insert from URL** tab.
177
-
178
- This section of the toolbox provides an input, where you just need to add the absolute URL of an image. The link needs to have the following structure:
179
-
180
- *https://example.com/complete-file-path/image.jpg*
181
-
182
- After providing the URL of the slide image, click **Add to Slider** button.
183
-
184
- **Using WD Media Uploader**
185
-
186
- Besides using default Media Library, WordPress Slider plugin has an advanced WD Uploader for adding or editing slides. This is a powerful and user-friendly tool which allows you to upload and manage images, separate them into folders, and more.
187
-
188
- To access WD Uploader, firstly, you need to enable it from **Global Options** of Slider by 10Web plugin. Go to **Slider by 10Web > Options** page and set **Enable WD Media Uploader** setting to **Yes.**
189
-
190
- Afterwards, edit your slideshow and click on **Add Slides** button. Navigate to WD Media Uploader tab to start adding new images. This dashboard includes a set of options which we will describe one by one.
191
-
192
- = Can I add video slides to slider? =
193
-
194
- Slider by 10Web plugin also lets you embed media from various platforms, such as **YouTube** and **Vimeo.** To use this feature, press **Add Slides** button then click on **Embed Media** tab. Use the input bar above to add the **URL** of the image or video you wish to add, then press **Add to slider** button.
195
-
196
- You can import items from the following websites:
197
- * YouTube,
198
- * Vimeo,
199
- * Instagram,
200
- * Flickr,
201
- * Dailymotion.
202
-
203
- For instance, when adding a YouTube video as a slideshow item, you just need to provide its link.
204
-
205
- This lets you create a modern-looking fullscreen slider with videos, that showcase your products, business or services.
206
-
207
- = Is it possible to make custom style changes to a slide? =
208
-
209
- Use **CSS** tab of **Slider Settings** to write additional CSS code and apply custom styles to the slider. Note, that these changes will override the original styles of the slider.
210
-
211
- Also, you can edit its **Settings** by enabling different attributes and configuring corresponding features. For instance, you can enable slide vertical animation effect and turn your slideshow into a vertical slider.
212
-
213
- These vertical slides look especially nice, when you are displaying professional photographs. However, you are able to use all slide effects both on images and videos.
214
-
215
- = Can I publish slider as a widget? =
216
-
217
- To publish your slideshow on a widget area, navigate to Appearance > Widgets page. All widgets on your website and widget areas provided by your theme are available on this dashboard.
218
-
219
- Look for Slider by 10Web widget, then drag it to the widget area where you wish to display the slideshow. Write a Title for the widget and choose any slideshow using Select Slider drop-down menu. Press Save and the slider will appear on this widget area immediately.
220
-
221
- = How can I add layers to slides? =
222
-
223
- WordPress slider plugin provides powerful layer options, which help you enhance the display of your slideshow. This section of Slider by 10Web user guide will help you add them to your slides and fully customize them.
224
-
225
- The plugin is tuned up with the following types of layers, which can be added to each slide multiple times:
226
-
227
- * **Text,** allowing you to display a **text block** on your slides,
228
- * **Image,** which lets you place an **image layer** over the slide background image,
229
- * **Video,** which you can use to add a **self-hosted video** on the slide,
230
- * **Media Embed,** that adds **Youtube, Vimeo, Instagram, Flickr,** and **Dailymotion** media as slide layer,
231
- * **Social Buttons,** letting you place **Facebook, Google+, Twitter, Pinterest,** and **Tumblr** share buttons on your slides,
232
- * **Hotspot,** which adds an **animating spot** to slide. It displays additional text, when users hover the hotspot, and you can also add an onclick link to it.
233
-
234
- Click on a slide you wish to edit, and the layer buttons will appear under the main image. Press the one you wish to add to the selected slide, and let's begin customizing its settings.
235
-
236
- After a layer is added, a new toolbox becomes available, providing various customization options. Using the top bar, you can:
237
- * reorder the layer using drag-and-drop feature,
238
- * edit the title of the layer,
239
- * delete or copy it,
240
- * change its order number.
241
-
242
- Click on the gray bar to expand and edit all options of the layer. This section of user-friendly tools allows to fully personalize each layer. You are able to implement modifications such as:
243
-
244
- * specify the dimensions of layers,
245
- * set their positions on slides,
246
- * configure slide in and slide out animations effects,
247
- * modify their color, font style, transparency,
248
- * add unique classes for layers,
249
- * set links on each layer,
250
- * configure various on-click actions, such as playing/pausing slideshow,
251
- and much more.
252
-
253
- It is important to note, that Slider by 10Web plugin also allows you to reposition layers by dragging them around on the slide itself.
254
-
255
- = Can I move sliders from one site to another? =
256
-
257
- To save lots of time, WordPress slider plugin provides its **Import/Export** feature, letting you move created sliders from one site to another. With just a few clicks, you can have all slideshows uploaded and built on your second website.
258
-
259
- Prior to transferring the sliders, make sure to install Slider by 10Web to the destination site. Let's begin discussing exporting and importing options.
260
-
261
- **Exporting Sliders**
262
-
263
- Navigate to **Slider by 10Web > Sliders** page to export slideshows. Mark the sliders you would like to export, then select **Export** option from **Bulk Actions.** Afterwards, press **Apply** button and sliders will start downloading immediately.
264
-
265
- You can choose to transfer the slider with images and settings, or alternatively, just export the settings and add your own slides afterwards.
266
-
267
- **Importing Sliders**
268
-
269
- To import the downloaded sliders, go to **Slider by 10Web > Import** page first. Use **Choose File** button to browse the exported slider. Select the file, afterwards, click **Import** button. The slider will be added automatically.
270
-
271
- You can also import slideshows from Demo site and import them to your website. Just press the **Download** button below each slider, and follow the steps described above.
272
-
273
- = How do I insert the WordPress Slider into a Page or a Post? =
274
-
275
- To insert your slider into a page or post, add or edit the post/page where you wish to showcase the slideshow. Above the content editor, there is a button titled **Add Slider by 10Web.** All you need to do is to press this button, choose a slideshow using **Select a Slider** drop-down menu, then click **Insert.**
276
-
277
- The shortcode of your slideshow, e.g. [wds id="2"], will be added to the content of the page/post you are editing.
278
-
279
- In addition, you can add the shortcode manually by copying it from **Slider by 10Web > Sliders** page. Each slider shortcode is displayed next to the corresponding item, under **Shortcode** column.
280
-
281
- = Can I customize Slider settings to better fit my needs? =
282
-
283
- WordPress Slider plugin comes with a set of useful options which allow you to customize each slideshow independently. Having configured slideshows separately, you can publish multiple sliders on your website, each with its own unique design and purpose.
284
-
285
- Navigate to **Settings** tab of your slider to begin configuring its options.
286
-
287
- This toolbox consists of the following sections, each providing its own pack of user-friendly options.
288
-
289
- **Global**
290
-
291
- **Global** tab of **Slider Settings** includes general options for the slider. You can personalize the way your slider behaves and shows. You can:
292
- * modify its display type and dimensions,
293
- * set animation effect and its duration,
294
- * specify slider looping and shuffling settings,
295
- * change slideshow behavior on desktop and mobile devices,
296
- * set music to play along with the slider,
297
- * enable parallax effect for the slider, and much more.
298
-
299
- **Carousel**
300
-
301
- Have your slideshow appearing in Carousel mode by activating it from **Carousel** tab of **Slider Settings.** With these options, you can personalize the display of your slider carousel. You are able to:
302
- * change the number of images shown on carousel,
303
- * set the ratio of carousel image dimensions (width divided by height),
304
- * edit the styles of carousel background image, and more.
305
-
306
- **Navigation**
307
-
308
- Completely customize the way your slider navigates using the tools provided in **Navigation** section of **Slider Settings.** You are able to switch on:
309
- * mouse-click navigation (Next/Previous buttons),
310
- * mouse-swipe and mouse-wheel navigation,
311
- * touch-swipe navigation on mobile devices,
312
- * keyboard navigation with next/previous keys,
313
- * on-slider Play / Pause buttons,
314
- * as well as activate navigation buttons for your slider and style every attribute as you wish.
315
-
316
- **Bullets**
317
-
318
- Place **bullets** on your slider by activating them from this section. This feature lets users to easily navigate from one slide to another in a random sequence. This set of options lets you:
319
- * select to show bullets on hover or always,
320
- * set the position of slider bullets,
321
- * choose color, size and margin for them,
322
- * customize the bullets by uploading your own images, and more.
323
-
324
- **Filmstrip**
325
-
326
- Display a nifty **filmstrip** of slide thumbnails along with your slider. This is a neat way to showcase miniatures of your slides before users click to view their larger versions. You can customize the filmstrip by:
327
- * changing its position on the slider,
328
- * setting background color and inactive thumbnail transparency,
329
- * specify thumbnail dimensions and separator size,
330
- * customize the border of the active thumbnail.
331
-
332
- **Timer bar**
333
-
334
- Activating **Timer bar** lets you have a neat loading bar with each slide. The loading bar starts every time a slide displays, and ends when the slideshow switches to the next image during autoplay.
335
-
336
- You can customize the type of the Timer bar, as well as its size, color and transparency.
337
-
338
- **Watermark**
339
-
340
- You are able to add watermark to the main images of your slider with the options Watermark section provides. Choose the type of the watermark, text or image, then configure settings such as:
341
- * providing watermark text or image URL,
342
- * specifying font size, font style and color of watermark text.
343
- * setting the size of the watermark image, and select the position of the watermark.
344
- * Press Set Watermark to add the watermark text or image to main images of your slider. To remove it, simply click on Reset Watermark button.
345
-
346
- = Can I use Slider by 10Web to create different sliders for different pages? =
347
-
348
- Yes, you can create unlimited number of sliders with unlimited amount of slides. Then you may paste corresponding slider code within each page.The slider shortcodes are listed next to the slider in **Slider by 10Web > Slider** section.
349
-
350
- = Can I add a slider into a custom PHP template of my website theme? =
351
-
352
- In case you use custom PHP templates and would like to display your slideshow on these pages, you can use **PHP function** Slider by 10Web plugin provides. You just need to add the function, e.g.:
353
-
354
- *<?php if (function_exists('wd_slider'))
355
- {
356
- wd_slider(2);
357
- }
358
- ?>*
359
-
360
- into the necessary .php file. For instance, if you wish to display the slideshow along with the header, simply add the code to header.php file of your website theme. You can find the function and copy it from **Slider by 10Web > Sliders** page, under **PHP function** column.
361
-
362
- = Is it possible to add watermark to slider images? =
363
-
364
- You are able to add watermark to the main images of your slider with the options **Slider Settings > Watermark** section provides. Choose the type of the watermark, **text** or **image,** then configure settings such as:
365
-
366
- * providing watermark **text** or **image URL,**
367
- * specifying **font size, font style** and **color** of watermark text.
368
- * setting the **size** of the watermark image,
369
- * and select the **position** of the watermark.
370
-
371
- Press **Set Watermark** to add the watermark text or image to main images of your slider. To remove it, simply click on Reset Watermark button.
372
-
373
- = Does Slider by 10Web support Google fonts? =
374
-
375
- Slider by 10Web does support Google Fonts. This allows you to custom text layer over slides using the provided big variety of Google Fonts.
376
-
377
- You can change the fonts of a layer by editing it. Look for **Font family** option to enable **Google Fonts,** then select the font family you wish to use.
378
-
379
- = What are the most common applications of this wordpress responsive plugin? =
380
-
381
- This free slider plugin can be used for showcasing your portfoliow with the help of:
382
- * Image slider,
383
- * video slider (specifically vimeo slider, youtube slider, HTML5 slider),
384
- * post slider,
385
- * product slider,
386
- * photo slider / gallery slider,
387
- * carousel slider and more.
388
-
389
- Thes content slider options are the most commonly used applications of the best slider plugin, but those can be expanded to meet the needs. You can combine images into multi-layer content with videos and carousel slideshow effect or display video layers.
390
-
391
- = Is this a good plugin for creating a post slider? =
392
-
393
- The plugin allows embedding WordPress posts making it a great WordPress Posts slider with various functionality and content slideshow. This is also useful in case you wish to have a product slider. You can add your products as posts and display them on your slideshow.
394
-
395
- Moreover, it can be turned into custom post types slider or a content slider with various layers, images and animations. This will help to create product carousel/image carousel with ecommerce plugins or photo slideshow with gallery plugin and even more.
396
-
397
- The good part of this is that you can have a text slider with its picture slide, while keeping up with responsive post slider if compared with other post slider or banner slider plugins. This image slideshow plugin has all the necessary features for creating various kinds of wonderful CSS3 slider.
398
-
399
- = Can I post links on slider images using this slider plugin? =
400
-
401
- You can post a redirection link on the image, allowing the user to get to the mentioned post or page upon clicking on the slide. Please note, that with this WordPress responsive slider plugin, you need to use *http://* and *https://* for external links.
402
-
403
- = Why is my watermark not showing on image? =
404
- Watermark may not work because of the following reasons:
405
-
406
- * If you add slider images by embedding them from an external link,
407
- * If your GD2 library is switched off on your server,
408
- * If the image you have uploaded is larger than the slider dimensions you have set in settings.
409
- The last point means that if you have placed the watermark on the angles of the image, it will not be visible because the slider image will be cut off.
410
-
411
- So, please try the following:
412
- * Make sure to upload images in slider plugin, instead of embedding it from an external URL,
413
- * make sure to have your server’s GD2 library on,
414
- * resize the slideshow images and set the same dimensions as in **Slider Settings** before uploading.
415
-
416
- If you post a watermark on the slider plugin and it does not appear on the image, you can check the watermark position firstly. Please open **Slide Options** section, and use **Fillmode** to change the appearance of the slide background. By changing the fillmode option, you can see in which mode the watermark looks good on WordPress responsive slider images.
417
-
418
- = Can I post social media buttons to slides using WordPress responsive slider ? =
419
- Premium version of Slider by 10Web plugin allows you to place social media layers. Under each image of your slider, you’ll see **Add Social Media Button Layer** button.
420
-
421
- Press it to add to your slide. You also are able to customize these buttons using layer settings.
422
-
423
- = Can I add custom navigation buttons? =
424
-
425
- You can add your own custom navigation images instead of buttons in WordPress responsive slider plugin. You can also manage default buttons by customizing sizes, colors, border and background colors.
426
-
427
- To add custom buttons in slider plugin please enter **Settings > Navigation** section and find **Image for next / previous buttons.** Select **Custom** and upload images for each button.
428
-
429
- = Does WordPress responsive slider allow to post the same layer on different images? =
430
-
431
- Slider plugin lets you use the same text layer, image layer, video layer for all slider images. After adding the layer, you can mark the **Static layer** option and the layer will be visible on all slides.
432
-
433
- = Does slider plugin take the full width if I post it as a widget? =
434
- The plugin takes the full width of the widget area if the **Boxed Layout** in **Slider Settings** is checked. Please note that the option you can find in the **Global Options** section, rather than in the widget settings.
435
-
436
- == Screenshots ==
437
- 1. Slider by 10Web - Slider 1
438
- 2. Slider by 10Web - Slider 2
439
- 3. Slider by 10Web - Slider 3
440
- 4. Slider by 10Web - Slider 4
441
- 5. Slider by 10Web - Edit Slider
442
- 6. Slider by 10Web - Settings
443
- 7. Slider by 10Web - Global Options
444
-
445
-
446
- == Changelog ==
447
- = 1.2.48 =
448
- * Fixed: Navigation buttons' hover color.
449
-
450
- = 1.2.47 =
451
- * Fixed: Icons in "Navigation / Bullets" buttons list.
452
-
453
- = 1.2.46 =
454
- * Fixed: Slide options styles.
455
-
456
- = 1.2.45 =
457
- * Fixed: Default font for layers.
458
-
459
- = 1.2.44 =
460
- * Fixed: Make it possible to change bullet style in free version.
461
-
462
- = 1.2.43 =
463
- * Fixed: Compatibility with PHP8.
464
- * Fixed: Images ratio with Zoom Fade effect.
465
-
466
- = 1.2.42 =
467
- * Added: Possibility to hide layers on mobile.
468
- * Fixed: Zoom fade effect for first slide.
469
- * Fixed: Carousel on Firefox, Safari.
470
-
471
- = 1.2.41 =
472
- * Fixed: Input styles in settings.
473
- * Fixed: Hotspot layer with Effect in option.
474
-
475
- = 1.2.40 =
476
- * Fixed: Two way slideshow.
477
- * Fixed: JS error on Carousel view.
478
- * Fixed: Insert from URL on WP5.6.
479
-
480
- = 1.2.39 =
481
- * Improved: Get Google fonts dynamically.
482
-
483
- = 1.2.38 =
484
- * Fixed: Minor bugs.
485
- * Fixed: Add YouTube scripts if only needed.
486
-
487
- = 1.2.37 =
488
- * Fixed: ZIP lib conflict
489
-
490
- = 1.2.36 =
491
- * Fixed: SQL Injection on bulk actions.
492
- * Fixed: Conflicts with WP5.5.
493
-
494
- = 1.2.35 =
495
- * Fixed: Conflict with php 7.4.
496
-
497
- = 1.2.34 =
498
- * Fixed: Do not load image on changing between images.
499
-
500
- = 1.2.33 =
501
- * Fixed: Bug with Wordpress 5.4
502
- * Fixed: Automatically mute all videos with enabled autoplay.
503
-
504
- = 1.2.32 =
505
- * Added: Option to allow create slider by user roles.
506
-
507
- = 1.2.31 =
508
- * Removed: Banner to install Image optimizer.
509
-
510
- = 1.2.30 =
511
- * Added: Option to hide filmstrip on mobile screens.
512
-
513
- = 1.2.29 =
514
- * Improved: Add slider images to the XML generated with Yoast or Seo by 10Web.
515
-
516
- = 1.2.28 =
517
- * Added: Ask a question button.
518
-
519
- = 1.2.27 =
520
- * Fixed: Video slide Video loop.
521
- * Updated: jQuery upload library.
522
-
523
- = 1.2.26 =
524
- * Added: Slider edit links for Elementor widget.
525
-
526
- = 1.2.25 =
527
- * Fixed: Newly added slider preview image.
528
- * Fixed: Leave page message for newly published slider.
529
- * Removed: Google+.
530
- * Fixed: Some settings in Options do not work.
531
- * Fixed: PHP Notices from Slider in log file.
532
-
533
- = 1.2.24 =
534
- * Added: Banner to install 10Web manager.
535
-
536
- = 1.2.23 =
537
- * Fixed: Security issue.
538
-
539
- = 1.2.21 =
540
- * Changed: PHP function shortcode check if function exists.
541
- * Fixed: Do not print js before DOCTYPE.
542
- * Fixed: Error when clicking allow or skip to collect some usage data more then once.
543
-
544
- = 1.2.20 =
545
- * Added: Message during import for PHP XML and ZipArchive PHP extensions.
546
- * Added: The Separate section for 10Web Plugins in Elementor.
547
- * Fixed: Add Layer click action.
548
- * Changed: User guide links.
549
- * Changed: Analytics trackable links.
550
-
551
- = 1.2.19 =
552
- * Fixed: WD library.
553
-
554
- = 1.2.18 =
555
- * Added: Elementor widget.
556
-
557
- = 1.2.17 =
558
- * Fixed: Bug on restarting slider.
559
- * Fixed: Smart crop functionality.
560
- * Updated: Free users library.
561
-
562
- = 1.2.16 =
563
- * Fixed: Rendering in Elementor builder.
564
- * Changed: Navigation buttons showing delay on hover.
565
- * Changed: Links to 10Web.io.
566
- * Changed: Demo slider download buttons and images.
567
-
568
- = 1.2.14 =
569
- * Fixed: Add shortcode functionality on Beaver, Elementor, SiteOrigin and Visual Composer builders.
570
- * Fixed: Set/Reset watermark functionality.
571
- * Fixed: Conflict with Fast Velocity Minify plugin with minified js.
572
-
573
- = 1.2.13 =
574
- * Fixed: Text layer fixed step position.
575
- * Fixed: Bug on slider preview.
576
- * Fixed: Slider autoplay with multiple sliders on one page.
577
- * Changed: Video autoplay on some browsers.
578
-
579
- = 1.2.12 =
580
- * Changed: Separate buttons for deactivation.
581
-
582
- = 1.2.11 =
583
- * Fixed: Callback functionality.
584
- * Added: GDPR compliance (Privacy suggestion text).
585
- * Fixed: Bug on circle timer.
586
-
587
- = 1.2.10 =
588
- * Updated: WD Library (added GDPR Compliance).
589
-
590
- = 1.2.9 =
591
- * Fixed: Rapid movement of slider.
592
- * Added: Gutenberg integration.
593
-
594
- = 1.2.8 =
595
- * Fixed: Layer effect in animation in some case.
596
-
597
- = 1.2.7 =
598
- * Fixed: Minor bug depend on PHP version.
599
-
600
- = 1.2.6 =
601
- * Changed: Main PHP file structure.
602
- * Changed: GET variable in slider edit page.
603
- * Fixed: Keyboard, Mouse swipe, Touch swipe navigation.
604
-
605
- = 1.2.5 =
606
- * Added: Insert slide image from URL.
607
- * Fixed: Full width slider height.
608
- * Fixed: Bug on PHP 7.2.0 version.
609
- * Changed: Overview page.
610
-
611
- = 1.2.4 =
612
- * Removed: Notification
613
-
614
- = 1.2.3 =
615
- * Fixed: Some js and css conflicts with other plugins and builders.
616
- * Fixed: Install Demo slides.
617
- * Changed: Overview page.
618
-
619
- = 1.2.2 =
620
- * Added: Background fill mode for slide.
621
- * Added: Auto height functionality for full width slider.
622
- * Added: Option to stretch slider to fill parent container.
623
- * Fixed: Video layer autoplay bug.
624
-
625
- = 1.2.1 =
626
- * Changed: Deactivation popup.
627
-
628
- = 1.2.0 =
629
- * Changed: Improved user interface of sliders.
630
- * Fixed: Reset settings.
631
- * Fixed: Import slider on Windows servers.
632
- * Added: Support forum and Review links.
633
-
634
- = 1.1.92 =
635
- * Added: Show notification to install Image Optimizer WD plugin on plugin pages.
636
-
637
- = 1.1.91 =
638
- * Changed: Show notification to install Backup WD plugin only on plugin pages.
639
-
640
- = 1.1.90 =
641
- * Removed: Popup to install Backup WD plugin.
642
-
643
- = 1.1.89 =
644
- * Added: Show popup notice to install Backup WD plugin.
645
-
646
- = 1.1.88 =
647
- * Fixed: Overview page conflict.
648
- * Fixed: Conflict with Jetpack Contact Form module.
649
-
650
- = 1.1.87 =
651
- * Fixed: Updated library to prevent conflict with PHP version 7.
652
-
653
- = 1.1.86 =
654
- * Improved: Audio file validation.
655
-
656
- = 1.1.85 =
657
- * Fixed: Do not insert a shortcode if no slider is selected.
658
-
659
- = 1.1.84 =
660
- * Improved: Translatable backend
661
- * Improved: Compatibility with jQurey 3.2.1
662
-
663
- = 1.1.83 =
664
- * Fixed: HTML attribute validation.
665
-
666
- = 1.1.82 =
667
- * Fixed: Security issue in filemanager.
668
-
669
- = 1.1.81 =
670
- * Fixed: Uninstall.
671
- * Fixed: Youtube video autoplay in some case.
672
-
673
- = 1.1.80 =
674
- * Fixed: Slider direction with two slides.
675
-
676
- = 1.1.79 =
677
- * Changed: Minimum font size validation.
678
-
679
- = 1.1.78 =
680
- * Added: Apply layer global options to existing layers.
681
- * Changed: Removed support forum link.
682
-
683
- = 1.1.77 =
684
- * Added: Minimum font size for text layers
685
-
686
- = 1.1.76 =
687
- * Added: Support forum link.
688
-
689
- = 1.1.75 =
690
- * Improved: Fonts.
691
-
692
- = 1.1.74 =
693
- * Added: Default options for layers.
694
- * Added: Overview page.
695
- * Fixed: Google fonts bug.
696
-
697
- = 1.1.73 =
698
- * Fixed: Deleting newly added slides and layers.
699
- * Fixed: Slider height with horizontal filmstrip.
700
- * Fixed: Share slides.
701
- * Fixed: Scroll load.
702
- * Fixed: Video slide and layer poster in backend.
703
- * Fixed: Image thumbnail in backend with single quote in name.
704
-
705
- = 1.1.72 =
706
- * Fixed: Warrning in admin popups.
707
- * Fixed: Required field validation.
708
- * Changed: Scroll load in filemanager.
709
-
710
- = 1.1.71 =
711
- * Fixed: Save as copy.
712
-
713
- = 1.1.70 =
714
- * Added: Slides order direction (optional).
715
- * Fixed: Filemanager allowed file types.
716
- * Fixed: Zoomfade effect.
717
-
718
- = 1.1.69 =
719
- * Fixed: Transition effect bug.
720
-
721
- = 1.1.68 =
722
- * Added: Animation iteration count.
723
- * Fixed: Sliders import.
724
-
725
- = 1.1.67 =
726
- * Added: Full width slider on small screens.
727
-
728
- = 1.1.66 =
729
- * Fixed: Sanitize folder names in filemanager.
730
-
731
- = 1.1.65 =
732
- * Fixed: Fixed background videos.
733
- * Changed: "Select slider to use settings from" option on sliders merge.
734
-
735
- = 1.1.64 =
736
- * Fixed: Upload only images zip.
737
- * Fixed: Removed empty line breaks from inline javascipt to prevent conflict with some themes.
738
- * Fixed: Zoom Fade effect on Google Chrome browser.
739
-
740
- = 1.1.63 =
741
- * Fixed: New line in text layer.
742
- * Fixed: Carousel view.
743
-
744
- = 1.1.62 =
745
- * Added: Static layers.
746
-
747
- = 1.1.61 =
748
- * Added: Alignment for text layer.
749
-
750
- = 1.1.60 =
751
- * Added: Two way slideshow. Slideshow can go backwards if someone switch to a previous slide.
752
-
753
- = 1.1.59 =
754
- * Changed: UploadHandler class name to prevent conflict with some themes.
755
- * Fixed: Layer styles conflict with some themes.
756
- * Changed: Dutch translations by Piet Kok.
757
-
758
-
759
- = 1.1.58 =
760
- * Added: Link to slide.
761
- * Fixed: Click action for carousel view.
762
-
763
- = 1.1.57 =
764
- * Added: Possibility to change loading icon.
765
-
766
- = 1.1.56 =
767
- * Fixed: Slider with fixed background.
768
- * Fixed: Buttons styles in backend.
769
-
770
- = 1.1.55 =
771
- * Added: Merge sliders.
772
- * Fixed: Double quotes in custom javascript.
773
-
774
- = 1.1.54 =
775
- * Fixed: Layer RotatInDownRight effect saving.
776
-
777
- = 1.1.53 =
778
- * Fixed: Slider add new button under the message.
779
-
780
- = 1.1.52 =
781
- * Added: Option to hide slider on mobile.
782
-
783
- = 1.1.51 =
784
- * Fixed: Active thumbnail in carousel view.
785
- * Changed: Loading gif.
786
-
787
- = 1.1.50 =
788
- * Changed: Featured themes page.
789
-
790
- = 1.1.49 =
791
- * Added: Text layer alignment option.
792
-
793
- = 1.1.48 =
794
- * Fixed: Preview popup.
795
- * Fixed: Add posts popup styles.
796
- * Fixed: Loading in filemanager.
797
- * Fixed: Resetting layer positions on parallax sliders on touch leave.
798
-
799
- = 1.1.47 =
800
- * Fixed: Case sensitive search by name in Filemanager bug.
801
- * Changed: Show last uploaded files as first in Filemanager.
802
- * Changed: File manager design.
803
- * Fixed: Sliders duplicate.
804
-
805
- = 1.1.46 =
806
- * Changed: Updated Font Awesome to 4.6.3 version.
807
- * Fixed: Slider margin responsiveness.
808
- * Fixed: Effect processing direction for slider with two slides.
809
-
810
- = 1.1.45 =
811
- * Added: Option whether include scripts only on necessary pages or no.
812
-
813
- = 1.1.44 =
814
- * Fixed: Conflict with "Yoast SEO" plugin.
815
- * Fixed: Case sensitive search by name in Filemanager bug.
816
- * Changed: Show last uploaded files as first in Filemanager.
817
-
818
- = 1.1.43 =
819
- * Changed: Support for new version of Google Fonts.
820
-
821
- = 1.1.42 =
822
- * Fixed: Interval for checking for updates.
823
- * Fixed: Parallax effect on mobile.
824
- * Fixed: Video autoplay bug.
825
- * Changed: Featured plugins page.
826
-
827
- = 1.1.41 =
828
- * Added: Hover color for text layer
829
-
830
- = 1.1.40 =
831
- * Fixed: Link the slide in carousel view.
832
- * Fixed: Specialchars in text layer.
833
- * Changed: Slider bulk actions.
834
-
835
- = 1.1.39 =
836
- * Fixed: Minor bugs.
837
- * Changed: Do not change the slide until slide loads.
838
- * Fixed: Instagram slides.
839
- * Fixed: Embed media by YouTube short url.
840
-
841
- = 1.1.38 =
842
- * Fixed: Slider display bug after previous update.
843
-
844
- = 1.1.37 =
845
- * Changed: Add scripts and styles only on pages where necessary.
846
-
847
- = 1.1.36 =
848
- * Changed: Save relative urls in database instead of absolute urls.
849
-
850
- = 1.1.35 =
851
- * Fixed: Save slider with big amount of slides.
852
- * Fixed: Sliders pagination styles.
853
- * Fixed: Vimeo autoplay.
854
-
855
- = 1.1.34 =
856
- * Added: No sliders found message.
857
- * Fixed: Add images on new slider.
858
- * Fixed: Duplicate sliders.
859
- * Fixed: Add posts page styles.
860
-
861
- = 1.1.33 =
862
- * Added: Function with sliders return value.
863
- * Changed: Featured plugins page.
864
-
865
- = 1.1.32 =
866
- * Fixed: Conflict with "Wordfence Security" plugin.
867
- * Added: Hotspot text on click/hover(optional).
868
-
869
- = 1.1.31 =
870
- * Fixed: Add post page styles on Wordpress 4.5
871
- * Fixed: Undefined iframes in frontend.
872
- * Fixed: Filmstrip responsiveness.
873
-
874
- = 1.1.30 =
875
- * Changed: Add font-family without saving whole slider.
876
-
877
- = 1.1.29 =
878
- * Added: Text, image, hotspot layers click actions.
879
-
880
- = 1.1.28 =
881
- * Added: Slider loop option.
882
- * Changed: Featured plugins, themes page.
883
-
884
- = 1.1.27 =
885
- * Added: Possibility to add font family to google fonts.
886
-
887
- = 1.1.25 =
888
- * Fixed: Slider by 10Web media uploader files with withespaces in name.
889
- * Added: Option for hotspot animation.
890
- * Added: Video loop and related video options.
891
-
892
- = 1.1.24 =
893
- * Updated: Google fonts list.
894
-
895
- = 1.1.23 =
896
- * Fixed: Bug in layer effect
897
-
898
- = 1.1.22 =
899
- * Changed: Some guidelines.
900
-
901
- = 1.1.21 =
902
- * Added: Google fonts scripts (greek,latin,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic).
903
- * Changed: Featured plugins and themes pages.
904
-
905
- = 1.1.20 =
906
- * Added: Possibility to add class to layers.
907
-
908
- = 1.1.19 =
909
- * Fixed: Conflict with some themes.
910
- * Fixed: Dutch in translation (Thanks to Hielke Brandsma).
911
-
912
- = 1.1.18 =
913
- * Improved: Filemanager load time.
914
-
915
- = 1.1.17 =
916
- * Fixed: Newly added parameters on duplicate.
917
-
918
- = 1.1.16 =
919
- * Changed: User Manual links.
920
- * Fixed: Vimeo embed videos pause bug on slide change.
921
-
922
-
923
- = 1.1.15 =
924
- * Fixed: Slider autoplay duration depend on Youtube video duraton.
925
- * Fixed: Text bullets activate color.
926
-
927
- = 1.1.14 =
928
- * Added: Slide names as bullets.
929
-
930
- = 1.1.13 =
931
- * Fixed: Shortcode in custom container.
932
-
933
- = 1.1.12 =
934
- * Fixed: Verify nonce on embed media.
935
- * Added: Carousel background image angle, grayscale, transparency options.
936
-
937
- = 1.1.11 =
938
- * Added: New year promo notice
939
-
940
- = 1.1.10 =
941
- * Fixed: Filemanager vulnerability. Thanks to Mika Epstein.
942
-
943
- = 1.1.9 =
944
- * Fixed: Licensing page.
945
- * Fixed: Plugin direction for icons.
946
- * Changed: Featured themes page.
947
-
948
- = 1.1.8 =
949
- * Fixed: Slider callback page responsiveness.
950
- * Fixed: Keyboard navigation blocks spacebar.
951
-
952
- = 1.1.7 =
953
- * Added: Slider callback.
954
- * Fixed: Styles for Wordpress 4.4.
955
- * Fixed: Slider on Firefox.
956
-
957
- = 1.1.6 =
958
- * Fixed: HTML validation.
959
-
960
- = 1.1.5 =
961
- * Changed: Featured plugins page.
962
-
963
- = 1.1.4 =
964
- * Fixed: File manager styles.
965
- * Fixed: Stay on current tab after save.
966
-
967
- = 1.1.3 =
968
- * Fixed: Shortcode puts in html tags for some themes.
969
- * Changed: Enlarge title container in admin.
970
- * Changed: Add slide button.
971
- * Fixed: Carousel load.
972
-
973
- = 1.1.2 =
974
- * Added: Smart crop.
975
-
976
- = 1.1.1 =
977
- * Fixed: Backend styles.
978
- * Fixed: Check all in add post popup.
979
-
980
- = 1.1.0 =
981
- * Changed: Backend design.
982
- * Changed: Responsive backend.
983
-
984
- = 1.0.50 =
985
- * Fixed: Border sizing problem with image wrap.
986
-
987
- = 1.0.49 =
988
- * Added: Shortcode support in text layers.
989
-
990
- = 1.0.48 =
991
- * Fixed: Controll buttons in sites with different site and admin urls.
992
-
993
- = 1.0.47 =
994
- * Added: Fixed background slider.
995
-
996
- = 1.0.46 =
997
- * Changed: Default uploader.
998
-
999
- = 1.0.45 =
1000
- * Changed: Demo Sliders.
1001
-
1002
- = 1.0.44 =
1003
- * Fixed: Video sliders export without videos and thumbnails.
1004
- * Fixed: Single quote in css.
1005
- * Changed: Loading styles.
1006
-
1007
- = 1.0.43 =
1008
- * Added: Show thumbnail on bullets hover.
1009
- * Fixed: First slide with single quotes in name.
1010
- * Fixed: Video slide/layer export/import with featured image.
1011
- * Fixed: Hide slider play /pause button on video slides.
1012
-
1013
- = 1.0.42 =
1014
- * Added: Possibility to add font family.
1015
- * Fixed: "Link the slide to:" option save.
1016
- * Changed: No image, no video images.
1017
- * Changed: Notices show order.
1018
-
1019
- = 1.0.41 =
1020
- * Added: Video slide/layer.
1021
- * Fixed: Line break in text, hotspot layer on export/import.
1022
-
1023
- = 1.0.40 =
1024
- * Added: Swipe for filmstrip.
1025
- * Added: Mousewheel and keyboard navigation methods.
1026
- * Changed: Make touch navigation optional.
1027
-
1028
- = 1.0.39 =
1029
- * Fixed: Flashing only on first transition during fade effect.
1030
-
1031
- = 1.0.38 =
1032
- * Changed: Embed autoplay on slider autoplay.
1033
- * Fixed: Embed video poster.
1034
- * Changed: Featured plugins page.
1035
-
1036
- = 1.0.37 =
1037
- * Added: Support/rate us messages.
1038
-
1039
- = 1.0.36 =
1040
- * Changed: Filmstrip navigation arrows show on hover.
1041
-
1042
- = 1.0.35 =
1043
- * Changed: Compability with Wordpress 4.3.
1044
- * Changed: Filmstrip separator.
1045
- * Changed: Message classes.
1046
-
1047
- = 1.0.34 =
1048
- * Added: Google fonts.
1049
-
1050
- = 1.0.33 =
1051
- * Added: Option to display bullets on hover.
1052
-
1053
- = 1.0.32 =
1054
- * Added: Option for mouse swipe navigation.
1055
-
1056
- = 1.0.30 =
1057
- * Fixed: Removed editor button from hotspot layer.
1058
- * Added: Demo sliders page.
1059
-
1060
- = 1.0.29 =
1061
- * Fixed: Multiple sliders in a page.
1062
-
1063
- = 1.0.28 =
1064
- * Fixed: Embed slide as first slide.
1065
- * Changed: Licensing page.
1066
-
1067
- = 1.0.27 =
1068
- * New: Slider preview in admin.
1069
- * Changed: Improved slide load.
1070
- * Fixed: Play/pause button.
1071
-
1072
- = 1.0.26 =
1073
- * New: Parallax effect.
1074
-
1075
- = 1.0.25 =
1076
- * Fixed: security issue.
1077
- * Changed: Manage buttons position.
1078
-
1079
- = 1.0.24 =
1080
- * Changed: YouTube, Vimeo embed.
1081
- * New: Instagram, Flickr and Dailymotion embed.
1082
-
1083
- = 1.0.23 =
1084
- * New: Hotspot layer (pro version).
1085
-
1086
- = 1.2.22 =
1087
- * New: Search by name in file manager.
1088
-
1089
- = 1.0.21 =
1090
- * Changed: Featured plugins page.
1091
-
1092
- = 1.0.20 =
1093
- * Fixed: Slider playback direction.
1094
-
1095
- = 1.0.19 =
1096
- * Fixed: Slider width/height problem after Chrome update.
1097
- * Fixed: Export.
1098
- * Fixed: Carousel slider with one slide.
1099
-
1100
- = 1.0.18 =
1101
- * Fixed: Conflict with some themes.
1102
-
1103
- = 1.0.17 =
1104
- * New: Slider Export/Import.
1105
- * Fixed: Delete slides whitout layers on slider delete.
1106
- * Fixed: Image change effect in carousel views whith one image.
1107
- * Fixed: Removed "There is no slider selected or the slider was deleted." error message for unpublished sliders.
1108
- * Fixed: Carousel view after Chrome update(23.05.15).
1109
- * Fixed: Activate first slide tab after slider duplication.
1110
- * Fixed: Active bullet and filmstrip thumbnail in carousel view.
1111
-
1112
- = 1.0.16 =
1113
- * Changed: Featured plugins page.
1114
- * New: Featured themes page.
1115
-
1116
- = 1.0.15 =
1117
- * Change links.
1118
-
1119
- = 1.0.14 =
1120
- * Fixed: Disable enter key on text inputs.
1121
- * New: Bulk add images by media uploader.
1122
-
1123
- = 1.0.13 =
1124
- * Fixed: Image layer alt.
1125
- * Fixed: Word break in Chrome.
1126
-
1127
- = 1.0.11 =
1128
- * Fixed: Timer bar and bullets postion with horizontal filmstrip.
1129
- * Fixed: Set watermark.
1130
-
1131
- = 1.0.10 =
1132
- * Fixed: Slide change direction from 9 to 10.
1133
- * Fixed: Layers with "Start with slide" option.
1134
-
1135
- = 1.0.9 =
1136
- * Update licensing page
1137
-
1138
- = 1.0.8 =
1139
- * New: Start with slide option.
1140
- * New: Effect duration option.
1141
-
1142
- = 1.0.7 =
1143
- * New: Circle timer.
1144
- * New: Slider duplication.
1145
- * Fixed: Disable swipe on navigation off.
1146
- * Fixed: Layer click on 3D animations.
1147
-
1148
- = 1.0.6 =
1149
- * custom play/pause buttons
1150
- * slide duplication
1151
-
1152
- = 1.0.5 =
1153
- * Image for Next / Previous buttons (Default, Custom, Styled)
1154
- * Image for bullets (Default, Custom, Styled)
1155
-
1156
- = 1.0.4 =
1157
- * stop on hover option
1158
- * slide, text layer, image layer link open in a new window option
1159
-
1160
- = 1.0.3 =
1161
- * single quota in image name (bug fixed)
1162
-
1163
- = 1.0.2 =
1164
-
1165
- * Turn SliderWD Media Upload
1166
- * Ajax save
1167
- * Images Bulk Add
1168
- * Timer bar bug fixed
1169
- * change shortcode button
1170
- * fullwidth slider margin bug fixed
1171
-
1172
- = 1.0.1 =
1173
- * User manual links added.
1174
-
1175
- = 1.0.0 =
1176
- * Initial version.
1177
-
4
  Requires at least: 3.4
5
  Tested up to: 5.8
6
  Requires PHP: 5.2
7
+ Stable tag: 1.2.49
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.48
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.48';
83
- $this->db_version = '1.2.48';
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.49
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.49';
83
+ $this->db_version = '1.2.49';
84
  $this->prefix = 'wds';
85
  $this->nicename = __('Slider', $this->prefix);
86
  $this->use_home_url();