Hi,
I am working on packing charge extension with multiple conditions based on weight.
My Directory Structure:
packingcharge
├── cartconditions
│ └── PackCharge.php
├── Extension.php
├── language
│ └── en
│ └── default.php
└── models
├── config
│ └── formconfig.php
└── PackingCharge.php
And i have used to configure apply cart condition at cartconditions/PackCharge.php exactly same as other cart conditions like PaymentFee, Tip, And Tax. (extensions/igniter/cart/cartconditions/…)
Now my problem is, the packing charge not being applied to cartconditions (Not showing in cart)
How to fix that!?
Thank you.