add_action( 'woocommerce_thankyou', 'hip_show_qr_on_thankyou_page', 20 );
function hip_show_qr_on_thankyou_page( $order_id ) {
$result = get_post_meta( $order_id, '_hip_qr_result', true );
if ( empty( $result ) ) return;
echo '
';
}
// ถ้า API คืน base64 image
if ( isset( $result['qr_base64'] ) ) {
echo '
';
}
// แสดงข้อมูลเพิ่มเติม
echo '
🔶 ชำระเงินผ่าน PromptPay
'; // ถ้า API คืนค่ารูปเป็น URL if ( isset( $result['qr_image_url'] ) ) { echo '' . print_r( $result, true ) . ''; }
