When we are in the product grid/list and try to change the store's language, the products' description don't change.
The problem is located in catalog\model\catalog\product.php at " public function getProducts($data = array()) { "
The following lines
Code: Select all
$product_data = $this->cache->get('product.' . $cache . '.' . $customer_group_id);
Code: Select all
$this->cache->set('product.' . $cache . '.' . $customer_group_id, $product_data);
Code: Select all
$product_data = $this->cache->get('product.' . $cache . '.' . $customer_group_id.'.'.$this->config->get('config_language_id'));
Code: Select all
$this->cache->set('product.' . $cache . '.' . $customer_group_id.'.'.$this->config->get('config_language_id'), $product_data);