Skip to content

shipping-methods

Auto Added by WPeMatico

Custom Discount Breaks Shipping Rate Calculation in Quote

<?php declare(strict_types=1); namespace VendorModuleModelQuoteTotal; use MagentoQuoteApiDataShippingAssignmentInterface; use MagentoQuoteModelQuote; use MagentoQuoteModelQuoteAddressTotal; use MagentoQuoteModelQuoteAddressTotalAbstractTotal; use MagentoQuoteModelQuoteItem as QuoteItem; use MagentoQuoteModelQuoteAddress; class CustomDiscount extends AbstractTotal { private const CODE = ‘custom_discount’; private const LABEL = ‘Points Redeemed’; public function __construct( ) { $this->setCode(self::CODE);… Read More »Custom Discount Breaks Shipping Rate Calculation in Quote

three step checkout

a 3-step checkout customization. The steps should include: Shipping Step Shipping Method Step Payment Step However, instead of displaying the shipping methods in the Shipping Step, I need to show them in the Shipping Method Step. I’ve successfully created the… Read More »three step checkout