코스모팜 회원가입 숏코드를 특정 php에 삽입 방법

안녕하세요.

비회원으로 구매 시 체크아웃페이지에서 로그인을 유도하는 버튼이 있습니다.

해당 로그인 버튼을 클릭하면 코스모팜 로그인기능이 아닌 테마 디폴트 로그인 기능이 보여지는데

코스모팜 숏코드를 사용하여 테마 디폴트 로그인에서 코스모팜 로그인으로 교체하는 방법을 알 고 싶습니다.

추가로

차일드테마를 사용중인데 가능하다면
기존 테마의 form-login.php말고 차일드 테마의 function.php에서 수정하면 좋을 것 같습니다.

https://imgur.com/a/1wKoOMR

아래는 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 &amp; Shipping section.', 'supro' ),
			'redirect' => wc_get_page_permalink( 'checkout' ),
			'hidden'   => true,
		)
	);
	?>
</div>

감사합니다.

 

 

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요