Hi…
I use bxSlider in a lot of projects, and cSlider is a nice WordPress implementation of that popular jQuery slider.
Although the cSlider plugin does not enable captions by default, it’s easy enough to do it, as I have done for a couple of projects. It just takes a minor modification of the core cslider plugin file:
1) In the cslider plugin folder, find and open the cslider.php file (you may want to make a back up copy first before modifying any native plugin code).
2) In cslider.php file find the “$htmlOutput” block
3) Add the 2 lines of code below to the list of options in this block (for example after the “mode:” or “speed:” lines):
captions: ‘true’,
captionsSelector: ‘.captions’,
The first line initializes the captions option.
The second line sets up a CSS class selector (.captions). Note: This captionSelector can be a class or ID division and can be named most anything. This lets you position the captions and style them with CSS, for example by adding desired CSS rules in your theme’s style.css file.
4) Save the cslider.php file.
If this is a new cslider installation, follow the install directions. If cslider already is installed, upload this modified file to the cSlider plugin folder to overwrite the default file. Follow normal rules for updating plugins first.
5) Refer to the bxSlider web site (https://bxslider.com) for how to implement your captions.