Comments on: Google Checkout disabled – Not available with these items http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/ Notes on Web Development Wed, 23 Dec 2020 09:25:05 +0000 hourly 1 https://wordpress.org/?v=4.8.15 By: rosh http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-5034 Wed, 03 Oct 2012 12:58:38 +0000 http://www.aschroder.com/?p=184#comment-5034 greate just what i wanted

]]>
By: Terry Morse http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-2975 Tue, 21 Feb 2012 19:23:28 +0000 http://www.aschroder.com/?p=184#comment-2975 Ashley,

Thanks for posting this, I was bitten by the exact same problem. Products->Prices — sneaky place to hide this Google Checkout setting, since pricing has nothing to do with checkout.

]]>
By: Greg http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-2334 Wed, 01 Jun 2011 14:59:18 +0000 http://www.aschroder.com/?p=184#comment-2334 @Ashley.. You are right, my bad. Although for anyone in my position where I have 90K products and want all of them available via Google Checkout it is an option… The script works, but on that many products it takes a while, and with daily updates it may never end!

]]>
By: Ashley http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-2331 Fri, 27 May 2011 21:33:41 +0000 http://www.aschroder.com/?p=184#comment-2331 @Greg Don’t change core files!. Also that might mean that new products (where the boolean is correct) would be disabled instead of enabled? Certainly if you do what Greg suggests, make a local copy of the core file, and test it first before making the change in production.

]]>
By: Greg http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-2326 Thu, 26 May 2011 19:06:02 +0000 http://www.aschroder.com/?p=184#comment-2326 You could just change the function in /app/code/core/Mage/GoogleCheckout/Block/Link.php to reverse the check:

public function getIsDisabled()
{
$quote = Mage::getSingleton(‘checkout/session’)->getQuote();
/* @var $quote Mage_Sales_Model_Quote */
foreach ($quote->getAllVisibleItems() as $item) {
/* @var $item Mage_Sales_Model_Quote_Item */
if (!$item->getProduct()->getEnableGooglecheckout()) {
return false;
}
}
return true;
}

]]>
By: AndrewBoldman http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-299 Thu, 04 Jun 2009 13:47:49 +0000 http://www.aschroder.com/?p=184#comment-299 Great post! Just wanted to let you know you have a new subscriber- me!

]]>
By: Ashley http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-286 Fri, 29 May 2009 22:02:14 +0000 http://www.aschroder.com/?p=184#comment-286 That’s really odd, because normally if it is grey you can’t click it. Can you check the URL of the image?

]]>
By: Matt http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-285 Fri, 29 May 2009 18:11:02 +0000 http://www.aschroder.com/?p=184#comment-285 I have google checkout enabled, but i get the grayed out logo. If you click the logo it takes you to checkout. Am I missing something in your fix. Do I have to manually override it somehow?

]]>
By: Ashley http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-212 Sun, 19 Apr 2009 06:47:57 +0000 http://www.aschroder.com/?p=184#comment-212 I have written about about how to bulk update your Magento products to enable them for Google Checkout. Let me know how you go.

]]>
By: Alex http://www.aschroder.com/2009/02/google-checkout-disabled-not-available-with-these-items/comment-page-1/#comment-211 Sun, 19 Apr 2009 00:30:06 +0000 http://www.aschroder.com/?p=184#comment-211 Much needed SQL update script for this problem. I want to fix the database once and for all, as at present I simply disable this check.
1000’s of products, so yes, Magento WILL crash..

]]>