Hide Payment information tab on checkout

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 năm cách đây
Please help me to disable payment information tab during checkout in 3.8
6 năm cách đây
[email protected] wrote:
Please help me to disable payment information tab during checkout in 3.8



Open Payment Processor e.g CheckMoneyOrderPaymentProcessor.cs from Nop.Plugin.Payments.CheckMoneyOrder then find below code

/// <summary>
        /// Gets a value indicating whether we should display a payment information page for this plugin
        /// </summary>
        public bool SkipPaymentInfo
        {
            get { return false; }
        }


You can pass true to this property then your payment info step will be skip

Thanks,
Jatin
6 năm cách đây
See more about this here
6 năm cách đây
Thank you i got it already
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.