Cart display missing items after upgrade to version 3.0.6
-
I have a product filter set up to discount products of a certain category when there are bundles of 5. After upgrading to the latest version 3.06, if more than 5 items are added to the cart, only the discounted bundled line items are shown. For example if I try to add 6-9 items of the same category to the cart only the bundle of 5 items are added.
Fortunately this was discovered on our staging server and the live server has not been updated. By using the “Tools” tab I was able to compare the filter structures between the old and new versions. I noticed there is a new element (“qty_end”: 5) in the filter structure for version 3.06, perhaps that could be associated with this new issue. Here is the partial output from the “Tools” tab for each version:
VERSION 3.0.6:
[
{
“type”: “package”,
“filters”: [
{
“qty”: 5,
“qty_end”: 5,
“type”: “product_categories”,
“method”: “in_list”,
“value”: [
“Cards”
],
“product_exclude”: {
“on_wc_sale”: “”,
“already_affected”: “1”,
“values”: []
}
}
],
VERSION 3.0.4:
[
{
“type”: “package”,
“filters”: [
{
“qty”: 5,
“type”: “product_categories”,
“method”: “in_list”,
“value”: [
“Cards”
],
“product_exclude”: {
“on_wc_sale”: “”,
“already_affected”: “1”,
“values”: []
}
}
],
- The topic ‘Cart display missing items after upgrade to version 3.0.6’ is closed to new replies.