File "email-customer-details.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/emails/email-customer-details.php
File
size: 536 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
defined('ABSPATH') || exit;
if (!empty($fields)) {
?>
<div style="font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; margin-bottom: 40px;">
<h2><?php
esc_html_e('Customer details', 'woocommerce');
?></h2>
<ul>
<?php
foreach ($fields as $field) {
?>
<li><strong><?php
echo wp_kses_post($field['label']);
?>:</strong> <span class="text"><?php
echo wp_kses_post($field['value']);
?></span></li>
<?php
}
?>
</ul>
</div>
<?php
}