Hi admin,
can you realize it that QuickSell use the current country code in case of joomla-multilanguage site.
maybe here in class.php in line 471
replace:
<input type="hidden" name="lc" value="' . ($qs->cfg['lc'] != '' ? $qs->cfg['lc'] : '') . '" />
by
$language = JFactory::getLanguage();
$tag = substr($language->getTag(), -2);
...
<form...
...
<input type="hidden" name="lc" value="' . ($qs->cfg['lc'] != '' ? $qs->cfg['lc'] : '') . $tag />
best regards
castor