How to Remove title from Image Slider Shortcode Within Post

Hi

I have added the slider shortcode from within the post. This was the shortcode:

[slider]
[slide title="" image="/wp-content/uploads/2015/04/xyz.jpg" active="active"/]
[/slider]

I want to remove the “title” from appearing on the image.

How can I do this? Leaving the title blank (as shown in the code pasted above) still displays the word “title” on the image.

Slider caption for Easy Bootstrap Shortcode can be hidden using this simple CSS:

.carousel-caption {
  display: none;
}

You can use this code via Appearance >> Theme Options >> Other >> Custom CSS.

Thank you! Really appreciate your help.