El siguiente código
- devuelve los identificadores de valor de las opciones seleccionadas para este producto: 123,124
- convierte eso en una matriz: matriz (123,124)
- luego encuentra la etiqueta de esas opciones: 123 => Airco y 124 => Radio
- y devuelve los valores en una cadena de texto: Airco, Radio
$ _attribute_code = 'car_options';
$ car_options_csv = Mage :: getResourceModel ('catalog / product') -> getAttributeRawValue ($ productId, $ _attribute_code, $ storeId); // devuelve: 123,124
$ car_options = explotar (',', $ car_options_csv);
$ attributeId = Mage :: getResourceModel ('eav / entity_attribute') -> getIdByCode ('catalog_product', $ _ attribute_code);
$ attribute = Mage :: getModel ('catalog / resource_eav_attribute') -> load ($ attributeId);
$ attributeOptions = $ attribute -> getSource () -> getAllOptions ();
$ res = '';
foreach ($ attributeOptions como $ a)
{
$ l = $ a ['etiqueta'];
$ m = $ a ['valor'];
if (strlen (trim ($ l))> 0 && en_array ($ m, $ car_options))
{
$ res. = recortar ($ l). ',';
}
}
echo substr ($ res, 0, -2) ;;