3
Özellik, check-out adımını değiştirirken Magento \ Quote \ Api \ Data \ AddressInterface sınıfında karşılık gelen ayarlayıcıya sahip değil
1 - customer_address'e bir eav özelliği ekliyorum $attributesInfo = [ 'reference' => [ 'label' => 'Reference', 'type' => 'varchar', 'input' => 'text', 'position' => 100, 'visible' => true, 'required' => false, ], ]; foreach ($attributesInfo as $attributeCode => $attributeParams) { $customerSetup->addAttribute('customer_address', $attributeCode, $attributeParams); } 2 - Modülüme uzantı özelliğini ekledim …