What to Look for When Extending Adobe Commerce With Custom Code or an Extension

January 20, 2021
Blog Image for What to Look for When Extending Magento with Custom Code or An Extension

One of the strengths of the Adobe Commerce, previously known as Magento Commerce platform is its flexibility and scalability. Customization is common and can be accomplished in a few different ways—through community-developed extensions from the Magento Marketplace, or by building your own custom modules. The Magento Marketplace allows you to add new features and themes easily, while a custom module approach might be needed to actualize a unique vision.

Many merchants also pursue a hybrid approach, by customizing pre-built extensions to save time and money. Understanding the benefits of each approach empowers you to make the right decision when looking to extend the out-of-the-box capabilities of your store.

Adobe Commerce Installation

There are several points to think about when considering adding a new extension or custom feature to an Adobe Commerce installation. The upfront cost can potentially be dwarfed by maintenance and development efforts solving issues in the future. These issues can be avoided, minimized, or at least accounted for ahead of time by choosing a module carefully, and following Adobe Commerce best practices.

Finding the Right Module

Finding an extension that fits your business needs exactly can be difficult and may introduce labour costs for discovery, exploration, and analysis of modules in the ecosystem.

The Magento Marketplace is the premier place to find extensions, although sometimes concessions may be necessary in order to get as much coverage as possible out of a module that accomplishes most of your objectives.

Once you've settled on a module, it may be required to add your own layer of customization on top to get the desired result. Fortunately, Adobe Commerce 2 is extremely flexible and gives you multiple ways to modify the platform for your needs.

Customization

Does the extension you're considering do everything the way you expect? That might be true today, but as business requirements evolve, there may be a need to modify the extension to fit unforeseen requirements. In this case, it may be best to develop a custom module yourself. There are many ways to enhance existing behaviours in Adobe Commerce 2, most notably:

  • Plugins - Also known as interceptors, this feature allows you to intercept most public functions and alter arguments, output, or override internal logic.
  • Observers - Can be used to trigger custom code in response to a specific event. While many events are built-in to the platform, you can also inject your own custom events.
  • Dependency Injection - Allows for overriding and extending existing classes—and much more.

Using these, and other techniques, you can directly control the core platform and third-party behaviours to enact desired results.

Platform Version Changes

There's no way of knowing how long a module provider will offer ongoing maintenance and support, or if a module will lose relevance as your integrations change. But, that's the reality of all software updates.

In digital commerce as with any software upgrade, it's recommended to test any customizations in a pre-production environment to ensure no code conflicts exist, and that functionality or performance is not impacted. It's advisable to consider a module provider's longevity, and ability to provide long-term support when choosing to integrate. Selecting a provider from the official Magento Marketplace is a reliable way to find verified providers.

Quality Assurance & Testing

It's not just a matter of adding the extension and calling it a day. Have you considered all edge cases?

Since module installation is remarkably easy with Adobe Commerce 2, testing is often a higher labour cost—and it's worth the investment. Having the specific domain knowledge of how a module operates in edge conditions, and with different configuration setups, will give you an advantage when trying to debug potential issues down the line.

Support

After you've brought your new extension online, the vendor may release a new version with additional features or bug fixes. Depending on your needs, you may decide to upgrade. Upgrading to a newer module version using the Magento Marketplace is remarkably easy. See the Module Upgrade Guide to see for yourself.

Custom Code and Extensions

Extensions are a key part of Adobe Commerce implementations. There's a rich ecosystem of extensions available for Adobe Commerce and utilizing them can be very beneficial. However, being able to fine-tune their behaviour, or build your own custom module from scratch, will give you the highest level of control over your customers' shopping experience.