Checkout button redundant if using paypal express

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 yıl önce
As a first time user of nopCommerce I'm very impressed, although would appreciate any assistance you can give with the following.

I have set up paypal express as the sole payment provider for my install (nop 3.0) and as such the nop Checkout button is superceded by the paypal express checkout button and seems redundant for this configuration. (i.e. clicking on the nop Checkout button means you get the "no payment methods available" error)

This would create confusion for users of the store - is it possible to remove the Checkout button through configuration, or do I need to download and edit the source to do this?

Thanks in advance for any help you can provide!

Cheers
Tony
11 yıl önce
You don't need the source, but you do need to modify html / css.

remove this, or better, change the css class checkout-button for visibility...

Presentation\Nop.Web\Views\ShoppingCart\OrderSummary.cshtml

                            <button type="button" id="checkout" name="checkout" class="button-1 checkout-button">
                                <span>@T("Checkout.Button")</span>
                            </button>


Note though, there may be more to do (e.g. Mobile page?  mini-shopping-cart?  )
11 yıl önce
Thanks NewYork

I will give that a go, seems a simple solution to my problem. :)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.