Add a prefix or suffix to order numbers in WooCommerce

Add a prefix or suffix to order numbers in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_order_number', 'wc_order_number_prefix', 9999, 2 );
 
function wc_order_number_prefix( $order_id, $order ) {
   return 'Prefix-' . $order_id . '-suffix';
}

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