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

Created by Esther Nguyen, Modified on Mon, 06 Sep 2021 at 02:23 PM by Esther Nguyen

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!


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 atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article