Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタム アドレス属性があります。バックエンドでは、注文ページでその属性値を取得する必要があります。
これを試してみてください
$orderId = '100000001'; $order = Mage::getModel('sales/order')->loadByIncrementId($orderId); $customAttributeValue = $order->getShippingAddress()->getAttributeText('your_custom_attribute');