V1.3.1: Issue when changing the product size and refreshing the page

Created by Esther Nguyen, Modified on Mon, 13 Apr at 2:41 AM by Support Agent

Issue: 

After changing the size of the product and refreshing the page, we faced an error in your module: 

https://prnt.sc/1r4p55d 


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

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article