1
Magento2에서 정적 메서드를 재정의하는 방법
플러그인 인터셉터 및 환경 설정으로 대체는 정적 메소드에서 작동하지 않습니다. 사용자 지정 가시성을 반환하려면 Magento \ Catalog \ Model \ Product \ Visibility 에서 getOptionArray 메서드 를 재정의해야합니다. /** * Retrieve option array * * @return array */ public static function getOptionArray() { return [ self::VISIBILITY_NOT_VISIBLE => __('Not Visible Individually'), …