Hi Poocharo,
It seems possible, but you’ll need some development experience to do this. Here is some (untested) code to get you started. You’ll need to add this to your themes functions.php file
function metaslider_flex_params($options, $slider_id) {
if ($slider_id == 123) { // check for slider ID (optional)
$options['pausePlay'] = "true"; // enable pause/play
$options['pauseText'] = "'Pause'";
$options['playText'] = "'Play'";
}
return $options;
}
add_filter('metaslider_flex_slider_parameters', 'metaslider_flex_params', 10, 2);
We only usually cover bugs as part of free support, rather than custom feature requests. If you need further help please consider upgrading to a pro license ??
Regards,
Tom.