Quote Originally Posted by kebeid View Post
Is anyone getting this error in the admin side:

Warning: Invalid argument supplied for foreach() in /admin/includes/functions/extra_functions/added_function_for_google_checkout.php on line 267

saying somethings wrong with the foreach() - it looks good to me.
As you know, that particular line contains:
Code:
foreach($googlepayment->mc_shipping_methods[$select_array[$i]['code']]['domestic_types'] as $method => $method_name) {
I'd suggest checking the mc_shipping_methods array (starting at line 66 in original GCO 1.0.5) in includes/modules/payment/googlecheckout.php to make sure they're all valid arrays. If you modified them (such as to add/remove shipping methods), it's possible you may have missed a closing parenthesis, a comma or something small like that.

Shawn