From c5f1fb47bc1bcc8b2b8103b9623256500f322d63 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Fri, 5 Dec 2014 15:55:53 +0100 Subject: [PATCH] Use ->getStoreLabel() instead of FrontendLabel So it is translated. --- .../Checkout/Block/Cart/Item/Renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/community/OrganicInternet/SimpleConfigurableProducts/Checkout/Block/Cart/Item/Renderer.php b/app/code/community/OrganicInternet/SimpleConfigurableProducts/Checkout/Block/Cart/Item/Renderer.php index 4817f31..21620ee 100644 --- a/app/code/community/OrganicInternet/SimpleConfigurableProducts/Checkout/Block/Cart/Item/Renderer.php +++ b/app/code/community/OrganicInternet/SimpleConfigurableProducts/Checkout/Block/Cart/Item/Renderer.php @@ -78,7 +78,7 @@ public function getOptionList() ->getUsedProductAttributes(); foreach($attributes as $attribute) { $options[] = array( - 'label' => $attribute->getFrontendLabel(), + 'label' => $attribute->getStoreLabel(), 'value' => $this->getProduct()->getAttributeText($attribute->getAttributeCode()), 'option_id' => $attribute->getId(), );