- Issue created by @weemondo
- 🇦🇷Argentina weemondo
I haven't tested this yet but I propose in `commerce_license_field_widget_single_element_form_alter` we "maintain the default value" ONLY if the form is editing an existing entity. If the form is for a new item we ignore the default value.
I will try to create a patch when I can.
- 🇦🇷Argentina weemondo
Above patch is broken. It correctly fixes the license select options but the license type form below still shows the form for the previous default.
- 🇦🇷Argentina weemondo
For now, we are manually disabling the access control plugin.
function my_module_commerce_license_type_info_alter(array &$plugins) { if (isset($plugins["commerce_license_access_control"])) { unset $plugins["commerce_license_access_control"]; } }