سؤال

I have multilingual website in joomla and want to hide one menu item (not all the menu items, but just one of them) for a certain languages, for instance, when current language is English hide menu item.

How can I achieve this? I am using joomfish with joomla 1.5 version.

هل كانت مفيدة؟

المحلول

just set condition in the component and module which displays menu

u would need to hard code it

for example for language with id = 60

conditions like in php

if( $lid == 60) {

// show the menu for a speacial language

}

else{

 //  else show the basic menu for all


 }

refer this link http://www.packtpub.com/article/customizing-menus-menu-in-joomla

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top