zekk Posted May 2, 2009 Share Posted May 2, 2009 could you make it so when a customer buys a product and selects googlecheckout that it changes the product name when purchasing?i.e. they want to buy product a and they click google checkout on checkout it says Giftset1 insted of product a?so product name changes when you are in google checkoutwould changing gcheckout.php ['name'] work? $googleCart->AddItem(new GoogleItem(utf8_decode($product['name']), utf8_decode($product['description_short']), intval($product['quantity']), number_format(Tools::convertPrice($product['price_wt'], $currency), 2, '.', ''))); foreach ($params['cart']->getDiscounts() as $voucher) $googleCart->AddItem(new GoogleItem(utf8_decode($voucher['name']), utf8_decode($voucher['description']), 1, '-'.number_format(Tools::convertPrice($voucher['value_real'], $currency), 2, '.', ''))); Link to comment Share on other sites More sharing options...
Site Posted January 14, 2010 Share Posted January 14, 2010 Hi Zekk,Do you know what to pass through as "Reference" ?would this be GoogleItem(utf8_decode($product['reference']), Link to comment Share on other sites More sharing options...
Site Posted January 14, 2010 Share Posted January 14, 2010 Just a note, changing "name" to "reference" worked!So people with, options on products... that want to use google checkout, should enable this... otherwise the name will pass through only the main product title with no options. Link to comment Share on other sites More sharing options...
Dusty Posted September 9, 2010 Share Posted September 9, 2010 Hi,I sell clothing and need GC to pass on the item name + size & color. Currently it just sends the name and a brief description. Any idea what I need to change get it to pass along the size & color?Dusty Link to comment Share on other sites More sharing options...
MrBaseball34 Posted September 9, 2010 Share Posted September 9, 2010 Hi,I sell clothing and need GC to pass on the item name + size & color. Currently it just sends the name and a brief description. Any idea what I need to change get it to pass along the size & color?Dusty Now, Dusty, you know I'm working on that... :cheese: Link to comment Share on other sites More sharing options...
Recommended Posts