• Resolved jennyhwd

    (@jennyhwd)


    I have a child customer-processing-order.php
    I changed the text to read ”
    We have received your order #11355 and it is now being processed. ”

    but just above the order number/details, I have this extra text.

    Complete your order and the invoice will be sent for payment.”

    before

    [Order #11355] (July 4, 2019)

    I must have added it but where did I do it! Any ideas, please? It also appears on the screen receipt.
    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • mother.of.code

    (@imazed)

    The Mother of Code

    Hey there!

    Without seeing what your template looks like, that’s a difficult question to answer. Is it possible that you set up a translation somewhere? That’s how some add new text to their site, instead of using a customized PHP template.

    Thread Starter jennyhwd

    (@jennyhwd)

    Sorry storefront theme. I knew where I was ??

    <?php
    /**
     * Customer processing order email
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/emails/customer-processing-order.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://docs.woocommerce.com/document/template-structure/
     * @package WooCommerce/Templates/Emails
     * @version 3.5.4
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit;
    }
    
    /*
     * @hooked WC_Emails::email_header() Output the email header
     */
    do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
    
    <?php /* translators: %s: Customer first name */ ?>
    <p><?php printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) ); ?></p>
    <?php /* translators: %s: Order number */ ?>
    <p><?php printf( esc_html__( 'We have received your order #%s and it is now being processed. ', 'woocommerce' ), esc_html( $order->get_order_number() ) ); ?></p>
    <?php
    
    /*
     * @hooked WC_Emails::order_details() Shows the order details table.
     * @hooked WC_Structured_Data::generate_order_data() Generates structured data.
     * @hooked WC_Structured_Data::output_structured_data() Outputs structured data.
     * @since 2.5.0
     */
    do_action( 'woocommerce_email_order_details', $order, $sent_to_admin, $plain_text, $email );
    
    /*
     * @hooked WC_Emails::order_meta() Shows order meta data.
     */
    do_action( 'woocommerce_email_order_meta', $order, $sent_to_admin, $plain_text, $email );
    
    /*
     * @hooked WC_Emails::customer_details() Shows customer details
     * @hooked WC_Emails::email_address() Shows email address
     */
    do_action( 'woocommerce_email_customer_details', $order, $sent_to_admin, $plain_text, $email );
    
    ?>
    <p>
    <?php esc_html_e( 'Thank you for your order!', 'woocommerce' ); ?>
    </p>
    <?php
    
    /*
     * @hooked WC_Emails::email_footer() Output the email footer
     */
    do_action( 'woocommerce_email_footer', $email );
    

    I didn’t use transalation. I cannot work out how I did but the wording is wrong.

    Hi jen,
    We have received your order #11355 and it is now being processed.
    Complete your order and the invoice will be sent for payment.
    [Order #11355] (July 4, 2019)

    I need to remove Complete your order and the invoice will be sent for payment.
    thanks

    Thread Starter jennyhwd

    (@jennyhwd)

    FOUND IT! ??
    the payment method had a message in the description. So simple when you track it down.
    Thank you anyway.

    Thread Starter jennyhwd

    (@jennyhwd)

    Fixed. Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customer Processing order’ is closed to new replies.