google-code-export / google-checkout-oscommerce

Automatically exported from code.google.com/p/google-checkout-oscommerce
1 stars 0 forks source link

Grey Button #36

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
No matter what I do, the GC button never turns blue.  It's always grey.  
I'm using v1.3RC2.  Please let me know why I can't use this contribution.

Original issue reported on code.google.com by laurelss...@gmail.com on 30 Apr 2007 at 2:46

GoogleCodeExporter commented 9 years ago
* A disabled button is displayed in the following cases:
 * 1. If merchant id or merchant key is not set 
 * 2. If there are multiple shipping options selected and they use different shipping
tax tables
 *  or some dont use tax tables

Original comment by rovagn...@gmail.com on 1 May 2007 at 4:37

GoogleCodeExporter commented 9 years ago
Like I said before, I'm not getting any errors.

Original comment by laurelss...@gmail.com on 9 May 2007 at 9:02

GoogleCodeExporter commented 9 years ago
Hi, I'm having the same problem.

I have cecked the merchant id and the merchant key and they are both correct. 
So i beleive it must be the 
multiple shipping / tax issue.

Not really sure what you mean by "multiple shipping options selected and they 
use different shipping
tax tables"?

Could you expand on it to make it more clear?

We have one tax zone and that is NY
We Have 4 shipping methods in our googlecheckout shipping module.

I will post the code for the shipping methods below. if you could enlighten me 
as to where the problem might 
be that would be great

Joe

$this->mc_shipping_methods = array(
                        'zones' => array(
                                    'domestic_types' =>
                                      array(

                                           ),

                                    'international_types' =>
                                      array(

                                           ),
                                        ),

                                        'spu' => array(
                                    'domestic_types' =>
                                      array(

                                           ),

                                    'international_types' =>
                                      array(

                                           ),
                                        ),
                        'usps' => array(
                                    'domestic_types' =>
                                      array(
                                          'Priority' => 'USPS - No Tracking Available',

                                           ),

                                    'international_types' =>
                                      array(

                                           ),
                                        ),
                        'ups' => array(
                                    'domestic_types' =>
                                      array(
                                          '1DA' => 'Next Day Air',
                                          '1DP' => 'Next Day Air Saver',
                                          '2DA' => '2nd Day Air',
                                          '3DS' => '3 Day Select',
                                          'GND' => 'Ground',

                                           ),

                                    'international_types' =>
                                      array(
                                          'XPD' => 'Int',                                           ),
                                        ),
                                  );

$this->mc_shipping_methods_names = array(
                                         'zones' => 'Canada',
                                         'spu' => 'Store Pickup',
                                         'usps' => 'United States Postal Service',
                                         'ups' => 'United Parcel Service',
                                        );

Original comment by gadgetlo...@gmail.com on 9 Jun 2007 at 3:28