Hello,
I'm creating an Arabic site and wanted to know if it is possible to have the menu in Arabic but the page name in the address bar to be in English.
in other CMS like Joomla or Dropal there is an alias for the url, so please could you advice me how to do that,
I read a question submitted before . but DNN support team adviced to use a title instead of name in
SimpleTokens.txt
so I changed the simpletokens.txt text to tiltle but it doesn't work...
<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>