Code-Snippets-Functions/Execute a function on a child site/WooCommerce/change-order-received-title.txt

6 lines
293 B
Text

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 );