<?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; fixed</title>
	<atom:link href="http://www.2checkout.com/blog/tag/fixed/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.2checkout.com</link>
	<description>merchant account / credit card processing alternative</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:02:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Some Recent Updates</title>
		<link>http://www.2checkout.com/blog/2checkout-blog/some-recent-updates/</link>
		<comments>http://www.2checkout.com/blog/2checkout-blog/some-recent-updates/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:41:18 +0000</pubDate>
		<dc:creator>bion</dc:creator>
				<category><![CDATA[2Checkout Blog]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[fixed]]></category>

		<guid isPermaLink="false">http://www.2checkout.com/community/?p=2286</guid>
		<description><![CDATA[The past few months we have made improvements, fixed a few bugs, and added some new features. Below are some of the projects our Development Team has been busy working on. I want to take a moment to thank our developers for all the hard work they do every day. New Features: Suppliers are now [...]]]></description>
			<content:encoded><![CDATA[<p>The past few months we have made improvements, fixed a few bugs, and added some new features. Below are some of the projects our Development Team has been busy working on. I want to take a moment to thank our developers for all the hard work they do every day.</p>
<p><strong>New Features:</strong></p>
<ol>
<li>Suppliers are now able to send order notes to customer in VA and to also copy themselves on those communications.</li>
<li><a href="http://www.2checkout.com/blog/2checkout-blog/improvments-to-the-recurring-billing-process">Improvements to the Recurring Billing Process</a></li>
<li><a href="http://www.2checkout.com/blog/getting-started/international-issues/new-purchase-currencies-added-by-2checkout">5 New Purchase Currencies:</a>
<ul>
<li>ARS – Argentina Peso</li>
<li>BRL – Brazilian Real</li>
<li>INR – Indian Rupee</li>
<li>MXN – Mexican Peso</li>
<li>ZAR – South African Rand</li>
</ul>
</li>
</ol>
<p><strong>Resolved issues:<br />
</strong></p>
<ul>
<li>Fixed issue that prevented suppliers from uploading and attaching purchase page and order page logos.</li>
<li>Fixed issue that prevented suppliers from sending order comments to customers and themselves in VA.</li>
<li>Fixed Mark Shipped and reauthorization issues in VA.</li>
</ul>
<p>We will have more features added in the coming months, more fixes, and more and better opportunities to manage your accounts and make sales. Keep checking back for further updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/blog/2checkout-blog/some-recent-updates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the &#8220;Fixed&#8221; parameter</title>
		<link>http://www.2checkout.com/blog/knowledge-base/merchants/tech-support/basic-integration/using-the-fixed-parameter/</link>
		<comments>http://www.2checkout.com/blog/knowledge-base/merchants/tech-support/basic-integration/using-the-fixed-parameter/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 22:01:50 +0000</pubDate>
		<dc:creator>craig</dc:creator>
				<category><![CDATA[Basic Integration]]></category>
		<category><![CDATA[fixed]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[parameter]]></category>

		<guid isPermaLink="false">http://www.2checkout.com/community/blog/knowledge-base/suppliers/tech-support/basic-integration/using-the-fixed-parameter/</guid>
		<description><![CDATA[When a product is passed into 2Checkout’s purchase routine using our Plug and Play parameter set, the customer has the ability to edit their product quantity and navigate back to the supplier&#8217;s website using the continue shopping button. These options are great for someone selling many different products, but can get confusing when a single [...]]]></description>
			<content:encoded><![CDATA[<p>When a product is passed into 2Checkout’s purchase routine using our Plug and Play parameter set, the customer has the ability to edit their product quantity and navigate back to the supplier&#8217;s website using the continue shopping button. These options are great for someone selling many different products, but can get confusing when a single product is being sold or a script is passing in products using our Plug and Play parameter set. To help correct the confusion, 2Checkout has implemented the fixed parameter to lock the quantity fields in the purchase routine and remove the continue shopping button. This way, you will not have to worry about the duplicate product purchases that can lead to confusion and even sale abandonment.</p>
<p>Implementing this parameter is as easy as passing in the “fixed” parameter<br />
with a value of “Y”. <em>(Please note that this value is case sensitive and must be in uppercase.)</em></p>
<p><span id="more-593"></span><strong>Example URL with “fixed” implemented:</strong></p>
<pre><code>https://www.2checkout.com/checkout/purchase?quantity=1&amp;product_id=10&amp;sid=11&amp;fixed=Y</code></pre>
<p><strong>Example HTML form with “fixed” implemented:</strong></p>
<pre><code>&lt;form action="https://www.2checkout.com/checkout/purchase" method="post"&gt;
&lt;input type="hidden" name="sid" value="11" /&gt;
&lt;input type="hidden" name="product_id1" value="9" /&gt;
&lt;input type="hidden" name="quantity1" value="1" /&gt;
&lt;input type="hidden" name="product_id2" value="10" /&gt;
&lt;input type="hidden" name="quantity2" value="1" /&gt;
&lt;input type="hidden" name="fixed" value="Y" /&gt;
&lt;input name="submit" type="submit" value="Buy from 2CO" /&gt;
&lt;/form&gt;</code></pre>
<p><strong>Important Note:</strong> When you are testing parameters, please be certain to <a href="http://www.2checkout.com/blog/knowledge-base/suppliers/tech-support/clearing-cache-and-cookies-2/">clear the cookies</a> in your browser between tests to ensure the changes you have made are applied.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2checkout.com/blog/knowledge-base/merchants/tech-support/basic-integration/using-the-fixed-parameter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

