PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.2
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.2
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / app / Views / receipt / customer_details.php

customer_details.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.2, at app/Views/receipt/customer_details.php

26 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') or die;
4
5 if($transaction->payer_name || $transaction->payer_email) : ?>
6 <div class="ffp_customer_details">
7 <h4><?php esc_html_e('Customer Details', 'fluentform'); ?></h4>
8 <div class="ffp_submission_details">
9 <ul>
10 <?php if($transaction->payer_name): ?>
11 <li><?php esc_html_e('Customer Name:', 'fluentform');?> <?php echo esc_html($transaction->payer_name); ?></li>
12 <?php endif; ?>
13 <?php if($transaction->payer_email): ?>
14 <li><?php esc_html_e('Customer Email:', 'fluentform');?> <?php echo esc_html($transaction->payer_email); ?></li>
15 <?php endif; ?>
16 <?php if($transaction->billing_address && strlen($transaction->billing_address) > 2): ?>
17 <li><?php esc_html_e('Billing Address:', 'fluentform');?> <?php echo esc_html($transaction->billing_address); ?></li>
18 <?php endif; ?>
19 <?php if($transaction->shipping_address && strlen($transaction->shipping_address) > 2): ?>
20 <li><?php esc_html_e('Shipping Address:', 'fluentform');?> <?php echo esc_html($transaction->shipping_address); ?></li>
21 <?php endif; ?>
22 </ul>
23 </div>
24 </div>
25 <?php endif; ?>
26