You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 17, 2022. It is now read-only.
Notice: Undefined index: value in …r/wp-content/plugins/woo-poly-integration/src/Hyyan/WPI/Cart.php on line 188
change this:
if ($term && $term->name === $data['value']) {
to that:
if ($term && isset($data['value']) && $term->name === $data['value']) {
seems to fix the notice!
The text was updated successfully, but these errors were encountered: