아스트라 테마
결제창 관련 플러그인으로는 우커머스, Checkout Field Editor for WooCommerce 을 사용하고 있었습니다.
그런데 도로명 주소를 검색하는 기능을 직접 넣고 싶어서 contactform7로 도로명주소 검색하는 숏코드를 하나 만들어서
이걸 넣으려고 아스트라 차일드 테마를 만들어 적용한다음 테마 에디터로 form-checkout.php파일을 추가해
챗지피티에게 질문하여 수정하였습니다만 챗지피티가 말한대로 코드를 바꿔도 제가 원하는 도로명주소 검색버튼이 뜨지 않습니다 ㅠㅠ
어떻게 바꿔야 하는걸까요??
4. 수정한 코드 내역 (있다면)
<?php
/**
* Checkout Form
*
* This template can be overridden by copying it to yourtheme/woocommerce/checkout/form-checkout.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://woo.com/document/template-structure/
* @package WooCommerce\Templates
* @version 3.5.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
do_action( 'woocommerce_before_checkout_form', $checkout );
// If checkout registration is disabled and not logged in, the user cannot checkout.
if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) {
echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) );
return;
}
?>
<form name="checkout" method="post" class="checkout woocommerce-checkout" action="<?php echo esc_url( wc_get_checkout_url() ); ?>" enctype="multipart/form-data">
<?php if ( $checkout->get_checkout_fields() ) : ?>
<?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>
<div class="col2-set" id="customer_details">
<div class="col-1">
<?php do_action( 'woocommerce_checkout_billing' ); ?>
</div>
<div class="col-2">
<?php do_action( 'woocommerce_checkout_shipping' ); ?>
<?php // Replace the following line with the Contact Form 7 shortcode for 우편번호
echo do_shortcode('[contact-form-7 id="e13a3ff" title="우편번호"]');
?>
</div>
</div>
<?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>
<?php endif; ?>
<?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?>
<h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'woocommerce' ); ?></h3>
<?php do_action( 'woocommerce_checkout_before_order_review' ); ?>
<div id="order_review" class="woocommerce-checkout-review-order">
<?php do_action( 'woocommerce_checkout_order_review' ); ?>
</div>
<?php do_action( 'woocommerce_checkout_after_order_review' ); ?>
</form>
<?php do_action( 'woocommerce_after_checkout_form', $checkout ); ?>
checkout 페이지에 도로명주소를 넣는 코드를 넣을려고 알아보다 보니 본문대로 해보려고 했는데요 이렇게하면 안되는걸까요? ㅠㅠ
완전 초보라 잘 모르겠네요
말씀하신 플러그인에서 숏코드를 넣는 방법은 찾지 못했고
지금은 functions,php 파일에서 추가하면 할수있다고해서 그방향으로 알아보고 있는데 혹시 어떤 코드를 입력해야 도로명주소를 검색하는 기능을 넣을수있을까요???
다른 쉬운 방법이있다면 꼭 알려주시면 좋겠습니다!! ㅠㅠ
안녕하세요~^^
도로명 주소 검색 기능을 숏코드로 넣으시려는 이유를 뭔지 알 수 있을까요?
Checkout Field Editor (Checkout Manager) for WooCommerce 플러그인으로는 필드 편집이 안될까요?
시도 해보시는게 좋을 듯합니다.
contactform7 공식문서도 한번 확인해보시겠어요?
https://contactform7.com/docs/
고맙습니다.