What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

Bug Fixed Version < 5.4.0 fix

Status
Not open for further replies.

Clement

Freaky Coder
Staff member
For anyone running version prior to 5.4.0, there is an issue with Free coupons, here is the fix:

Edit the file src/addons/XFA/RMMarketplace/XFRM/Entity/ResourceItem.php

Search for:
PHP:
case 'discount':
    $price = $price - $coupon->coupon_amount;
  break;

Add before:
PHP:
case 'free':
    $price = $price - $this->xfa_rmmp_amount;
  break;
 
Status
Not open for further replies.
Top