<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>2Checkout.com &#187; third party cart</title>
	<atom:link href="http://www.2checkout.com/community/blog/tag/third-party-cart/feed" rel="self" type="application/rss+xml" />
	<link>http://www.2checkout.com/community</link>
	<description>merchant account / credit card processing alternative</description>
	<lastBuildDate>Fri, 20 Nov 2009 14:30:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Displaying Product Information</title>
		<link>http://www.2checkout.com/community/blog/newest/displaying-product-information</link>
		<comments>http://www.2checkout.com/community/blog/newest/displaying-product-information#comments</comments>
		<pubDate>Mon, 11 Jun 2007 16:42:25 +0000</pubDate>
		<dc:creator>joel</dc:creator>
				<category><![CDATA[2Checkout Blog]]></category>
		<category><![CDATA[3rd Party Carts]]></category>
		<category><![CDATA[Basic Integration]]></category>
		<category><![CDATA[Newest]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[third party cart]]></category>

		<guid isPermaLink="false">http://www.2checkout.com/community/?p=346</guid>
		<description><![CDATA[Vendors who use our 3rd party cart parameters often wish for the product details to be displayed on our 2Checkout.com order page. By default, when using this parameter set, only the value of the cart_order_id parameter and the total of the sale are displayed on this page. Did you know it was possible for you [...]]]></description>
			<content:encoded><![CDATA[<p>Vendors who use our <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/3rd-party-carts/parameter-sets/does-your-system-have-its-own-parameters-if-so-what-are-they/">3rd party cart parameters</a> often wish for the product details to be displayed on our 2Checkout.com order page. By default, when using this parameter set, only the value of the cart_order_id parameter and the total of the sale are displayed on this page. Did you know it was possible for you to create the products in your vendor account, reference them with a few parameters, and still pass 2Checkout an arbitrary total value? The process is quite simple. We will start from the beginning and you are welcome to follow along by placing your Supplier ID number as the value for the sid parameter in our example links.</p>
<p><span id="more-346"></span>Let’s say that you are using the following link to sell your products or services to your customers:</p>
<pre><code>https://www.2checkout.com/</code><code>checkout</code><code>/purchase?sid=XXXXXXX&amp;total=20.00&amp;cart_order_id=1234ABCD </code></pre>
<p>When this link is processed, the value 1234ABCD is listed as the &#8220;Purchase Item&#8221; on our Order Details page. For our example, we are a vendor selling widgets at variable prices. Because of the variable price, you are not able to use our plug and play parameters, which require a set price for a product. If we want the customer to be able to see which widget they are purchasing but still offer the variable price we can do this. First, we need to create the widgets in our vendor account products area. To do this log into your account and click on link #4, &#8220;Set Up Products&#8221;. Next click on &#8220;New Product&#8221; link located on the right hand side of the screen. We will now enter all the required fields to describe our widget. The first required field is &#8220;Your Product ID&#8221;. You will have the ability to reference this product using this value. For this example, let’s enter the value &#8220;W1?. The Name field will be displayed on the Order Details page so for this example let’s enter the value &#8220;Widget Block&#8221; in this field. When you get to the &#8220;Price&#8221; field don’t panic because it is required, the system will not read this value when placing a sale and this is not what the customer will be charged. What I recommend, to prevent customers from attempting to purchase from the built in <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/basic-integration/how-can-i-send-my-website-visitors-to-a-single-page-that-displays-all-of-my-products/">2Checkout Order Page</a> is to set this value to a high value as opposed to a low value such as 1.00. Let’s enter 1000.00 in this field for our example. The next required field is &#8220;Tangible&#8221;. If your product can be shipped then you will select YES and if your product is not something that is shipped you will select NO. Choosing either one will not affect the sales process at all in this example. Because our widgets will be shipped let’s choose YES. Now click the &#8220;Create Product&#8221; button to complete our widget.</p>
<p>Now that we have our product created, we can edit our purchase link to reference the product. This is done by using the parameters, id_type and c_prod, which are part of our <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/3rd-party-carts/parameter-sets/what-are-the-new-cart-purchase-parameters/">New Cart Purchase Parameters</a>. Id_type can hold a value of 1 if you wish to reference your product from the &#8220;Your Vendor ID&#8221; value which you entered when you created your product or a value of 2 if you wish to reference the product based on the &#8220;Product ID&#8221; which is assigned to your product by the 2Checkout system. Because the assigned product ID could be any number depending on your specific account, we will set the id_type parameter to the value of 1. Now that we have decided to use the &#8220;Your Product ID&#8221; value, we need to reference the product in our link using the c_prod parameter with the &#8220;Your Product ID&#8221; value, W1, as the value of the parameter. Adding these 2 parameters will cause our link to look like the following:</p>
<pre><code>https://www.2checkout.com/</code><code>checkout</code><code>/purchase?sid=XXXXXXX&amp;total=20.00&amp;cart_order_id=1234ABCD&amp;id_type=1&amp;c_prod=W1</code></pre>
<p>When you process this link in your web browser you will see the &#8220;Purchase Item&#8221; of &#8220;1234ABCD&#8221; and Total of 20.00 just as we saw before. Below this information, we now see a section showing our Widget’s Product Name and a quantity, which defaults to 1. We have successfully displayed what product our customer purchased without actually using the product and price that was set in the 2Checkout account.</p>
<p>It is also very easy to add the quantity of the product purchased so the customer can see this as well. All you need to do is place a comma after your c_prod value and list the quantity value. For example if we sold 3 Widget Blocks to our customer, our link would look like the following:</p>
<pre><code>https://www.2checkout.com/</code><code>checkout</code><code>/purchase?sid=XXXXXXX&amp;total=20.00&amp;cart_order_id=1234ABCD&amp;id_type=1&amp;c_prod=W1,3</code></pre>
<p>You can also use this method to list more then one product on the Order Details page. Let’s say we had created a Widget Cube in our account that we gave a ID of W2. The customer then purchases 2 of these widgets in addition to 3 Widget Blocks. Our link would now look like this:</p>
<pre><code>https://www.2checkout.com/</code><code>checkout</code><code>/purchase?sid=XXXXXXX&amp;total=20.00&amp;cart_order_id=1234ABCD&amp;id_type=1&amp;c_prod_1=W1,3&amp;c_prod_2=W2,2</code></pre>
<p>With closer inspection, you will see some changes in the parameters that we passed. If you pass in more then one c_prod parameter, you must place a underscore and then a digit after c_prod so our parameters are now c_prod_1 and c_prod_2. It is also important to point out that while we have 2 c_prod parameters we still are only required to pass in 1 id_type parameter. This parameter is applied to each c_prod value passed into the system.</p>
<p>After reading this article, you should be able to display product information to your customers on the 2Checkout Order Details page even if you are not using our Plug and Play Cart parameters.</p>
<div><a href="http://www.addthis.com/bookmark.php" onclick="window.open('http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.2checkout.com%2Fcommunity%2Fblog%2Fnewest%2Fdisplaying-product-information&amp;title=Displaying+Product+Information', 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;" title="Bookmark using any bookmark manager!" target="_blank"><img src="https://secure.addthis.com/button1-bm.gif" width="125" height="16" border="0" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/community/blog/newest/displaying-product-information/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why doesn&#8217;t 2CO return to my site when I am using osCommerce?</title>
		<link>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/passbacks-and-returns/why-doesnt-2co-return-to-my-site-when-i-am-using-os-commerce</link>
		<comments>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/passbacks-and-returns/why-doesnt-2co-return-to-my-site-when-i-am-using-os-commerce#comments</comments>
		<pubDate>Sat, 30 Dec 2006 07:00:00 +0000</pubDate>
		<dc:creator>knowledgebase</dc:creator>
				<category><![CDATA[Passbacks and Returns]]></category>
		<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[third party cart]]></category>

		<guid isPermaLink="false">https://192.168.2.217/fresh/blog/2006/12/30/why-doesnt-2co-return-to-my-site-when-i-am-using-os-commerce/</guid>
		<description><![CDATA[The following information should assist you in setting up the osCommerce shopping cart software to work with our service.
There is a module that has been developed for osCommerce that is needed to work with 2Checkout. This module is absolutely necessary to be compliant with our system. You may find this module at the following URL:
http://www.osCommerce.com/community/contributions,904
It [...]]]></description>
			<content:encoded><![CDATA[<p>The following information should assist you in setting up the osCommerce shopping cart software to work with our service.</p>
<p>There is a module that has been developed for osCommerce that is needed to work with 2Checkout. This module is absolutely necessary to be compliant with our system. You may find this module at the following URL:</p>
<blockquote><p><a href="http://www.osCommerce.com/community/contributions,904">http://www.osCommerce.com/community/contributions,904</a></p></blockquote>
<p>It is a common problem to have the sales work in the 2CO account but not the osCommerce cart after a sale. This is because there has to be a return URL set up in your account to tell the 2CO system were to send the sale information after it is placed. osCommerce needs this information to correctly process and finish the sale on your end. This URL can be set up on the Look &amp; Feel setting page of the 2CO Classic Sellers Area (V2). You will find this link under the Helpful Links section of your account homepage. This URL can also be setup on the new VA sellers area Site Management page.</p>
<p>The URL below must be in both the Pending* and Approved URL boxes. If you installed OSC to a directory other than the default directory, you will need to use that directory structure here. Be sure to replace &#8220;www.your-domain.com&#8221; with your actual domain name.</p>
<blockquote><p>http://www.your-domain.com/catalog/pm2checkout_process.php</p></blockquote>
<p><strong>* The Pending URL field is no longer used and may be left blank as 2Checkout no longer accepts e-checks as a payment method.</p>
<div><a href="http://www.addthis.com/bookmark.php" onclick="window.open('http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.2checkout.com%2Fcommunity%2Fblog%2Fknowledge-base%2Fsuppliers%2Ftech-support%2Fpassbacks-and-returns%2Fwhy-doesnt-2co-return-to-my-site-when-i-am-using-os-commerce&amp;title=Why+doesn%26%238217%3Bt+2CO+return+to+my+site+when+I+am+using+osCommerce%3F', 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;" title="Bookmark using any bookmark manager!" target="_blank"><img src="https://secure.addthis.com/button1-bm.gif" width="125" height="16" border="0" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/passbacks-and-returns/why-doesnt-2co-return-to-my-site-when-i-am-using-os-commerce/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I make my 3rd party or Custom Cart work with the 2Checkout.com service?</title>
		<link>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-do-i-make-my-3rd-party-or-custom-cart-work-with-the-2checkoutcom-service</link>
		<comments>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-do-i-make-my-3rd-party-or-custom-cart-work-with-the-2checkoutcom-service#comments</comments>
		<pubDate>Sat, 30 Dec 2006 07:00:00 +0000</pubDate>
		<dc:creator>knowledgebase</dc:creator>
				<category><![CDATA[3rd Party Carts]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[third party cart]]></category>

		<guid isPermaLink="false">https://192.168.2.217/fresh/blog/2006/12/30/how-do-i-make-my-3rd-party-or-custom-cart-work-with-the-2checkoutcom-service/</guid>
		<description><![CDATA[Your cart will need to support the Plug and Play cart parameters, 2CO&#8217;s custom cart parameters, or the 2CO-supported Authorize.net parameters. If using one of the latter two parameter sets, your cart will also need to support the New Cart Purchase Parameters.
]]></description>
			<content:encoded><![CDATA[<p>Your cart will need to support the <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/using-the-plug-n-play-cart/what-are-the-parameters-for-the-plug-n-play-cart/">Plug and Play cart parameters</a>, <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/3rd-party-carts/parameter-sets/does-your-system-have-its-own-parameters-if-so-what-are-they/">2CO&#8217;s custom cart parameters</a>, or the <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/3rd-party-carts/parameter-sets/does-your-system-support-authorizenet-parameters-if-so-what-are-they/">2CO-supported Authorize.net parameters</a>. If using one of the latter two parameter sets, your cart will also need to support the <a href="http://www.2checkout.com/community/blog/knowledge-base/tech-support/3rd-party-carts/parameter-sets/what-are-the-new-cart-purchase-parameters/">New Cart Purchase Parameters</a>.</p>
<div><a href="http://www.addthis.com/bookmark.php" onclick="window.open('http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.2checkout.com%2Fcommunity%2Fblog%2Fknowledge-base%2Fsuppliers%2Ftech-support%2F3rd-party-carts%2Fhow-do-i-make-my-3rd-party-or-custom-cart-work-with-the-2checkoutcom-service&amp;title=How+do+I+make+my+3rd+party+or+Custom+Cart+work+with+the+2Checkout.com+service%3F', 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;" title="Bookmark using any bookmark manager!" target="_blank"><img src="https://secure.addthis.com/button1-bm.gif" width="125" height="16" border="0" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-do-i-make-my-3rd-party-or-custom-cart-work-with-the-2checkoutcom-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can we set up the osCommerce Shopping Cart?</title>
		<link>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-can-we-set-up-the-oscommerce-shopping-cart</link>
		<comments>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-can-we-set-up-the-oscommerce-shopping-cart#comments</comments>
		<pubDate>Sat, 30 Dec 2006 07:00:00 +0000</pubDate>
		<dc:creator>knowledgebase</dc:creator>
				<category><![CDATA[3rd Party Carts]]></category>
		<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[third party cart]]></category>

		<guid isPermaLink="false">https://192.168.2.217/fresh/blog/2006/12/30/how-can-we-set-up-the-oscommerce-shopping-cart/</guid>
		<description><![CDATA[The osCommerce shopping cart, Version 2.2 or Higher, is 2Checkout Enabled and automatically set up from within the cart admin provided with the cart.
You can find information, or download the osCommerce Cart here: osCommerce.com
You can also look here for more details on installing and setting it up: oscdox.com
The following information should assist you in setting [...]]]></description>
			<content:encoded><![CDATA[<p>The osCommerce shopping cart, Version 2.2 or Higher, is 2Checkout Enabled and automatically set up from within the cart admin provided with the cart.<br />
You can find information, or download the osCommerce Cart here: <a href="http://www.osCommerce.com/">osCommerce.com</a></p>
<p>You can also look here for more details on installing and setting it up: <a href="http://www.oscdox.com/">oscdox.com</a></p>
<p><strong>The following information should assist you in setting up this cart to work with our service. Please note that we cannot provide any direct support for osCommerce or other third party shopping cart.</strong></p>
<p>1.) First and foremost, you must have the cart itself installed properly. There is a text file that is distributed with the cart, as well as the module mentioned in step 3 below, and this file will explain how to install and set up the cart and module. Please first verify that the installation of the cart and 2CO payment module are correct.</p>
<p>2.) You must be using osCommerce 2.2 Milestone 2 or later. If you are using any other version, it will not work and you will be unable to use our services. If in doubt as to the version currently running on your cart, install the latest version.</p>
<p>3.) There is a module that has been developed for osCommerce that is needed to work with the 2CO system. This module is absolutely necessary to be compliant with our 2CO system. You may find this module at the following URL: <a href="http://addons.oscommerce.com/info/5343">http://addons.oscommerce.com/info/5343</a></p>
<p>4.) It is a common problem to have the sales work in the 2CO account but not the osCommerce cart after a sale. This is because there has to a be return URL set up in your account to tell the 2CO system were to send the sale information after it is placed. osCommerce needs this information to correctly process and finish the sale on your end. This URL can be set up on the Look &amp; Feel setting page of the 2CO Classic Sellers Area (V2). You will find this link under the Helpful Links section of your account homepage. This URL can also be setup on the new VA sellers area Site Management page.</p>
<p>The URL below must be in the Approved URL box. If you installed OSC to a directory other than the default directory, you will need to use that directory structure here. Be sure to replace &#8220;www.example.com&#8221; with your actual domain name.</p>
<p>&gt;&gt; http://www.example.com/catalog/pm2checkout_process.php</p>
<p>5.) It is also strongly recommended that you set the Direct Return option to Yes. This will help ensure that the customer is returned to the osCommerce shopping cart after the sale.</p>
<p>There is also a known issue that osCommerce has alerted us of. The osCommerce cart requires &#8216;Force Cookie Use&#8217; set to ON. This means that web Sites using a shared-SSL cert will not work. Most problems with the osCommerce contribution are due to cookies not being set up properly and there unfortunately is not a work around for this.</p>
<p><strong>Please also remember that 2CheckOut does not provide technical support for third party scripts including OSC. For assistance with OSC, please refer to OSC&#8217;s support forums which may be found at the following URL: <a href="http://forums.osCommerce.com">http://forums.osCommerce.com</a></strong></p>
<div><a href="http://www.addthis.com/bookmark.php" onclick="window.open('http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.2checkout.com%2Fcommunity%2Fblog%2Fknowledge-base%2Fsuppliers%2Ftech-support%2F3rd-party-carts%2Fhow-can-we-set-up-the-oscommerce-shopping-cart&amp;title=How+can+we+set+up+the+osCommerce+Shopping+Cart%3F', 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;" title="Bookmark using any bookmark manager!" target="_blank"><img src="https://secure.addthis.com/button1-bm.gif" width="125" height="16" border="0" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/how-can-we-set-up-the-oscommerce-shopping-cart/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why are the shipping charges I set up in the Admin not being added to the form when using my 3rd Party Cart?</title>
		<link>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/why-are-the-shipping-charges-i-set-up-in-the-admin-not-being-added-to-the-form-when-using-my-3rd-party-cart</link>
		<comments>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/why-are-the-shipping-charges-i-set-up-in-the-admin-not-being-added-to-the-form-when-using-my-3rd-party-cart#comments</comments>
		<pubDate>Sat, 30 Dec 2006 07:00:00 +0000</pubDate>
		<dc:creator>knowledgebase</dc:creator>
				<category><![CDATA[3rd Party Carts]]></category>
		<category><![CDATA[Shipping]]></category>
		<category><![CDATA[third party cart]]></category>

		<guid isPermaLink="false">https://192.168.2.217/fresh/blog/2006/12/30/why-are-the-shipping-charges-i-set-up-in-the-admin-not-being-added-to-the-form-when-using-my-3rd-party-cart/</guid>
		<description><![CDATA[If you are using a 3rd party cart, all shipping charges should be handled in the cart prior to getting to our payment form.  The shipping features in the Admin are for our Plug N Play carts and links.
]]></description>
			<content:encoded><![CDATA[<p>If you are using a 3rd party cart, all shipping charges should be handled in the cart prior to getting to our payment form.  The shipping features in the Admin are for our Plug N Play carts and links.</p>
<div><a href="http://www.addthis.com/bookmark.php" onclick="window.open('http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.2checkout.com%2Fcommunity%2Fblog%2Fknowledge-base%2Fsuppliers%2Ftech-support%2F3rd-party-carts%2Fwhy-are-the-shipping-charges-i-set-up-in-the-admin-not-being-added-to-the-form-when-using-my-3rd-party-cart&amp;title=Why+are+the+shipping+charges+I+set+up+in+the+Admin+not+being+added+to+the+form+when+using+my+3rd+Party+Cart%3F', 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no'); return false;" title="Bookmark using any bookmark manager!" target="_blank"><img src="https://secure.addthis.com/button1-bm.gif" width="125" height="16" border="0" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/3rd-party-carts/why-are-the-shipping-charges-i-set-up-in-the-admin-not-being-added-to-the-form-when-using-my-3rd-party-cart/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
