Skip to main content
주문완료 – 상세내역 페이지 메세지 수정
<?php
add_filter( 'woocommerce_thankyou_order_received_text', 'wpb_thank_you' );
function wpb_thank_you() {
	$added_text = '<p>You can access the PDF Download from the <a href="/account-page">My Account Page</a>.</p>';
	return $added_text ;
}