안녕하세요,
개인정보처리 지침을 위해 회원정보를 엑셀파일로 정리를 하려고 하는데요,
워드프레스에서 자동으로 엑셀로 변경해주는 적절한 플러그인이 있는지요?
또한 현재 우커머스를 사용하고 있는데요, 회원가입시 추가 설정을 하고 싶은데, 체크박스 같은 추가기능을 삽입 가능한 무료 플러그인이 있을까요?
감사합니다.
안녕하세요.
워드프레스 사용자 내보내기 가져오기 관련된 플러그인이 많지는 않은 듯합니다.
하나의 플러그인으로 해결이 안 되면 여러 플러그인을 사용하셔야 할 듯합니다.
https://ko.wordpress.org/plugins/cimy-user-manager/
https://ko.wordpress.org/plugins/export-user-data/
https://ko.wordpress.org/plugins/import-users-from-csv-with-meta/
위의 플러그인들을 설치해서 확인해보시겠어요?
우커머스 회원가입 필드는
아래 플러그인을 설치해서 사용해보시겠어요?
https://wordpress.org/plugins/woocommerce-extra-accounts-fields/
직접 코드를 추가하실 수 있으시다면
아래 링크들도 참고해보세요.
https://gist.github.com/pietromalerba/5c8e8650152b9e58ccb7
https://www.cloudways.com/blog/add-woocommerce-registration-form-fields/
고맙습니다.
The fields are not adding in the registration form using a plugin. I am trying to add it manually using a code that is in this complete guide https://wpitech.com/add-woocommerce-registration-form-fields/. Is there any alternative to do this? It would be really helpful if you could help me to add fields in the registration form.
function Woo_register_fields() {?>
*
<?php
}
add_action( ‘woocommerce_register_form_start’, ‘Wooregister_fields’ );
hi~ jameskendy.
Do you want to add a field from the Woocommerce registration form?
You can get a more accurate answer if you give a clear idea of how you actually want to do it.
If you use the woocommersce_register_form action or the woocommersce_register_form_start action that is shown in the link you posted,
You can edit the ukerm membership form.
Add the code to the Theme functions.php file.
Wordpress Admin -> Appearance -> Add the code to the bottom of the functions.php file in the Theme Editor.
Thank You.
If you want to customize Woocommerce,
I think you should refer to the official Woocommerce documentation.
Would you check the link below?
See the link below for Woocommerce actions and filters.
https://docs.woocommerce.com/wc-apidocs/hook-docs.html
Thank you.