Elxis CMS Forum

Support => General => Topic started by: catflap on September 26, 2007, 23:29:56

Title: LS Tabmenu
Post by: catflap on September 26, 2007, 23:29:56
I have installed Ls Tabmenu and it looks good but there are 2 problems with it.

1)  It does not act like the mainmenu i.e i have the main menu in 2 langauges and when in english it only shows the english menu items and when in turkish it only shows turkish menu items but tabmenu shows both all the time.

2) when a user registers on the site the tabmenu disappears.

is there any way i can cure these 2 problems or does anyone know of another tab menu module that will work as i want.
Title: Re: LS Tabmenu
Post by: Ivan Trebješanin on September 27, 2007, 02:18:57
Can you post a link to your page?
Title: Re: LS Tabmenu
Post by: catflap on September 27, 2007, 02:33:55
here is the link you want www.turkish-studies.co.uk (http://www.turkish-studies.co.uk)
Title: Re: LS Tabmenu
Post by: Ivan Trebješanin on September 27, 2007, 02:42:12
Each menu item has language assigment, did you assign language for each menu item?
Title: Re: LS Tabmenu
Post by: catflap on September 27, 2007, 03:08:28
yes i have assigned each item in the menu to the language i want
Title: Re: LS Tabmenu
Post by: Ivan Trebješanin on September 27, 2007, 10:21:10
From what I saw (couldn't register, but..) this menu is written for joomla, and most probable cause of your problems with it is joomla's lack of language field in DB (that's why it doesn't change items according to lang), and ACL values (that's why it don't work for registered users). Sorry, but I can't get into deeper explanation, since I'm not at home.
Title: Re: LS Tabmenu
Post by: catflap on September 27, 2007, 23:18:55
thanks for the explanation i had a feeling it was something like that but not being a programmer i dont know where to start to correct this.
Title: Re: LS Tabmenu
Post by: Ivan Trebješanin on September 27, 2007, 23:41:05
why don't you just crete tab menu via CSS???
Title: Re: LS Tabmenu
Post by: catflap on September 28, 2007, 00:14:49
i had thought about that and i could creat one but it would be simple as if it involed any graphics or icons i would not know where to put them or how to call them.
Title: Re: LS Tabmenu
Post by: Ivan Trebješanin on September 28, 2007, 01:17:38
You just pick one of thousands of free tab menus on the internet. If it uses any pictures, they are called through css. You just have to change paths acordingly.

Example

Put images for this menu into /yourtemplate/images/

change paths:

.someclass {
some:style;
background: url(image.gif);
..... etc.}

.someclass {
some:style;
background:url(../images/image.gif);
..... etc.}

That's all there is to it! ;)