PATH:
home
/
thebhoeo
/
public_html
/
lazysleep
/
wp-content
/
plugins
/
woocommerce
/
templates
/
emails
/
plain
<?php /** * Customer review request email (plain text) * * This template can be overridden by copying it to yourtheme/woocommerce/emails/plain/customer-review-request.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://woocommerce.com/document/template-structure/ * @package WooCommerce\Templates\Emails\Plain * @version 10.8.0 */ // phpcs:disable Universal.WhiteSpace.PrecisionAlignment.Found, Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed -- Plain text output needs specific spacing without tabs defined( 'ABSPATH' ) || exit; echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n"; echo esc_html( wp_strip_all_tags( $email_heading ) ); echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; if ( ! empty( $order->get_billing_first_name() ) ) { /* translators: %s: Customer first name */ echo sprintf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) ) . "\n\n"; } else { echo esc_html__( 'Hi,', 'woocommerce' ) . "\n\n"; } echo esc_html__( 'We’d love to know what you thought of the products you ordered. Your review helps other shoppers make better decisions and helps us improve.', 'woocommerce' ) . "\n\n"; if ( ! empty( $review_order_url ) ) { echo esc_html__( 'Leave a review:', 'woocommerce' ) . "\n"; echo esc_url( $review_order_url ) . "\n\n"; } if ( $order instanceof WC_Order ) { $date_created = $order->get_date_created(); printf( /* translators: 1: order number, 2: order date */ esc_html__( 'Order #%1$s (%2$s)', 'woocommerce' ), esc_html( $order->get_order_number() ), esc_html( $date_created ? wc_format_datetime( $date_created ) : '' ) ); echo "\n\n"; } echo "----------------------------------------\n\n"; /** * Show user-defined additional content - this is set in each email's settings. */ if ( $additional_content ) { echo esc_html( wp_strip_all_tags( wptexturize( $additional_content ) ) ); echo "\n\n----------------------------------------\n\n"; } /** * Filter the email footer text. * * @param string $footer_text The footer text. * @since 2.3.0 */ echo wp_kses_post( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) ); // phpcs:enable Universal.WhiteSpace.PrecisionAlignment.Found, Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed
[-] email-order-items.php
[edit]
[-] customer-fulfillment-created.php
[edit]
[-] customer-note.php
[edit]
[-] customer-stock-notification.php
[edit]
[-] email-fulfillment-details.php
[edit]
[-] email-addresses.php
[edit]
[-] customer-invoice.php
[edit]
[-] customer-new-account.php
[edit]
[-] customer-processing-order.php
[edit]
[-] email-fulfillment-items.php
[edit]
[-] customer-review-request.php
[edit]
[-] customer-failed-order.php
[edit]
[-] email-order-details.php
[edit]
[-] customer-fulfillment-updated.php
[edit]
[-] customer-stock-notification-verify.php
[edit]
[-] customer-stock-notification-verified.php
[edit]
[-] customer-refunded-order.php
[edit]
[-] customer-pos-refunded-order.php
[edit]
[-] admin-payment-gateway-enabled.php
[edit]
[-] email-customer-details.php
[edit]
[-] customer-pos-completed-order.php
[edit]
[-] customer-completed-order.php
[edit]
[-] customer-on-hold-order.php
[edit]
[+]
..
[-] customer-reset-password.php
[edit]
[-] customer-fulfillment-deleted.php
[edit]
[-] admin-new-order.php
[edit]
[-] admin-failed-order.php
[edit]
[-] email-downloads.php
[edit]
[-] customer-cancelled-order.php
[edit]
[-] admin-cancelled-order.php
[edit]