Hi there!
My aim was to change the html tag ul that wraps the slides like this:
<div id="metaslider-id-69" class="ml-slider-...">
<div id="metaslider_container_69">
<div id="metaslider_69" class="flexslider">
<ul aria-live="polite" class="slides">
<li .../>
<li .../>
<li .../>
</ul>
....
</div>
</div>
</div>
to an ol html tag with this output:
<div id="metaslider-id-69" class="ml-slider-...">
<div id="metaslider_container_69">
<div id="metaslider_69" class="flexslider">
<ol aria-live="polite" class="slides">
<li .../>
<li .../>
<li .../>
</ol>
....
</div>
</div>
</div>
As it involves html, css and js files to be changed I chose another way to acomplish my real objective, so I don’t really need to change this anymore.
I don’t think there’s an easy way to subtitute that ul tag for an ol, i hadn’t seen it neither on the pro version, but if you know there is, it may be helpful for someone in the future.
Otherwise just close this report.
Thanks for your time!