By woocommerce-sl, on , posted on March 6, 2025

Managing software licenses across multiple products can be a daunting task, especially when each product in an order traditionally receives a unique license key. The WooCommerce Software License plugin addresses this complexity with a smart feature: the ability to assign the same license key to all products within a single order. This enhancement not only streamlines license management for both merchants and customers but also ensures that licensed applications continue to function seamlessly with all their update features and API integrations.

How It Works

By default, the plugin is configured to generate or assign individual license keys for every product purchased. This setup caters to scenarios where products are designed to have separate licenses, providing granular control over licensing. However, certain licensing models benefit from a unified approach, where a single license key is applied to all items in an order. With this feature, when a customer completes a purchase, the plugin bypasses the default behavior and assigns one license key across all the purchased products. This uniformity simplifies post-purchase management, especially in cases where the products are complementary or part of a bundle.

Benefits for Customers

For customers, managing a single license key instead of multiple keys is a significant convenience. It reduces the risk of misplacing or mismanaging multiple credentials and minimizes confusion when it comes to software activation or renewal. Instead of tracking down separate keys for each product, customers can now activate or update all their software using one unified key. This not only enhances the overall user experience but also reduces support queries related to license management, thereby easing the burden on customer service teams.

Enhanced Functionality for Licensed Applications

A common concern with simplifying license key distribution is whether it might impact the functionality of the licensed applications. Rest assured, the WooCommerce Software License plugin ensures that even when the same key is applied across all products in an order, the software’s APIs remain fully functional. The unique product ID ensures that the system accurately distinguishes between individual order items. Licensed applications continue to receive updates and can leverage additional features such as API integrations, ensuring that the streamlined licensing process does not compromise on performance or security. Whether the license key is used for enabling auto-updates or accessing premium support through the API, the system is designed to handle all standard operations with ease.

Integrating the Feature

To create a unique license key for the products in the order, the filter woo_sl/generate_license_key can be used. The following code assigns the created license key to all other licensed products in the order:

    add_filter ( 'woo_sl/generate_license_key', 'custom_woo_sl_generate_license_key', 999, 4 );
    function custom_woo_sl_generate_license_key ( $license_key, $order_id, $order_item_id, $license_group_id )
        {
            global $WOOSL_UniqueLicenseKeys;
            
            if ( ! is_array ( $WOOSL_UniqueLicenseKeys ) )
                $WOOSL_UniqueLicenseKeys    =   array ();
                
            if ( ! isset ( $WOOSL_UniqueLicenseKeys[ $order_id ] ) )
                $WOOSL_UniqueLicenseKeys[ $order_id ]   =   $license_key;
                
            $license_key    =   $WOOSL_UniqueLicenseKeys[ $order_id ];
            
            return $license_key;   
        }

To assign a specific license key—for example, one retrieved from a custom API—you can use the following code example:

    add_filter ( 'woo_sl/generate_license_key', 'custom_woo_sl_generate_license_key', 999, 4 );
    function custom_woo_sl_generate_license_key ( $license_key, $order_id, $order_item_id, $license_group_id )
        {
            global $WOOSL_UniqueLicenseKeys;
            
            if ( ! is_array ( $WOOSL_UniqueLicenseKeys ) )
                $WOOSL_UniqueLicenseKeys    =   array ();
                
            if ( ! isset ( $WOOSL_UniqueLicenseKeys[ $order_id ] ) )
                {
                    $endpoint = 'api.example.com';

                    $body = [
                        'name'  => 'LicenseKeyRetrieve',
                        'email' => 'lkr@example.com',
                    ];

                    $body = wp_json_encode( $body );

                    $options = [
                        'body'        => $body,
                        'headers'     => [
                            'Content-Type' => 'application/json',
                        ],
                        'timeout'     => 60,
                        'redirection' => 5,
                        'blocking'    => true,
                        'httpversion' => '1.0',
                        'sslverify'   => false,
                        'data_format' => 'body',
                    ];

                    $apiResponse =  wp_remote_post( $endpoint, $options );
                    $apiBody     = json_decode( wp_remote_retrieve_body( $apiResponse ) );
                    $WOOSL_UniqueLicenseKeys[ $order_id ]   =   $apiBody->license_key;
                }
                
            $license_key    =   $WOOSL_UniqueLicenseKeys[ $order_id ];
            
            return $license_key;   
        }

Conclusion

The ability to assign a single license key to all products in an order represents a significant leap forward in license management for WooCommerce users. By simplifying the process, the WooCommerce Software License plugin not only improves the customer experience but also maintains the full range of functionality required by licensed applications. This innovation strikes the perfect balance between ease-of-use and powerful licensing capabilities, making it a valuable asset for any business looking to streamline its software distribution process. With this feature, businesses can ensure that license management is as efficient and user-friendly as possible, paving the way for smoother operations and happier customers.

 

Read more

By woocommerce-sl, on , posted on March 4, 2025

Migrating to the WooCommerce Software License plugin offers a host of benefits for your online store—most notably, a substantial boost in API processing speed. If you’re looking for an upgrade from the WooCommerce API Manager, this guide will walk you through the migration process while emphasizing the performance edge and reliability of the new plugin. (more…)

Read more

By woocommerce-sl, on , posted on May 28, 2024

The WooCommerce Software License plugin is an essential tool for licensing downloadable software and applications. It offers a comprehensive solution for integrating a licensing system with your code, ensuring secure and efficient management of software licenses.

This plugin package comes with a sample integration code that demonstrates all the main features, including license activation, deactivation, and status verification on the server side. These capabilities make it easy to implement and manage licensing for your products, providing a seamless experience for both developers and end-users. (more…)

Read more

By woocommerce-sl, on , posted on May 23, 2024

A license can be configured to allow multiple assignments to domains or devices, depending on the Product License setup. By default, when a customer purchases multiple quantities of a product, the system generates a corresponding number of license keys, up to the number of items purchased. (more…)

Read more

By woocommerce-sl, on , posted on October 25, 2023

Managing licenses for your software products can be a tedious task, especially when you have multiple licenses to keep track of. That’s why the WP Software License for WooCommerce provides an easy-to-use All Licenses interface that allows administrators to manage all aspects of their licenses in one place.

The All Licenses interface is designed to provide administrators with a comprehensive view of their licenses and the ability to manage each license individually. Administrators can view the status of each license, including the product name, customer, license key, expiration details, license generation date, and active domains. (more…)

Read more

By woocommerce-sl, on , posted on June 15, 2023

WooCommerce is a popular e-commerce platform that provides users with a wide range of plugins to enhance their online stores. One such plugin is the WooCommerce Software License plugin, which allows store owners to manage and distribute software licenses to their customers. A key feature of this plugin is the client interface, which empowers customers to manage their license keys. However, there is also an option to disable this feature from the administrator’s perspective. In this article, we will explore the benefits and considerations of using the client interface in the WooCommerce Software License plugin.
(more…)

Read more

By woocommerce-sl, on , posted on November 25, 2022

The WP Software License incorporates a range of additional filters and actions, allowing you to fulfill diverse requirements.

The ‘View License’ interface is highly customizable. To initiate customization, start by duplicating the /templates/my-account/my-license-manage.php template file from the plugin directory to your theme or child theme, specifically to /woocommerce/my-account/my-license-manage.php. This approach ensures that any modifications made to the template file remain unaffected by future plugin updates, offering a seamless and worry-free customization process. (more…)

Read more

By woocommerce-sl, on , posted on September 22, 2022

In certain scenarios, the products and their attached licenses are required to be sold just once to each individual customer. Once purchased if try later to buy the same product it should block the add-to-cart operation.

This can be achieved programmatically through a custom code. That works for any product type as physical, virtual, downloadable, simple, variation etc. There isn’t a specific requirement on the product or the license set-up, for the functionality to work. (more…)

Read more

By woocommerce-sl, on , posted on January 17, 2020

Using Expiration for Products provides a way to set limited access to a Product, mainly set as downloadable content or generally dependent to licence key. The Expire setup is easy through the interfaces implemented by WP Software License plugin.

As default, on order completed the system set automatically the expire details, those consist on few details:

  • Subscription start date
  • Expiration date
  • Licence status

(more…)

Read more

By woocommerce-sl, on , posted on March 5, 2018

On site interaction using any API methods, the system reply through an JSON encoded message including a status code to makes interpretation easier.

Success

  • s100
    Licence Key Successfully activated for ‘domain’
  • s101
    Licence Key Successfully activated for ‘domain’ – *first pass
  • s201
    Licence Key Successfully Unassigned
  • s203
    Licence Key Is Unassigned
  • s205
    Licence key Is Active and Valid for Domain ( when assign_domain_to_key_on_status_check option active )
  • s215
    Licence key Is Active and Valid for Domain
  • s401
    *a full response with code metadata on calling plugin_update or theme_update methods
  • s402
    *a full response with code metadata on calling plugin_information method
  • s403
    *a full response with code metadata on calling code_information method
  • s610
    *Licence Key Successfully Deleted

Error

  • e001
    Invalid provided data
  • e002
    Invalid licence key
  • e003
    Order does not exist anymore
  • e004
    Order status not allowed
  • e110
    Invalid licence key or licence not active for domain
  • e111
    Invalid Data
  • e112
    You had reached the maximum number of domains for this key
  • e204
    Licence key not active for current domain
  • e301
    Licence Key does not match this product
  • e312
    Licence is not Active, current status is ‘STATUS’
  • e419
    Invalid Product Unique ID

Read more