File "customer-note.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/emails/customer-note.php
File
size: 934 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
if (!defined('ABSPATH')) {
exit;
}
do_action('woocommerce_email_header', $email_heading, $email);
?>
<?php
?>
<p><?php
printf(esc_html__('Hi %s,', 'woocommerce'), esc_html($order->get_billing_first_name()));
?></p>
<p><?php
esc_html_e('The following note has been added to your order:', 'woocommerce');
?></p>
<blockquote><?php
echo wpautop(wptexturize(make_clickable($customer_note)));
?></blockquote>
<p><?php
esc_html_e('As a reminder, here are your order details:', 'woocommerce');
?></p>
<?php
do_action('woocommerce_email_order_details', $order, $sent_to_admin, $plain_text, $email);
do_action('woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email);
do_action('woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email);
if ($additional_content) {
echo wp_kses_post(wpautop(wptexturize($additional_content)));
}
do_action('woocommerce_email_footer', $email);