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 '

🔶 ชำระเงินผ่าน PromptPay

'; // ถ้า API คืนค่ารูปเป็น URL if ( isset( $result['qr_image_url'] ) ) { echo 'PromptPay QR'; } // ถ้า API คืน base64 image if ( isset( $result['qr_base64'] ) ) { echo 'PromptPay QR'; } // แสดงข้อมูลเพิ่มเติม echo '
' . print_r( $result, true ) . '
'; }