Posts

Magento 2: Promotion percentage off, but only upto a fixed amount

Image
0 I want to make a rule where I offer my customers a discount of: 50% on their whole cart, but the max discount amount is fixed to 20$. Can I make this in Magento 2, using one or a couple of rules? Help! magento2 shopping-cart-price-rules discount promotions share asked 2 mins ago Fokker Fokker 50 8 add a comment  |  0 ...

Magento2: mini-cart not empty after programmatically placing an order on success page

Image
0 I have a custom payment gateway module. When you click on the Place Order button on checkout, it redirects you to an external payment page & after that you return to a custom controller on that module. This controller handles the payment response & if it's all good - it converts the current quote to an order using placeOrder() from MagentoQuoteApiCartManagementInterface . Then it redirects you to the normal success page ('checkout/onepage/success/'). The problem is, although the order has been placed & it all worked as it should - the minicart on the header is not empty (You get to the success page, see a link to the order details, but the mini cart stays full). I tested other payment methods like checkmo , etc... & they always clear the carts somehow, it only happens with this p...