Add to cart form does not display certain variation types

Created on 5 March 2025, 29 days ago

Describe your bug or feature request.

When using commerce core (commerce cart - add to cart form) the form is broken when using only the recurring product type.

If a bug, provide steps to reproduce it from a clean install.

NOTE: These steps not tested but should be reproduceable with:

1. Install drupal commerce
2. Install drupal commerce_recurring
3. Setup a product
4. Setup product variations of the recurring type only (this is key, when a single product of type "product" exists the bug is not present)

Affected code and change history

Affected code: https://git.drupalcode.org/project/commerce/-/blame/3.0.x/modules/cart/s...
Original Drupal.org issue: https://www.drupal.org/project/commerce/issues/3089040 Single product with multiple variation types Fixed

Conditions that create the bug

The bug is present when on line 161 the component type is "commerce_product_variation_attributes" but when only one variation type is used (in my example, the "recurring product" variation type, in theory should be able to use any variation type that uses the "commerce_product_variation_attributes" component type), the line that resets the component type back to "commerce_product_variation_title" and thus fixes the title display is never run. Since the affected foreach is breaking after more than one variation type is found it seems to make sense to remove the foreach and this will be presented in my attached patch as a possible solution.

🐛 Bug report
Status

Active

Version

2.40

Component

Cart

Created by

🇺🇸United States ccjjmartin Austin, TX

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @ccjjmartin
  • 🇺🇸United States ccjjmartin Austin, TX
  • 🇺🇸United States ccjjmartin Austin, TX

    As a note, I flagged this as the 2.40 version because that is the version I am testing with but I linked the code from the 3.0.x version because it is still present in the latest version of the module.

  • 🇺🇸United States ccjjmartin Austin, TX

    Also as a note, I have products with multiple variation types and they display both variation types. So the intent of the original issue has not been broken by the proposed patch as far as I can tell.

  • Pipeline finished with Failed
    29 days ago
    Total: 426s
    #441248
  • 🇺🇸United States ccjjmartin Austin, TX
  • Merge request !419Resolve #3511232 "Add to cart 2" → (Open) created by ccjjmartin
  • 🇺🇸United States ccjjmartin Austin, TX

    ccjjmartin changed the visibility of the branch 3511232-add-to-cart to hidden.

  • Pipeline finished with Failed
    29 days ago
    Total: 513s
    #441278
  • 🇺🇸United States ccjjmartin Austin, TX

    The currently proposed MR appears to be breaking tests from the original parent issue, this will need some more work:

    ---- Drupal\Tests\commerce_cart\Functional\MultipleCartMultipleVariationTypesTest ----
    Status    Group      Filename          Line Function                            
    --------------------------------------------------------------------------------
    Fail      Other      phpunit-63.xml       0 Drupal\Tests\commerce_cart\Function
        PHPUnit Test failed to complete; Error: PHPUnit 10.5.45 by Sebastian Bergmann and contributors.
        
        Runtime:       PHP 8.3.17
        Configuration: /builds/issue/commerce-3511232/web/core/phpunit.xml.dist
        
        F                                                                   1 / 1 (100%)
        
        HTML output was generated.
        http://localhost/web/sites/simpletest/browser_output/Drupal_Tests_commerce_cart_Functional_MultipleCartMultipleVariationTypesTest-1-18769668.html
        http://localhost/web/sites/simpletest/browser_output/Drupal_Tests_commerce_cart_Functional_MultipleCartMultipleVariationTypesTest-2-18769668.html
        http://localhost/web/sites/simpletest/browser_output/Drupal_Tests_commerce_cart_Functional_MultipleCartMultipleVariationTypesTest-3-18769668.html
        
        
        Time: 00:23.784, Memory: 6.00 MB
        
        Multiple Cart Multiple Variation Types (Drupal\Tests\commerce_cart\Functional\MultipleCartMultipleVariationTypes)
         ✘ Add to cart
           ┐
           ├ Behat\Mink\Exception\ElementNotFoundException: Form field with id|name|label|value "Color" not found.
           │
           │ /builds/issue/commerce-3511232/vendor/behat/mink/src/Element/TraversableElement.php:271
           │ /builds/issue/commerce-3511232/modules/cart/tests/src/Functional/MultipleCartMultipleVariationTypesTest.php:174
           ┴
        
        1 test triggered 1 deprecation:
        
        1) /builds/issue/commerce-3511232/web/core/modules/views/src/ViewsConfigUpdater.php:258
        The update to convert "numeric" arguments to "entity_target_id" for entity reference fields for view "profiles" is deprecated in drupal:10.3.0 and is removed from drupal:12.0.0. Profile, module and theme provided configuration should be updated. See https://www.drupal.org/node/3441945
        
        Triggered by:
        
        * Drupal\Tests\commerce_cart\Functional\MultipleCartMultipleVariationTypesTest::testAddToCart
          /builds/issue/commerce-3511232/modules/cart/tests/src/Functional/MultipleCartMultipleVariationTypesTest.php:168
        
        FAILURES!
        Tests: 1, Assertions: 31, Failures: 1, Deprecations: 1.
    
  • 🇺🇸United States ccjjmartin Austin, TX
  • Pipeline finished with Failed
    29 days ago
    Total: 752s
    #441312
  • 🇺🇸United States ccjjmartin Austin, TX

    Looks like this is actually related to variation types with no attributes. Seems like the component type commerce_product_variation_attributes expects the variation types to have attributes in order to be shown. Even then though the cart is still broken and not displaying the variation attribute label.

  • 🇺🇸United States ccjjmartin Austin, TX

    Adding an attribute to the product seems to have resolved my immediate issues, a possible "fix" for this could either be some error handling feedback to the user to let them know attributes are required. Or have a fallback to the title handler if no attributes are provided by the user.

  • 🇺🇸United States ccjjmartin Austin, TX

    ccjjmartin changed the visibility of the branch 3511232-add-to-cart-2 to hidden.

  • 🇺🇸United States ccjjmartin Austin, TX

    Don't use either of the MRs or patches. A different solution entirely will be needed once an approach is determined.

  • 🇮🇱Israel jsacksick

    I don't think we want to solve this programatically... This to me is a configuration issue... The fallback that currently exists in the code and that is touched by the patch is in case a product type reference multiple variations types which cannot be supported by the attributes widget.

    This is more like " won't fix" to me.

Production build 0.71.5 2024