Google Checkout not adding shipping

Discussion in 'Payment Processing' started by DanPonjican, Feb 5, 2009.

  1. #1
    DanPonjican, Feb 5, 2009 IP
  2. jestep

    jestep Prominent Member

    Messages:
    3,659
    Likes Received:
    215
    Best Answers:
    19
    Trophy Points:
    330
    #2
    They did switch the way you have to pass shipping to them. Is this something that just happened?

    Also, how are you calculating shipping? Flat rate, weight based, etc...
     
    jestep, Feb 5, 2009 IP
  3. DanPonjican

    DanPonjican Active Member

    Messages:
    268
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    80
    #3
    I just started using Google checkout so it never worked for me. I setup shipping using a price table like this:
    [​IMG]
     
    DanPonjican, Feb 5, 2009 IP
  4. DanPonjican

    DanPonjican Active Member

    Messages:
    268
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    80
    #4
    Anyone have any ideas? I really need to get this fixed.
     
    DanPonjican, Feb 6, 2009 IP
  5. ChristianSS

    ChristianSS Peon

    Messages:
    70
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    In the code for your checkout button place this after the last line of the code but still within the </form> tag.

    <input name="ship_method_name_1" type="hidden" value="Ground shipping"/>
    <input name="ship_method_price_1" type="hidden" value="5.00"/>
    <input name="ship_method_currency_1" type="hidden" value="USD"/>

    This designates ground shipping and a 5 dollar shipping charge to the order. You can change it to whatever you want.

    If you want more shipping option just repeat the code and change the shipping methods and price like below:
    <input name="ship_method_name_1" type="hidden" value="Ground shipping"/>
    <input name="ship_method_price_1" type="hidden" value="5.00"/>
    <input name="ship_method_currency_1" type="hidden" value="USD"/>

    <input name="ship_method_name_2" type="hidden" value="Overnight shipping"/>
    <input name="ship_method_price_2" type="hidden" value="12.00"/>
    <input name="ship_method_currency_1" type="hidden" value="USD"/>

    and so on...I hope this helps
     
    ChristianSS, Feb 14, 2009 IP