Any Google Checkout gurus out there? I need help... see this post: Google Checkout not adding shipping charges to cart My site that I am having issues with is: http://www.DetailingGurus.com/ Thanks in advance.
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...
I just started using Google checkout so it never worked for me. I setup shipping using a price table like this:
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