엘리멘터 기반으로 한 우커머스/코스모스팜 회원관리를 사용하고 있습니다. (엘리멘터 마이페이지 위젯 사용하고 있습니다)
add_filter('woocommerce_account_menu_items', 'my_woocommerce_account_menu_items_20210616', 99, 1); function my_woocommerce_account_menu_items_20210616($menu_items){ unset($menu_items['customer-logout']); $menu_items['edit-password'] = '비밀번호 변경'; $menu_items['customer-logout'] = '로그아웃'; return $menu_items; } add_filter('woocommerce_get_endpoint_url', 'my_woocommerce_get_endpoint_url_20210616', 10, 2); function my_woocommerce_get_endpoint_url_20210616($url, $endpoint){ if($endpoint == 'edit-account'){ $url = add_query_arg(array('a'=>'edit'), get_cosmosfarm_members_profile_url()); // 회원정보 변경 페이지 주소 변경 } else if($endpoint == 'edit-password'){ $url = add_query_arg(array('a'=>'pwdchange'), get_cosmosfarm_members_profile_url()); // 비밀번호 변경 페이지 주소 변경 } return $url; }
이것을 사용해보니 적용이 안됩니다
다른 방법이 있을까요?
한가지 더 문의합니다.
정기결제 문구중에서 [ 옵션을 원하시는 경우 선택해주세요 / 주문정보를 입력해주세요 ] 이문구를 다른문구로 수정하고 싶습니다.
어디를 봐야지 가능할까요?
알려주시면 감사하겠습니다