• Hi,

    I’d like to edit to email both the customer and the admin receive when a quote request comes through.

    The email says – Payment Method: Rquest For Quote how do I change payment method to say Request for quote rather than “payment method”

    Also where it says Billing Address how do I add “Invoice” to the start of the sentence.

    Many thanks
    Jake

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    For editing the email you can check this post
    Please check this post.

    To change the label for the payment method, checkout the WooCommerce->Settings->payment->quote request and change the label
    Check out this post

    Thread Starter jakesaunders

    (@jakesaunders)

    Hi Thanks for that.

    I mean actually editing the text “Payment Method” I don’t want it to say that I want it to say Request For Quote. Or remove it completely.

    I can’t find how to edit the individual fields using the link you sent?

    Thanks

    Plugin Author Neah Plugins

    (@gplsaver)

    That part is not a function of our plugin. That is a WooCommerce filters / actions.
    The same with billing detail.

    I can point you in the direction:

    For billing detail you need to override & customize the
    customer detail email :
    plugins\woocommerce\templates\emails\email-customer-details.php
    Copy that file to your theme\woocommerce\emails\email-customer-details.php and customize it there.

    For removing the payment method you can try this and see if it works:

    add_filter( ‘woocommerce_get_order_item_totals’, ‘xyz_woocommerce_get_order_item_totals’,100,3 );

    function xyz_woocommerce_get_order_item_totals( $total_rows, $order, $tax_display ) {

    if ($order->get_status() == “gplsquote-req”) {
    unset( $totals[‘payment_method’] );
    }

    return $totals;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Edit Email’ is closed to new replies.