안녕하세요.
비회원으로 구매 시 체크아웃페이지에서 로그인을 유도하는 버튼이 있습니다.
해당 로그인 버튼을 클릭하면 코스모팜 로그인기능이 아닌 테마 디폴트 로그인 기능이 보여지는데
코스모팜 숏코드를 사용하여 테마 디폴트 로그인에서 코스모팜 로그인으로 교체하는 방법을 알 고 싶습니다.
추가로
차일드테마를 사용중인데 가능하다면
기존 테마의 form-login.php말고 차일드 테마의 function.php에서 수정하면 좋을 것 같습니다.
아래는 woocommerce > checkout > form-login.php
<?php
/**
* Checkout login form
*
* This template can be overridden by copying it to yourtheme/woocommerce/checkout/form-login.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 3.4.0
*/
defined( 'ABSPATH' ) || exit;
if ( is_user_logged_in() || 'no' === get_option( 'woocommerce_enable_checkout_login_reminder' ) ) {
return;
}
?>
<div class="woocommerce-form-login-toggle woocommerce-form-login">
<?php wc_print_notice( apply_filters( 'woocommerce_checkout_login_message', '<a href="#" class="showlogin">' . esc_html__( 'Click here to login', 'supro' ) . '</a>') , 'notice' ); ?>
<?php
woocommerce_login_form(
array(
'message' => esc_html__( 'If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing & Shipping section.', 'supro' ),
'redirect' => wc_get_page_permalink( 'checkout' ),
'hidden' => true,
)
);
?>
</div>
감사합니다.
안녕하세요~^^
코스모스팜 회원관리 플러그인의 로그인 페이지는
아래의 숏코드로 표시할 수 있습니다.
[cosmosfarm_members_login_form]
우커머스 쪽 로그인 폼 대신 코스모스팜 회원관리 플러그인의 로그인 폼을 표시하는 건
저희도 좋은 방법이 있을지 찾아보겠습니다.
고맙습니다.
네네 우커머스 로그인 폼 대신 코스모스팜 회원관리 플러그인의 로그인 폼 보일 수 있도록
방법을 찾아주시면 감사하겠습니다.
답변 기다리겠습니다.