How to add suffix to child order in woocommerce?

Picture of Amitpal Singh
Amitpal Singh
November 18, 2022

How to add suffix to child order in woocommerce?


add_filter( 'woocommerce_order_number', 'change_woocommerce_order_number' );
function change_woocommerce_order_number( $order_id ) {
	 if(is_admin()){
		 $order = wc_get_order( $order_id );
		 $parent_id = $order->get_parent_id();

		 if ( $parent_id > 0 ) {
			$order_id = 'P_'. $order_id;
		 }
		 return $order_id;
	}
	else
	{
		return $order_id;
	}
} 

Share this post:

How to Attribute?

Lorem ipsum is typically a corrupted version of De finibus bonorum et malorum, a 1st-century BC text by the Roman statesman and philosopher Cicero.
for Example: Website, Social Media, Blogs, ebooks , newsletter, etc.
Lorem ipsum is typically a corrupted version of De finibus bonorum et malorum, a 1st-century BC text by the Roman statesman and philosopher Cicero.
Copied!

Got a Question? Check out our FAQ Section.

Your action, our appreciation

It encourage us to give you more valuable content on website.