MAGENTO 2 – ADD ATTRIBUTES TO MINI CART LIST
Recently the team at Orange Collar Media have been working on a custom Magento 2 module for a client that involves modifying the item list in the mini cart. To do this correctly is a bit more involved in Magento 2 than it used to be. This is due to the mini cart being rendered by the knockout templates. The list of product attributes is built by a function called doGetItemData() located in the file vendor/magento/module-checkout/CustomerData/DefaultItem.php Quickly looking at this function and

Recently the team at Orange Collar Media have been working on a custom Magento 2 module for a client that involves modifying the item list in the mini cart. To do this correctly is a bit more involved in Magento 2 than it used to be.
This is due to the mini cart being rendered by the knockout templates. The list of product attributes is built by a function called doGetItemData() located in the file vendor/magento/module-checkout/CustomerData/DefaultItem.php
Quickly looking at this function and it is clear that to get our custom attribute added we need to modify the array being produced.
The correct way to update this array is to create a plugin in our module. However, the doGetItemData()function is not public so we can not intercept this exact function.
Looking at the DefaultItem class we can see that it extends the AbstractItem class. In this class the function getItemData()is a public function and it calls the doGetItemData() function.
This plugin will fire after the getItemData() function and add the custom attribute to the array.
Step 1 — Define the Plugin
In your module di.xml file add the following
<type name="Magento\Checkout\CustomerData\AbstractItem">
<plugin name="Vendor_Module_DefaultItemPlugin" type="Vendor\Module\Plugin\DefaultItemPlugin" sortOrder="10" disabled="false" />
</type>
So it looks like this
Example of modification di.xml above.
Step 2 — Create the Plugin
Create a new plugin class in Vendor\Module\Plugin\DefaultItemPlugin.php
<?php
namespace Vendor\Module\Plugin;
class DefaultItemPlugin
{
public function afterGetItemData(
\Magento\Checkout\CustomerData\AbstractItem $subject,
$result,
\Magento\Quote\Model\Quote\Item $item)
{
$data['customattribute'] = $item->getProduct()->getAttributeText('customattribute');
return \array_merge(
$result,
$data
);
}
}
It should look like this class
See example of the DefaultItemPlugin class above.
Step 3 — Update your template file
Then add this code to your template file.
<Vendor>/<theme>/Magento_Checkout/frontend/web/templates/minicart/item/default.html
<! – ko if: customattribute –><! – ko text: customattribute –><! – /ko –><! – /ko –>
To get this to work you will need to run
php bin/magento setup:di:compile

✦ KEEP READING
Related from the Journal.
Magento to Shopify Migration: The Complete Guide for 2026
Everything you need to know about migrating from Magento to Shopify, based on hundreds of real migrations. Covers planning, data transfer, SEO protection, testing, and the pitfalls most agencies won't tell you about.

IS MAGENTO 2 BETTER THAN A SAAS-BASED PLATFORM?
Before you begin building your eCommerce store, or even before a site upgrade, it’s important to know exactly what will work best for you. Broadly speaking there are two ways of doing it. One is to get an out-of-the-box solution – a SaaS, which stands for Software as a Service. Shopify, for example, and BigCommerce, are SaaS hosted stores. They enable you to choose themes, add plugins and build a site within their parameters, while they take care of all the updates and security. Whereas Magento

5 MAGENTO SECURITY FAILS AND HOW TO AVOID THEM
Security online is a seriously hot topic. Your store needs to be secure and reliable for both you and your customers. Why? Well, for starters, you have access to sensitive data. Everything from your customer’s name, and email address to their bank details and shopping preferences. This is data that needs to be managed sensibly, safely and with sensitivity. We’ve rounded up a few common Magento security failures, how you can avoid them, and maintain a safe eCommerce business. 1. ANCIENT SOFTWA
