Skip to content
Advertisement

Php cart session is not update the attributes, only the quantity

Im trying to update cart attributes but i don’t know why is not working, the quantity is updateing just fine but the nested attributes wont. I don’t figure’it out how to make this to work properly when updating the session cart im not that experienced. Some help is appreciated. Thanks!

Php Cart Class full code:

JavaScript

Usage:

JavaScript

Nested output:

JavaScript

Advertisement

Answer

I’ve checked the code.

When you call the update method there is a comparison between the $attributes already stored in the item, and the new $attributes you are trying to update. The comparison is made by hashing the two arrays…

As you may find… it will not match (hashes will be distinct). In order to update $attributes you should remove the if comparison:

JavaScript

And add this two lines that updates the hash and attributes:

JavaScript

The final update method should be like this:

JavaScript

Then when you call:

JavaScript

You will see the item updated…

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement