«customer-attribute» 태그된 질문


1
Magento Enterprise 2.2.0의 관리 HTML 고객 계정 양식에 고객 속성이 표시되지 않음
"Wgac_Subscription"모듈을 만들었습니다. 맞춤 고객 속성을 만들고 싶습니다. 아래 이미지와 같이 관리자로 표시되지만 고객 adminhtml 양식에는 표시되지 않습니다. Wgac / Subscription / Setup / InstallData.php <?php namespace Wgac\Subscription\Setup; use Magento\Eav\Setup\EavSetup; use Magento\Eav\Setup\EavSetupFactory; use Magento\Customer\Model\Customer; use Magento\Customer\Setup\CustomerSetupFactory; use Magento\Eav\Model\Entity\Attribute\Set as AttributeSet; use Magento\Eav\Model\Entity\Attribute\SetFactory as AttributeSetFactory; use Magento\Framework\Setup\InstallDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; class …

2
Magento 2 사용자 정의 고객 속성 값이 데이터베이스에 저장되지 않습니까?
app / code /.../ Setup / InstallData.php를 통해 새 모듈에 고객 등록 페이지 (대체 이메일 및 대체 번호)에 대한 두 가지 사용자 정의 속성을 추가했습니다. register.phtml을 재정 의하여 사용자 정의 테마 내에서 '보기'를 설계했습니다. 등록 페이지에서 새 필드를 볼 수 있습니다. 그러나 새 필드 내부의 데이터 (대체 이메일 및 번호)는 …

7
사용자 정의 속성과 비 사용자 정의 속성의 차이점은 무엇입니까?
고객 속성이 다음과 같이 정의되어 있습니다. $customerSetup->addAttribute(Customer::ENTITY, "attr_code", [ "type" => "varchar", "backend" => "", "label" => "Attribute Label", "input" => "text", "source" => "Magento\Eav\Model\Entity\Attribute\Source\Table", "visible" => true, "required" => false, "default" => "", "frontend" => "", "unique" => false, "note" => "", 'system' => 0, 'user_defined' => true ]); …

2
Customer is_active 플래그는 무엇을합니까?
오늘 토론하는 동안 Customer is_active 플래그가 실제로 아무 것도하지 않는다는 정보를 받았습니다. 이것은 EAV 속성 이 아니라는 점에서 고객 이메일 주소와 같은 고유 한 플래그 입니다. 대신 customer_entity 테이블의 열입니다. 테스트 고객의 경우 플래그를 0으로 설정하려고 시도했지만 여전히 로그인 할 수 있습니다. 다른 모든 기능은 정상적으로 작동하는 것 같습니다. 이 …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.