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?