Change order received title in WooCommerce

Change order received title in WooCommerce on your child site.

Snippet Type

Execute on Child Sites

Snippet

function filter_woocommerce_endpoint_order_received_title( $title, $endpoint, $action ) {   
    $title = __( 'Thank you, good luck!', 'woocommerce' );
 
    return $title;
}
add_filter( 'woocommerce_endpoint_order-received_title', 'filter_woocommerce_endpoint_order_received_title', 10, 3 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.