Hello,
I already submitted this question before. if it is possible to have the menu in Arabic but the page name in the URL to be in English. so I changed the TEXT To TITLE in (SimpleTokens.txt) now when I click on the menu Item. the title shown in the url but the page can not be displayed. so how to achieve this.
<ul>
[*>NODE]
</ul>
[>NODE]
<li>
[?ENABLED]
<a href="[=URL]" [?TARGET]target="[=TARGET]"[/?] [?NODE] [/?]>[=TITLE] [?NODE]<b></b>[/?]</a>
[?ELSE]
<a href="#" [?NODE] [/?]>[=TITLE] [?NODE]<b></b>[/?]</a>
[/?]
[?NODE]
<ul>
[*>NODE]
</ul>
[/?]
</li>
[/>]
<script type="text/javascript">
(function($){
$(document).ready(function(){
$(".nav-pills > li a").on("mouseover", function(event){
var $this = $(this).parent().find(">ul");
if($this.length == 0) return;
dnn.addIframeMask($this[0]);
});
$(".dropdown").attr("aria-haspopup", "true");
$(".dropdownactive").attr("aria-haspopup", "true");
$(".dropdown-menu").attr("aria-haspopup", "false");
});
})(jQuery);
</script>