Difference between revisions of "ConversionRuler Google Checkout Integration"
From Market Ruler Help
Line 3: | Line 3: | ||
<nowiki><merchant-checkout-flow-support> | <nowiki><merchant-checkout-flow-support> | ||
<parameterized-urls> | <parameterized-urls> | ||
− | <parameterized-url url="https://www.conversionruler.com/bin/tracker.php?siteid=</nowiki>'''XXXXX'''<nowiki>&amp;actn=</nowiki>AAAAA<nowiki>"> | + | <parameterized-url url="https://www.conversionruler.com/bin/tracker.php?siteid=</nowiki>'''XXXXX'''<nowiki>&amp;actn=</nowiki>'''AAAAA'''<nowiki>"> |
<parameters> | <parameters> | ||
− | <url-parameter name=" | + | <url-parameter name="cramount0" type="order-total" /> |
− | <url-parameter name=" | + | <url-parameter name="cramount1" type="tax-amount /> |
+ | <url-parameter name="cramount2" type="shipping-amount /> | ||
+ | <url-parameter name="crtext0" type="order-id" /> | ||
</parameters> | </parameters> | ||
</parameterized-url> | </parameterized-url> | ||
Line 12: | Line 14: | ||
</merchant-checkout-flow-support></nowiki> | </merchant-checkout-flow-support></nowiki> | ||
− | + | For integration using Google Checkout HTML, include the following [[HTML]] on your page which submits order information to Google Checkout: | |
+ | |||
+ | <nowiki><input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.url" value="https://www.conversionruler.com/bin/tracker.php?siteid=</nowiki>'''XXXXX'''<nowiki>&amp;actn=</nowiki>'''AAAAA'''<nowiki>"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.name" value="crtext"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.type" value="order-id"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.name" value="cramount0"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.type" value="order-total"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-3.name" value="cramount1"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-3.type" value="tax-amount"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-4.name" value="cramount2"/> | ||
+ | <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-4.type" value="shipping-amount"/></nowiki> | ||
+ | |||
+ | In both examples, you need to change: | ||
* '''XXXXX''' in the above to your [[Site ID]] which is visible in the snippets as '''siteid=XXXXX''' | * '''XXXXX''' in the above to your [[Site ID]] which is visible in the snippets as '''siteid=XXXXX''' | ||
* '''AAAAA''' in the above to your [[Action Code]] which is visible in the snippets as '''actn=AAAAA''' | * '''AAAAA''' in the above to your [[Action Code]] which is visible in the snippets as '''actn=AAAAA''' | ||
Line 20: | Line 34: | ||
For tracking additional information, visit the [http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html Google Checkout Pixel Tracking] documentation, or contact us for a custom solution. | For tracking additional information, visit the [http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html Google Checkout Pixel Tracking] documentation, or contact us for a custom solution. | ||
+ | == See also == | ||
+ | * [http://checkout.google.com/support/sell/bin/answer.py?hl=en&answer=64729 HTML vs. XML Checkout Integration with Google Cart] | ||
+ | * [http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html Google Checkout Pixel Tracking] | ||
{{crfaq}} | {{crfaq}} | ||
{{crcart}} | {{crcart}} | ||
{{mrsupport}} | {{mrsupport}} | ||
{{!}}<!-- link Google Checkout --> | {{!}}<!-- link Google Checkout --> |
Latest revision as of 16:39, 21 December 2010
You will need to include the following in your Google Checkout XML, within the merchant-checkout-flow-support element:
<merchant-checkout-flow-support> <parameterized-urls> <parameterized-url url="https://www.conversionruler.com/bin/tracker.php?siteid=XXXXX&actn=AAAAA"> <parameters> <url-parameter name="cramount0" type="order-total" /> <url-parameter name="cramount1" type="tax-amount /> <url-parameter name="cramount2" type="shipping-amount /> <url-parameter name="crtext0" type="order-id" /> </parameters> </parameterized-url> </parameterized-urls> </merchant-checkout-flow-support>
For integration using Google Checkout HTML, include the following HTML on your page which submits order information to Google Checkout:
<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.url" value="https://www.conversionruler.com/bin/tracker.php?siteid=XXXXX&actn=AAAAA"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.name" value="crtext"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-1.type" value="order-id"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.name" value="cramount0"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-2.type" value="order-total"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-3.name" value="cramount1"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-3.type" value="tax-amount"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-4.name" value="cramount2"/> <input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.parameterized-urls.parameterized-url-1.parameters.url-parameter-4.type" value="shipping-amount"/>
In both examples, you need to change:
- XXXXX in the above to your Site ID which is visible in the snippets as siteid=XXXXX
- AAAAA in the above to your Action Code which is visible in the snippets as actn=AAAAA
ConversionRuler is on the approved list of vendors for Google Checkout.
For tracking additional information, visit the Google Checkout Pixel Tracking documentation, or contact us for a custom solution.
See also
If you have any further questions, contact us. |