Hi to all,
I have a web store in 4 language, and it is possible to see the product detail only in one language. In particular the product description is shown only for the Italian Language product page:
This description it isn't shown in the other languages product pages:
Checking in the product tabs, I see the description tab is present only for the Italian Language:
How it is possible? Some one can help me to fix this problem?
Thanks in advance.
Emanuele
You can edit the “app/controllers/frontend/products.php” and add the following code:
if (CART_LANGUAGE != 'it') {
$product['full_description'] = $product['short_description'] = '';
}
before the following line:
Registry::get('view')->assign('product', $product);
Hope this will help