2012-05-03 45 views
0

我在nopcommerce中設置了Google checkout付款方式,它出現在購物車上,但它不起作用。我看了一下html,發現id = form-googlecheckout的表單沒有出現在我的頁面上。爲什麼它可能會發生?Google結帳按鈕在nopcommerce中不起作用

此外,我不知道在谷歌結帳的流量。處理付款後,我的客戶是否會被重定向到一個檢查頁面?

感謝, 雅羅斯拉夫

回答

1

關於第二個問題,答案是否定的。

在Google Checkout交易完成後,買方沒有自動重新指定。買方必須在提供的鏈接上點擊點擊才能導航回賣方的網站。

您可以通過編程方式爲買家提供鏈接,以便在完成訂單後點擊並返回您的網站。使用Checkout API,您可以爲每個訂單更改此URL。見continue_url paramenter:

https://developers.google.com/checkout/developer/Google_Checkout_HTML_API_Parameter_Reference#tag_continue-shopping-url

+0

好,我發現了第一個問題的答案:'code' @using(Html.BeginRouteForm( 「Plugin.Payments.GoogleCheckout.SubmitButton」,FormMethod.Post,新{ID =「形式googlecheckout「}))'代碼'不能在其他形式:)謝謝。 –