문제

I'm trying to get the frontend label of my custom address attribute and trying this:$address->getCustomAttribute("custom_attribute")->getValue(), gives me the value "95905" instead of the label.

How can I get the frontend label instead?

도움이 되었습니까?

해결책

Try this two code may be help you :-

1)

$custom = $customer->getResource()->getAttribute('your_attribute')->getFrontend()->getValue($address);

2)

$customer = $this->_customerSession->getCustomer();
return $customer->getResource()->getAttribute('your_attribute')->getFrontend()->getValue($address);

Hope this help you

Thanks ...

다른 팁

$address->getResource()->getAttribute('custom_attribute')->getFrontend()->getValue($address);

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top