Issue:
After changing the size of the product and refreshing the page, we faced an error in your module:
Solution:
When foreach, in the array $map2[$map[$code]] there is an element that does not contain a $value index, leading to the undefined index error. So, you need to check the isset before assigning the value.
To resolve the issue, please perform some changes in the following file:
app/code/Bss/Simpledetailconfigurable/Helper/UrlIdentifier.ph
modified line 139 from:
"$superAttribute[$map[$code]] = $map2[$map[$code]][$value];"
to:
"if (isset($map2[$map[$code]][$value])) {
$superAttribute[$map[$code]] = $map2[$map[$code]][$value];
}"
If you need any furth help, please feel free to contact us
We'd be more than happy to support!
WHO IS BSS COMMERCE?
BSS Commerce is a trusted Magento 2 extensions provider with 14+ years of experience, serving 75,000+ customers worldwide. We are an Adobe Commerce Solution Bronze Partner and a Select Magento Extensions Builder, reinforcing our expertise in the Magento ecosystem.
We specialize in developing 150+ high-quality Magento 2 extensions that enhance functionality, improve user experience, and support scalable growth. Our reputation is built on long-term partnerships, positive feedback, and proven performance-driven solutions.
Explore our extensions: https://bsscommerce.com/magento-2-extensions.html
For B2B businesses, our Magento B2B Extension by BSS Commerce is a flagship and widely adopted solution globally, offering advanced pricing, company account management, and streamlined workflows.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article