Google Checkout Not showing up

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 13 años
Hello all,

Using all standard installation:
  I turned on Google Checkout, but it doesn't show up as an option during checkout. I looked at the code and Google the plugin is there, but it is filtered out when loaded.

In the Checkout Controller => PreparePaymentMethodModel()

It works if I comment out the LINQ where criteria as follows:

            var boundPaymentMethods = _paymentService
                .LoadActivePaymentMethods()
                //.Where(pm => pm.PaymentMethodType == PaymentMethodType.Standard || pm.PaymentMethodType == PaymentMethodType.Redirection)
                .ToList();


So how do I get it to show up without this hack?
Hace 13 años
Google Checkout is displayed on shopping cart page (not during checkout)
Hace 13 años
I see, thank you!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.