Slide Anything – Responsive Content / HTML Slider and Carousel - Version 2.3.40

Version Description

  • Set the hover title text for slide links to an empty string (i.e. blank)
Download this release

Release Info

Developer simonpedge
Plugin Icon 128x128 Slide Anything – Responsive Content / HTML Slider and Carousel
Version 2.3.40
Comparing to
See all releases

Code changes from version 2.3.39 to 2.3.40

php/slide-anything-frontend.php CHANGED
@@ -667,7 +667,8 @@ function slide_anything_shortcode($atts) {
667
  // BUILD SLIDE LINK HOVER BUTTON
668
  $link_output = '';
669
  if ($slide_data["slide".$i."_link_url"] != '') {
670
- $link_title = "slide ".$slide_data["slide".$i."_num"]." link";
 
671
  $link_output = "<a class='sa_slide_link_icon' href='".$slide_data["slide".$i."_link_url"]."' ";
672
  $link_output .= "target='".$slide_data["slide".$i."_link_target"]."' ";
673
  $link_output .= "title='".$link_title."' aria-label='".$link_title."'></a>";
667
  // BUILD SLIDE LINK HOVER BUTTON
668
  $link_output = '';
669
  if ($slide_data["slide".$i."_link_url"] != '') {
670
+ // $link_title = "slide ".$slide_data["slide".$i."_num"]." link";
671
+ $link_title = ""; // SET LINK TITLE TO BLANK - 03/01/2022
672
  $link_output = "<a class='sa_slide_link_icon' href='".$slide_data["slide".$i."_link_url"]."' ";
673
  $link_output .= "target='".$slide_data["slide".$i."_link_target"]."' ";
674
  $link_output .= "title='".$link_title."' aria-label='".$link_title."'></a>";
readme.txt CHANGED
@@ -98,6 +98,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
98
 
99
  == Changelog ==
100
 
 
 
 
101
  = 2.3.39 =
102
  * Small Bug Fix: Fix the style of the jQuery UI Spinner arrows displayed within the WP Dashboard edit slider page.
103
 
@@ -728,3 +731,6 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
728
 
729
  = 2.3.39 =
730
  * Small Bug Fix: Fix the style of the jQuery UI Spinner arrows displayed within the WP Dashboard edit slider page.
 
 
 
98
 
99
  == Changelog ==
100
 
101
+ = 2.3.40 =
102
+ * Set the hover title text for slide links to an empty string (i.e. blank)
103
+
104
  = 2.3.39 =
105
  * Small Bug Fix: Fix the style of the jQuery UI Spinner arrows displayed within the WP Dashboard edit slider page.
106
 
731
 
732
  = 2.3.39 =
733
  * Small Bug Fix: Fix the style of the jQuery UI Spinner arrows displayed within the WP Dashboard edit slider page.
734
+
735
+ = 2.3.40 =
736
+ * Set the hover title text for slide links to an empty string (i.e. blank)
slide-anything.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
- * Version: 2.3.39
8
  * License: GPLv2 or later
9
  */
10
 
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
+ * Version: 2.3.40
8
  * License: GPLv2 or later
9
  */
10