26
What you can do (Provided that you have the same number of modules in both ur languages) is create mock modules with:
index.php
logo.gif
xoops_version.php
and then in index.php, u can put an if clause to check the language, and if lang is "en", it would take you to module " Games", and if language is "fr", it would take you to module "Romance", for e.g.: (my php is crap, so this code has a 99% chance of NOT working, but you get the idea)
if ($xoopsConfig['language'] == 'en') {
<SCRIPT language="JavaScript">
SCRIPT>
}
if ($xoopsConfig['language'] == 'fr') {
<SCRIPT language="JavaScript">
SCRIPT> }
Something like that, I am not the expert.
So this way, you can change the modules for the different languages, but as i said, you will have to have the same number of modules for this method to work...
my methods are usually simple and crap and inefficient, but they do the job , for me at least