I'm doing this cause I have seven sites hosted on country specific TLDs, each site is in the relevant language and has a store (currently oSC 2.3.1). The stores all have the same configure.php file so they're administrated from one admin panel. All the sites link to /Shop/index.php?lang=whatever so it shows the correct language for that TLD.
Many thanks in advance! I'm really hoping this is possible, I was so happy to see all the different option types available for products!
*EDIT* Just found the following suggestion from 2009;
Code: Select all
if(isset($_GET['language'])){
$this->language->set($_GET['language']);
$this->redirect($this->url->http('common/home'));}