Display the product variation title in the variations list if not configured to generate titles automatically.

Created on 21 February 2024, about 1 year ago
Updated 28 May 2024, 10 months ago

I am not and have not used the "Generate variation titles based on attribute values" with any "Product variation types." With that fact in mind I am opening a new bug/issue as any other issues involving variation titles appears to be related to using the "Generate variation titles based on attribute values" to generate variation titles.

Problem:
Once a product variation is created and a title set, changing it later does not change what is displayed as the title. I would assume changing a title/text field it would update what is displayed everywhere it gets displayed. But this is not what is happening.

For example:
I am using variations as billing options with 3 different variations. Originally I named/set the titles for these as (Monthly Recurring, Annual Reccuring and One Time) later I changed the name of "Monthly Recurring" to just "Monthly" and then changed "Annual Recurring" to just "Annual".

The title field remains changed after saving the variation if I go to edit again, however what is seen in the list/table of variations for the product under title it has not changed. If I view the product as a user would where the add to cart form has a dropdown select for each variation those titles are still the original titles created when the variation was initially created for the product (Where it should say just "Monthly" or "Annual" it still shows "Monthly Recurring" and "Annual Recurring". I'll attach screen shots showing all that.

If this was just one product I would delete the variations and recreate them but I have this same issue across dozens of products and recreating each variation (even though they are litterally identical for each product and being I can just create variations and then asign them to multiple products (which honestly should be at least an optional way to handle a products variation ....grumble grumble instead of having to create variations for each product that are identical variations on different products, ideally as in for example I decide I want to add an option/variation to 50 existing products it would be easiest to just create a new variation and then assign it either one at a time through product/variation edit at the very least; ideally as a bulk operation) I'm honestly surprised this isn't how things work - but that's beside the issue at hand.

As it currently stands deleting each variation and remaking them is not an ideal situation.

I would also assume seeing the reported issues and patches provided for variation titles when auto generating variation titles is used may actually need this fixed first in order to fix any of those properly.

No errors have been produced and for good messure I'm running Drupal 10.2.3 on Apache/2.4.38 with PHP 8.1.13 and Commerce core 2 version 8.x-2.38

Feature request
Status

Fixed

Version

2.38

Component

Product

Created by

🇺🇸United States sidgrafix

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

Comments & Activities

  • Issue created by @sidgrafix
  • 🇺🇸United States sidgrafix

    Nevermind on this, go ahead and close it if you like.. I'm doubtful this is a bug (but could be, I have no idea what the default behavior for this should be - it's not documented)

    Finally, I figured out where the actual values come from that appear in the dropdown that is listed as "Title" in a products variation next to SKU in the displayed variations table of a product; pulls from commerce/product-attributes the attribute that was initially created meaning if an attribute is used and selected in the product variation it will use it's value as the title, otherwise it is what is expected and is the title of the variation itself. (so maybe bug or maybe not, default behavior escapes me)

    If it is the default behavior I think listing it as "Title" in the "Add variation" edit/tab the way it is, is extremely confusing! I would assume being when a products variation is added "as on creation it has a title field you have to fill out" that would be the "Title" listed next to the "SKU" in the table of variations for a product.

    To make such things less confusing I think some kind of helper that can indicate that the title there is not the title created for/in the products variation (as in it will not be the title you will see when you click on edit for a given variation when an attribute is used in the variation) as it is pulled from the "value" selected in the attribute (in my case initially created as a "Product attribute") which was then added as a field to the product variation type. Maybe simply putting titles that are not the variations title in brackets like (Monthly Recurring) with a key above the products variation tabe showing any title in () is the selected attribute value, or something along those lines with perhaps a little documentation explaining why this is like this. (unless this is a bug?)

    In general it's confusing enough having to create all the different aspects used in a product (outside of the product) to then use with and in a product, or product group, as well as any corresponding store attributes to then be limited by product variations are per product only. It honestly everything feels like it is all created/setup independently then nested upon nested with this includes that and that includes something else which in turn includes something else just to get it all to work together with very little documentation explaining things.
    - sorry, if any of that sounds harsh I apologize (i'm just a bit frustrated, the lack of documentation and explainations for things with commerce core) has me on edge being this is one of the last few things I need to get working properly on a Drupal 10 site replacing a Drupal 7 site..

  • Status changed to Closed: works as designed 11 months ago
  • Status changed to Active 11 months ago
  • 🇮🇱Israel jsacksick

    Sorry for closing this.
    Indeed I understand the behavior can be confusing...

    TBH, I'm also wondering why the following logic is in place for displaying the title in this table:

    if ($attribute_values = $entity->getAttributeValues()) {
          // The generated variation title includes the product title, which isn't
          // relevant in this context, the user only needs to see the attributes.
          $attribute_labels = EntityHelper::extractLabels($attribute_values);
          $title = implode(', ', $attribute_labels);
        }
        else {
          $title = $entity->label();
        }

    I believe we should check here the variation type settings... Basically, same as the logic that runs on product variation presave:

    if ($variation_type->shouldGenerateTitle()) {
          $title = $this->generateTitle();
          $this->setTitle($title);
        }

    So in other words, if the product variation type is configured to generate titles based on attribute values, we should check the attribute values, otherwise fallback to the product variation title...

  • Status changed to Needs review 11 months ago
  • Open in Jenkins → Open on Drupal.org →
    Core: 9.5.x + Environment: PHP 8.0 & MySQL 5.7
    last update 11 months ago
    793 pass
  • 🇮🇱Israel jsacksick

    So what about the attached patch? Does it solve the issue you're describing? Sorry for the late followup btw.

  • 🇮🇱Israel jsacksick

    Actually... Since the titles should be updated on presave, we should probably only display the title here... And we shouldn't have to generate the title on the fly...

  • 🇮🇱Israel jsacksick

    hm... I'm not sure about this change anymore, yeah it looks like this was done on purpose to not output the product title, based on the following comment:

          // The generated variation title includes the product title, which isn't
          // relevant in this context, the user only needs to see the attributes.

    Also, in any case the list could be replaced by a view, the reason why it's not a view by default is because of the draggable rows to allow reordering the variations.

    Need to think about this a little more...

  • 🇮🇱Israel jsacksick

    @sidgrafix: DId you initially set up attributes and finally ended up not using them but existing variations already have attribute values set?

    • jsacksick committed 6b725413 on 8.x-2.x
      Issue #3423044 by jsacksick, sidgrafix: Display the product variation...
  • 🇮🇱Israel jsacksick

    Decided to go ahead with the patch. If no configured to automatically generate titles, we should just output the variation title.

  • Status changed to Fixed 11 months ago
    • jsacksick committed fbd41b70 on 3.0.x
      Issue #3423044 by jsacksick, sidgrafix: Display the product variation...
  • 🇺🇸United States sidgrafix

    @jsacksick regarding your question in #8 - at this point I'm not entirely sure. After I got the products sorted regarding the title on variations as to what was coming from where (at that point still frustrated all a around with commerce) I moved on to other areas of the site that needed to be done yet (which is still in progress) and haven't been back to deal with commerce since.

    I think/may have (honestly can't remember exactly), initially intended to use variations as purchase options used with recurring payments, but inevitably ended up using product attributes to handle that with the variations created in each product. It still doesn't make much sense to me the way it all works (having to have product variation types - that aren't an actual products variation(s) having to create actual variations in the product itself but have to use a product variation type, but while creating the actual variation linking in the attributes which in my case is handling the billing options...

    - More so confusing that the products variation title uses the attributes option as the title and not the actual variation title. I do also think before I really dove into all that, at one point just testing to see what does what I may have (again not entirely sure) checked the option to generate variation titles based on attribute values to on, but then turned it off before I really got into setting things up and getting commerce products configured which may have complicated the entire ordeal. With that said I'm sure somewhere at some point don the line when I get back to it I probably have done something wrong or took steps in the wrong order when setting that all up and will have to redo some things as "my luck" tends to go. Especially being the original still active site using Drupal 7 uses ubercart and the new version started in Drupal 9 now 10 still in development is now using commerce.

    And no, I have not tried this patch - but surely will when I get back to commerce. I did try some of the other patches at the time that seemed like they could be related, but none produced the results I was looking for.

    In all "thank you" for giving this some attention, anything added that works towards making things less confusing is a plus in my book!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024