Sarathlal N

Add SKU in cart page detail - WooCommerce

In default, WooCommerce offer minimal information about product on cart page. Often I miss SKU of product on this page & always like to add this unique identifier on these pages.

To add SKU on cart page, we can simply use a filter hook on Item Name.

add_filter( 'woocommerce_cart_item_name', 'add_sku_in_cart', 20, 3);

function add_sku_in_cart( $title, $values, $cart_item_key ) {
	$sku = $values['data']->get_sku();
	return $sku ? $title . sprintf(" (SKU: %s)", $sku) : $title;
}

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.