i think the carousel should swipe to the same direction, regardless of the RTL/LTR theme.
anyway -
remarking those lines you mentioned is NOT a solution, like i said, it will cause other problems.
i succeed to change it, but i need your help how to change that in the code :
in file JCarousel.cshtml
i did NOT change the supportRTL lines.
so it is still -
bool supportRtl = EngineContext.Current.Resolve<IWorkContext>().WorkingLanguage.Rtl;
if (supportRtl)
{
Html.AppendCssFileParts("~/Plugins/SevenSpikes.Nop.Plugins.JCarousel/Themes/" + Model.Theme + "/Skins/skin.rtl.css");
}
but when i do inspect elements of the page i see.
there are two lines responsible to the arrows,
i just switch the next and prev words, and now it is working great.
the lines are -
<div class="jcarousel-prev jcarousel-prev-horizontal" style="display: block;"></div>
<div class="jcarousel-next jcarousel-next-horizontal" style="display: block;"></div>
and i change them to -
<div class="jcarousel-prev jcarousel-next-horizontal" style="display: block;"></div>
<div class="jcarousel-next jcarousel-prev-horizontal" style="display: block;"></div>
where in the code i can change that ???
Thanks,
Shay