Hi. If I’m using this shortcode with cyrillic value in data-name attribute – I get something like “ÐÐÐÐÐÐТР/ ÐÐÐУÐÐÐТД instead of “РЕКВІЗИТИ / ДОКУМЕНТИ”
[tab_slider slideshow=false animation=slide direction_nav=false]
<ul>
<li id="services1" data-name="01 РЕКВІЗИТИ / ДОКУМЕНТИ">
...................
I found the solution to fix it, hope it’s good solution. I’ve changed /austin/framework/shortcodes/slider-shortcodes.php near line 125.
Line
$tab_name = $slide->getAttribute('data-name');
change to this
$tab_name = utf8_decode($slide->getAttribute('data-name'));