1. Home
  2. 엠샵 업다운로드
  3. Exporter 필터 사용 가이드
  4. 설정화면 필드 추가

설정화면 필드 추가

1. 개요

관리자 메뉴 [엠샵 업다운로드 > 상품 다운로드 템플릿]의 템플릿 편집에서 Select 필드 항목을 추가

작업파일 경로 : /wp-content/themes/테마이름/functions.php
차일드 테마 사용시 : /wp-content/themes/테마이름-child/functions.php

 

2. 필터명

상품 필드 – msex_product_field_type

주문 필드 – msex_order_field_type

회원 필드 – msex_user_field_type

 

3. 샘플코드

function mshop_product_custom_field( $fields ) {
          $fields = array_merge( 
              $fields, 
              array ( 
                  'post_status'  => '상품상태', 
             ) ); 
          return $fields; 
}
add_filter( 'msex_product_field_type', 'mshop_product_custom_field' );

 

4. 설정결과

상품상태 필드가 Select 필드에 추가된 모습입니다.
downloader2

Was this article helpful to you? Yes No