Google Checkout Not showing up

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
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?
13 年 前
Google Checkout is displayed on shopping cart page (not during checkout)
13 年 前
I see, thank you!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.