<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.newhavensoftware.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mboyanton</id>
	<title>NewHaven Software Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.newhavensoftware.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mboyanton"/>
	<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php/Special:Contributions/Mboyanton"/>
	<updated>2026-04-04T02:56:14Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1624</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1624"/>
		<updated>2013-03-27T15:19:15Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
--~~~~&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method (03/27/2013) ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.session.version === &#039;version-b&#039;}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
--[[User:Mboyanton|Malcolm Boyanton]] 15:19, 27 March 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1623</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1623"/>
		<updated>2013-03-27T15:18:37Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
--~~~~&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method (03/27/2013) ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.session.version === &#039;version-b&#039;}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1622</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1622"/>
		<updated>2013-03-27T15:13:24Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method (03/27/2013) ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.session.version === &#039;version-b&#039;}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1621</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1621"/>
		<updated>2013-03-27T15:12:45Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Newer Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.session.version === &#039;version-b&#039;}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1620</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1620"/>
		<updated>2013-03-27T15:11:56Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Newer Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.session.var_name}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1619</id>
		<title>ECMS A/B Split Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_A/B_Split_Testing&amp;diff=1619"/>
		<updated>2013-03-27T15:11:16Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to do split testing in eCMS using [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] one of the cleanest ways to do it is with a promo or customer group code set via a [[ECMS URL Parameters|URL parameter]].  &#039;&#039;&#039;(To use a promo code you must first set one up in a customer group rule [[Promo_Codes|as described here].)&#039;&#039;&#039; The advantage of using this method is that it does not mess up any forms redirection and keeps the URLs the same, sans the snippet at the beginning setting the promo/customer group.&lt;br /&gt;
&lt;br /&gt;
An example of the two URLs for use in [https://www.google.com/webmasters/tools/home?hl=en|Google Webmaster Tools] would be something similar to the two below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://www.example.com/checkout_shipping/?p=pageb&lt;br /&gt;
and&lt;br /&gt;
http://www.example.com/checkout_shipping&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then in if you wanted to test variations in the the checkout_shipping template just do a simple test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $promo.code == &#039;pageb&#039;}&lt;br /&gt;
Do this.....&lt;br /&gt;
{else}&lt;br /&gt;
Do something else.....&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You will also need to add a test condition to the _meta.tpl, something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $view == &#039;checkout_thanks&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
....code for confirmation page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
{if $view == &#039;checkout_shipping&#039; &amp;amp;&amp;amp; $promo.code == &#039;pageb&#039;}&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
.....Code for Page B......&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
&lt;br /&gt;
{elseif $view == &#039;checkout_shipping&#039;}&lt;br /&gt;
&lt;br /&gt;
{literal}&lt;br /&gt;
&amp;lt;!-- Google Website Optimizer Control Script --&amp;gt;&lt;br /&gt;
....Code for default page.....&lt;br /&gt;
&amp;lt;!-- End of Google Website Optimizer Tracking Script --&amp;gt;&lt;br /&gt;
{/literal}&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I tested this in Website Optimizer and it works. Two things to note:&lt;br /&gt;
&lt;br /&gt;
* If you try to manually navigate to a checkout page you will be redirected to viewcart or the index page so you will have to manually upload the HTML for the pages for Google&#039;s validation service to work. Pretty trivial process and you would likely have to do this with any cart.&lt;br /&gt;
&lt;br /&gt;
* If you set the promo code via the URL you may have this overwritten by a customer using a promo code. This could potentially skew your statistics a bit. There may be a way to compensate for this with proper setup in GWO. The other option is the use the customer group via URL feature. Similar to promo codes, ?c=CUSTGROUP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Newer Method ==&lt;br /&gt;
You can use any generic URL parameter provided it&#039;s not already in use and then simply set a session var for the parameter. Then you can test against that var in your code by using &amp;lt;code&amp;gt;{$smarty.session.var_name}&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This would be in your _top.tpl template:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
{if $smarty.get.ver}&lt;br /&gt;
{php}&lt;br /&gt;
$_SESSION[&#039;version&#039;] = $_GET[&#039;ver&#039;];&lt;br /&gt;
{/php}&lt;br /&gt;
{/if}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body class=&amp;quot;{$smarty.session.version}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And this could be used in your CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
//Normal pages&lt;br /&gt;
.wrapper div.version-b {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
//To display the first div under the element .wrapper (just an example).&lt;br /&gt;
.version-b .wrapper &amp;gt; div {&lt;br /&gt;
  display:none;&lt;br /&gt;
}&lt;br /&gt;
.version-b .wrapper &amp;gt; div.version-b {&lt;br /&gt;
  display:block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or a template:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;br /&gt;
{if $smarty.session.var_name}&lt;br /&gt;
...do something&lt;br /&gt;
{else}&lt;br /&gt;
...do something else&lt;br /&gt;
{/if}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1602</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1602"/>
		<updated>2013-02-18T16:36:31Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. Besides this wiki CMS also has an internal help system that we regularly update. Currently this is a closed wiki so it cannot be edited by anyone other than NewHaven Software, but if you would like to contribute or make any suggestions please let us know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
For information on our commitment to security please see our detailed [[PCI Compliance]] article.&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1601</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1601"/>
		<updated>2013-02-18T16:35:41Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. Besides this wiki CMS also has an internal help system that we regularly update. Currently this is a closed wiki so it cannot be edited by anyone other than NewHaven Software, but if you would like to contribute or make any suggestions please let us know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
For information on our commitment to security please see our detailed [[PCI Compliance]] article.&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1600</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1600"/>
		<updated>2013-02-18T16:35:00Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. Besides this wiki CMS also has an internal help system that we regularly update. Currently this is a closed wiki so it cannot be edited by anyone other than NewHaven Software, but if you would like to contribute or make any suggestions please let us know.&lt;br /&gt;
&lt;br /&gt;
If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
For information on our commitment to security please see our detailed [[PCI Compliance]] article.&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1599</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1599"/>
		<updated>2013-02-18T16:28:31Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* CMS Help */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. &lt;br /&gt;
&lt;br /&gt;
If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
For information on our commitment to security please see our detailed [[PCI Compliance]] article.&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1598</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1598"/>
		<updated>2013-02-18T16:26:48Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. &lt;br /&gt;
&lt;br /&gt;
If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1597</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1597"/>
		<updated>2013-02-18T16:17:46Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* CMS Help */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[PCI Compliance]]===&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1596</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1596"/>
		<updated>2013-02-18T16:16:40Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| align=&amp;quot;left&amp;quot; style=&amp;quot;float:left; margin:5px 25px 25px 0;&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1595</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1595"/>
		<updated>2013-02-18T16:10:00Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email:&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1592</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1592"/>
		<updated>2013-02-14T16:10:15Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* eCMS Help */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email:&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
* [[eCMS Help| more....]] &lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1591</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1591"/>
		<updated>2013-02-14T16:08:56Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* eCMS Help */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email:&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
Some of the most popular articles from the [[eCMS Help]] section:&lt;br /&gt;
* [[eCMS Control Panel]] - An overview of eCMS admin screen.&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts.&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
&lt;br /&gt;
For more articles checkout [[eCMS Help]].&lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1590</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1590"/>
		<updated>2013-02-14T16:03:51Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email:&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1589</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Main_Page&amp;diff=1589"/>
		<updated>2013-02-14T16:03:26Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;!-- JM - modified the size to 24px so it would fit in 800x600 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;span style=&amp;quot;font-size: 24px; font-weight:bold;&amp;quot;&amp;gt;Welcome to The NewHaven Software Self-Help Wiki&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thank you for visiting our wiki! We want to help provide answers to some of the common questions regarding our [http://www.newhavensoftware.com/cmspro Commerce Management System (CMS)] and our integrated [http://www.newhavensoftware.com/ecms shopping cart eCMS]. As with any wiki this is a work in progress and we are always looking for suggestions for new articles or features you would like to see. If you have any questions or have a suggestion for further documentation please email:&lt;br /&gt;
&lt;br /&gt;
==[[CMS Help]]==&lt;br /&gt;
The [[CMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/cmspro CMS (Commerce Management Software)]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for CMS video tutorials. For support or to request additional documentation please email [mailto:support@newhavensoftware.com General Support (support@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
==[[eCMS Help]]==&lt;br /&gt;
The [[eCMS Help]] section will provide answers to commonly asked questions regarding [http://www.newhavensoftware.com/ NewHaven Software&#039;s] [http://www.newhavensoftware.com/ecms eCMS/CV3 web based software solution]. You can also checkout our [http://www.youtube.com/user/NewHavenSoftware YouTube]  page for eCMS video tutorials. For support or requests for further documentation please email [mailto:ecms@newhavensoftware.com eCMS/Web Support (ecms@newhavensoftware.com)].&lt;br /&gt;
&lt;br /&gt;
===[[Web Resources]]===&lt;br /&gt;
This is a list of helpful resources for web design and web development.&lt;br /&gt;
&lt;br /&gt;
== [[Newest Articles Added]] ==&lt;br /&gt;
Click [[Special:NewestPagesBlog|here]] to see a list of the latest articles.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1588</id>
		<title>ECMS Help</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1588"/>
		<updated>2013-02-14T15:50:41Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- ==[[eCMS Getting Started]]==&lt;br /&gt;
&lt;br /&gt;
[[eCMS Getting Started]] will walk you through the initial setup of CMS and eCMS including how to setup products to be uploaded to your site, how to login, and how to download orders.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
==[[eCMS Control Panel]] (Dashboard)==&lt;br /&gt;
&lt;br /&gt;
[[eCMS Control Panel]] will explain the many different options in your eCMS interface/control panel.&lt;br /&gt;
&lt;br /&gt;
==Commonly Asked eCMS Questions==&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Images]] - How to add, delete, or modify product images.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Parameters]] - Setting promo codes, price categories, customer groups, etc via URL stream&lt;br /&gt;
&lt;br /&gt;
* [[Setup eCMS store in CMS]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Accounts]] - How to create multiple eCMS user accounts.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Gift Sets]] - How to setup Gift Sets in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Export]] - How to export your eCMS products into a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Customer List Export]] - How to export the contents of an eCMS customer group to a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Content Only Product]] - What is a content only product?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS File &amp;amp; Image Libraries#Allowed file types]] - What file types are allowed in the Image and File Libraries?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Site Search]] - How site search works and ways to improve your results.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Custom Category/Product Templates]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Webmail]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Adding Products]] - How to add products to eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS cats to products]] - How can I quickly and easily add categories to my eCMS products after uploading them from CMS?&lt;br /&gt;
 &lt;br /&gt;
* [[eCMS tax tables]]&lt;br /&gt;
&lt;br /&gt;
* [[Google Analytics for eCommerce]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Redirects]] - How do I set up redirects from old site links to new locations?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Export Type]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Types]] - Differences between the various product types in eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Templates]] - Useful information on the eCMS templating system.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Add an Affiliate]] - How to setup a new affiliate program.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS A/B Split Testing]] - Setting up A/B Split Testing in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[Re-download_eCMS_orders|Re-downloading eCMS orders]] - How to re-download a batch of eCMS orders into CMS.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1587</id>
		<title>ECMS Help</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1587"/>
		<updated>2013-02-14T15:50:14Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- ==[[ECMS Getting Started]]==&lt;br /&gt;
&lt;br /&gt;
[[eCMS Getting Started]] will walk you through the initial setup of CMS and eCMS including how to setup products to be uploaded to your site, how to login, and how to download orders.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
==[[eCMS Control Panel]] (Dashboard)==&lt;br /&gt;
&lt;br /&gt;
[[ECMS Control Panel]] will explain the many different options in your eCMS interface/control panel.&lt;br /&gt;
&lt;br /&gt;
==Commonly Asked eCMS Questions==&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Discounts]] - How to setup Product Discounts&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Images]] - How to add, delete, or modify product images.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Parameters]] - Setting promo codes, price categories, customer groups, etc via URL stream&lt;br /&gt;
&lt;br /&gt;
* [[Setup eCMS store in CMS]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Accounts]] - How to create multiple eCMS user accounts.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Gift Sets]] - How to setup Gift Sets in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Export]] - How to export your eCMS products into a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Customer List Export]] - How to export the contents of an eCMS customer group to a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Content Only Product]] - What is a content only product?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS File &amp;amp; Image Libraries#Allowed file types]] - What file types are allowed in the Image and File Libraries?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Site Search]] - How site search works and ways to improve your results.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Custom Category/Product Templates]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Webmail]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Adding Products]] - How to add products to eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS cats to products]] - How can I quickly and easily add categories to my eCMS products after uploading them from CMS?&lt;br /&gt;
 &lt;br /&gt;
* [[eCMS tax tables]]&lt;br /&gt;
&lt;br /&gt;
* [[Google Analytics for eCommerce]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Redirects]] - How do I set up redirects from old site links to new locations?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Export Type]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Types]] - Differences between the various product types in eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Templates]] - Useful information on the eCMS templating system.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Add an Affiliate]] - How to setup a new affiliate program.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS A/B Split Testing]] - Setting up A/B Split Testing in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[Re-download_eCMS_orders|Re-downloading eCMS orders]] - How to re-download a batch of eCMS orders into CMS.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1586</id>
		<title>ECMS Help</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Help&amp;diff=1586"/>
		<updated>2013-02-14T15:49:16Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Commonly Asked eCMS Questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- ==[[ECMS Getting Started]]==&lt;br /&gt;
&lt;br /&gt;
[[ECMS Getting Started]] will walk you through the initial setup of CMS and eCMS including how to setup products to be uploaded to your site, how to login, and how to download orders.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
==[[ECMS Control Panel]] (Dashboard)==&lt;br /&gt;
&lt;br /&gt;
[[ECMS Control Panel]] will explain the many different options in your eCMS interface/control panel.&lt;br /&gt;
&lt;br /&gt;
==Commonly Asked eCMS Questions==&lt;br /&gt;
&lt;br /&gt;
* [[ECMS Product Discounts]] - How to setup Product Discounts&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Images]] - How to add, delete, or modify product images.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Parameters]] - Setting promo codes, price categories, customer groups, etc via URL stream&lt;br /&gt;
&lt;br /&gt;
* [[Setup eCMS store in CMS]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Accounts]] - How to create multiple eCMS user accounts.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Members]] - What is the members section?&lt;br /&gt;
&lt;br /&gt;
* [[Promo Codes]] - Examples of using Customer Groups/Promo Codes.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Gift Sets]] - How to setup Gift Sets in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Groups]] - How to use shipping groups.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Product Export]] - How to export your eCMS products into a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Customer List Export]] - How to export the contents of an eCMS customer group to a text file.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Content Only Product]] - What is a content only product?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS File &amp;amp; Image Libraries#Allowed file types]] - What file types are allowed in the Image and File Libraries?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Site Search]] - How site search works and ways to improve your results.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Custom Category/Product Templates]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Webmail]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Adding Products]] - How to add products to eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Shipping Tables]] - How do I set up shipping tables in eCMS?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS cats to products]] - How can I quickly and easily add categories to my eCMS products after uploading them from CMS?&lt;br /&gt;
 &lt;br /&gt;
* [[eCMS tax tables]]&lt;br /&gt;
&lt;br /&gt;
* [[Google Analytics for eCommerce]]&lt;br /&gt;
&lt;br /&gt;
* [[eCMS URL Redirects]] - How do I set up redirects from old site links to new locations?&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Export Type]]&lt;br /&gt;
&lt;br /&gt;
* [[ECMS Product Types]] - Differences between the various product types in eCMS&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Templates]] - Useful information on the eCMS templating system.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS Add an Affiliate]] - How to setup a new affiliate program.&lt;br /&gt;
&lt;br /&gt;
* [[eCMS A/B Split Testing]] - Setting up A/B Split Testing in eCMS.&lt;br /&gt;
&lt;br /&gt;
* [[Re-download_eCMS_orders|Re-downloading eCMS orders]] - How to re-download a batch of eCMS orders into CMS.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1553</id>
		<title>ECMS Product Discounts</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1553"/>
		<updated>2013-02-12T19:23:34Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount, and create a label for each discount row.&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb|Discount table example]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Our scenario would look like:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Product Table Examples===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adding a more granular set of discounts would look like:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You do not have to set a new price for the product, you can also take a certain amount off the product price, take a percentage off the product price, or give a number of products free.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You can combine the discount types as well, for example this would give 40% off each product &amp;lt;br&amp;gt; if the customer orders more than 50:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products at 40% off || 40 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Product Discount Groups===&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to. Do this by navigating to Inventory &amp;gt;&amp;gt; Product Discounts &amp;gt;&amp;gt;  Edit Product Groups. Give your group a name and a description to help you identify the group in the future and then chose the discount table you want to apply. Next choose how to apply the discount group, either &amp;quot;Apply table to the whole group&amp;quot; or &amp;quot;Apply table to each product in the group seperately&amp;quot;. Applying table to the whole group means that any combination of products in your group will work and applying to each product means the customer will have to purchse the specified amount of each product individually. If you want the discount to apply to special pricing select no, otherwise select yes to exclude them. And then finally use the arrows to select the products this group will apply to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example product discount group:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb|Discount group example]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Product Group Information&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Name:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Discount group for ACME birdseed.&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Description:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;March discounts for all road runners. beep beep&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Choose Discount Table:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;ACME March Discount Table&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Type:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Apply table to the whole group&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Exclude Products on Special:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Yes&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Choose Products&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Use the selectors to drag &amp;lt;br&amp;gt; applicable products to this column.&#039;&#039;&#039; || &#039;&#039;&#039;Available products&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1552</id>
		<title>ECMS Product Discounts</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1552"/>
		<updated>2013-02-12T18:43:30Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount, and create a label for each discount row.&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb|Discount table example]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Our scenario would look like:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adding a more granular set of discounts would look like:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You do not have to set a new price for the product, you can also take a certain amount off the product price, &amp;lt;br&amp;gt; &lt;br /&gt;
take a percentage off the product price, or give a number of products free.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You can combine the discount types as well, for example this would give 40% off each product &amp;lt;br&amp;gt; if the customer orders more than 50:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products at 40% off || 40 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to. Do this by navigating to Inventory &amp;gt;&amp;gt; Product Discounts &amp;gt;&amp;gt;  Edit Product Groups. Give your group a name and a description to help you identify the group in the future and then chose the discount table you want to apply. Next choose how to apply the discount group, either &amp;quot;Apply table to the whole group&amp;quot; or &amp;quot;Apply table to each product in the group seperately&amp;quot;. Applying table to the whole group means that any combination of products in your group will work and applying to each product means the customer will have to purchse the specified amount of each product individually. If you want the discount to apply to special pricing select no, otherwise select yes to exclude them. And then finally use the arrows to select the products this group will apply to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example product discount group:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb|Discount group example]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Product Group Information&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Name:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Discount group for ACME birdseed.&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Description:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;March discounts for all road runners. beep beep&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Choose Discount Table:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;ACME March Discount Table&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Type:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Apply table to the whole group&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Exclude Products on Special:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Yes&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Choose Products&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Use the selectors to drag &amp;lt;br&amp;gt; applicable products to this column.&#039;&#039;&#039; || &#039;&#039;&#039;Available products&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1551</id>
		<title>ECMS Product Discounts</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1551"/>
		<updated>2013-02-12T18:20:07Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount, create a lable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Adding a more granular set of discounts would look like:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You don&#039;t have to set a new price for the product, you can also take a certain amount off the product price, a percentage off the product price, or give a number of products free.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Give a products for free for every 10 products they buy (we will use a discount group to apply this to every 10 products):&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Free product for every 10 purchashed || 1 (number of free product(s))&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Product Group Information&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Name:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Discount group for ACME birdseed.&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Group Description:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;beep beep&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Choose Discount Table:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;ACME January Discount Table&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Type:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Apply table to the whole group&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border:none;&amp;quot; | &#039;&#039;&#039;Exclude Products on Special:&#039;&#039;&#039; || style=&amp;quot;border:none; padding:2px 5px;&amp;quot; | &amp;lt;div style=&amp;quot;border: 1px solid; height:20px; margin:0 5px; padding: 2px; width:95%;&amp;quot;&amp;gt;Yes&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#14466F; color:#FFFFFF; font-weight:bold;&amp;quot; | Choose Products&lt;br /&gt;
|-&lt;br /&gt;
|- &#039;&#039;&#039;Use the selectors to drag applicable products to this column.&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1550</id>
		<title>ECMS Product Discounts</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1550"/>
		<updated>2013-02-12T17:59:14Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount, create a lable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Adding a more granular set of discounts would look like:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You don&#039;t have to set a new price for the product, you can also take a certain amount off the product price, a percentage off the product price, or give a number of products free.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20 || 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30 || 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40 || 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Give a products for free for every 10 products they buy (we will use a discount group to apply this to every 10 products):&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10 || Free product for every 10 purchashed || 1 (number of free product(s))&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#14466F; color:#FFFFFF;&amp;quot; | Product Group Information&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Group Name:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Group Description:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Choose Discount Table:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Type:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Exclude Products on Special:&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background:#14466F; color:#FFFFFF;&amp;quot; | Choose Products&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1549</id>
		<title>ECMS Product Discounts</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Product_Discounts&amp;diff=1549"/>
		<updated>2013-02-12T17:48:45Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: Created page with &amp;#039;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Adding a more granular set of discounts would look like:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You don&#039;t have to set a new price for the product, you can also take a certain amount off the product price, a percentage off the product price, or give a number of products free.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1548</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1548"/>
		<updated>2013-02-12T17:48:28Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
[[eCMS Product Discounts| Instructions and examples of eCMS Product Discounts.]] A video on this is also available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1547</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1547"/>
		<updated>2013-02-12T17:44:04Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Adding a more granular set of discounts would look like:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You don&#039;t have to set a new price for the product, you can also take a certain amount off the product price, a percentage off the product price, or give a number of products free.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#cccccc; font-weight:bold&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1546</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1546"/>
		<updated>2013-02-12T17:41:27Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would then setup a discount table wit two rows, one for the 10-49 and one for any number of products above 50.  Navigat to eCMS &amp;gt;&amp;gt; Inventory &amp;gt;&amp;gt; Add Discount Table and give your table a name and a description to help you identify it (the description will not be viewable by the customer). Then select the quantity for the discount&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 49 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Adding a more granular set of discounts would look like:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 3.49 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 3.29 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 2.99 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 2.69 (new product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 2.49 (new product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You don&#039;t have to set a new price for the product, you can also take a certain amount off the product price, a percentage off the product price, or give a number of products free.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!width=&amp;quot;50&amp;quot;|Qty&lt;br /&gt;
!width=&amp;quot;150&amp;quot;|Label&lt;br /&gt;
!width=&amp;quot;325&amp;quot;|Discount&lt;br /&gt;
|-&lt;br /&gt;
| 10|| 10 - 19 products || 5 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 20|| 20 - 29 products || 7 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 30|| 30 - 39 products || 10 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| 40|| 40 - 49 products || 15 (percentage off product price)&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | Discount for each additional product above qty:&lt;br /&gt;
|-&lt;br /&gt;
| 50 || 50 or more products || 20 (percentage off product price)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
The next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Group.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=File:ECMS_HWT_Discount_Group.png&amp;diff=1545</id>
		<title>File:ECMS HWT Discount Group.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=File:ECMS_HWT_Discount_Group.png&amp;diff=1545"/>
		<updated>2013-02-12T17:16:34Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: eCMS HWT Product Discount Group&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;eCMS HWT Product Discount Group&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1544</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1544"/>
		<updated>2013-02-12T17:15:56Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+. You would setup a discount table like the one below:&lt;br /&gt;
&lt;br /&gt;
[[File:ECMS_HWT_Discount_Table.png|left|border]]&lt;br /&gt;
&lt;br /&gt;
Then next step would be to setup a discount group so you can select which products the discount applies to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=File:ECMS_HWT_Discount_Table.png&amp;diff=1543</id>
		<title>File:ECMS HWT Discount Table.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=File:ECMS_HWT_Discount_Table.png&amp;diff=1543"/>
		<updated>2013-02-12T17:07:38Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: eCMS HWT Discount Table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;eCMS HWT Discount Table&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1542</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1542"/>
		<updated>2013-02-12T17:05:29Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
To setup a discount first create a discount table. Discount tables are how you define the quantity and discount type. For example, say you wanted to offer the following discount:&lt;br /&gt;
&lt;br /&gt;
1-9 = $4.99/each&lt;br /&gt;
&lt;br /&gt;
10-49 = $3.49/each&lt;br /&gt;
&lt;br /&gt;
50+ = $2.49/each&lt;br /&gt;
&lt;br /&gt;
You can set your product price in CMS or eCMS to $4.99 and then use a discount table to apply the discounts for 10-49 and 50+.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1486</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1486"/>
		<updated>2012-09-27T14:36:39Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods. There are two components here: groups and rules. It can be a little confusing at first so think of it this way: &#039;&#039;&#039;Groups are for marketing&#039;&#039;&#039; and &#039;&#039;&#039;Rules are for promotions&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Customer Groups===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
This is used to define a segment of existing customers or members. For example, say you want to generate a list of previous customers that have purchased bird houses from an Alabama billing address so you can send them an email letting them know you will be at the 42nd Annual Mobile Bird Lovers gathering.&lt;br /&gt;
&lt;br /&gt;
====When should customers be added?====&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
====Other Options====&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;. These options are &#039;&#039;&#039;only&#039;&#039;&#039; for adding customers to groups, you will not likely use these for most promotions.&lt;br /&gt;
&lt;br /&gt;
===Rules/Promotions===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
These are the actual promotions you want to setup. Say you want to create 25% off promo code and send it out in a mass mailer, or setup a BOGO to get rid of those dusty jars of prune juice bought at a steep discount.&lt;br /&gt;
&lt;br /&gt;
====Rule Trigger Options====&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
====Rule Result Options====&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1485</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1485"/>
		<updated>2012-09-27T14:35:08Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods. There are two components here.&lt;br /&gt;
&lt;br /&gt;
===Customer Groups===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
This is used to define a segment of existing customers or members. For example, say you want to generate a list of previous customers that have purchased bird houses from an Alabama billing address so you can send them an email letting them know you will be at the 42nd Annual Mobile Bird Lovers gathering.&lt;br /&gt;
&lt;br /&gt;
====When should customers be added?====&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
====Other Options====&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;. These options are &#039;&#039;&#039;only&#039;&#039;&#039; for adding customers to groups, you will not likely use these for most promotions.&lt;br /&gt;
&lt;br /&gt;
===Rules/Promotions===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
These are the actual promotions you want to setup. Say you want to create 25% off promo code and send it out in a mass mailer, or setup a BOGO to get rid of those dusty jars of prune juice bought at a steep discount.&lt;br /&gt;
&lt;br /&gt;
====Rule Trigger Options====&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
====Rule Result Options====&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1484</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1484"/>
		<updated>2012-09-27T14:32:55Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods. There are two components here.&lt;br /&gt;
&lt;br /&gt;
===Customer Groups===&lt;br /&gt;
This is used to define a segment of existing customers or members. For example, say you want to generate a list of previous customers that have purchased bird houses from an Alabama billing address so you can send them an email letting them know you will be at the 42nd Annual Mobile Bird Lovers gathering.&lt;br /&gt;
&lt;br /&gt;
====When should customers be added?====&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
====Other Options====&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;. These options are &#039;&#039;&#039;only&#039;&#039;&#039; for adding customers to groups, you will not likely use these for most promotions.&lt;br /&gt;
&lt;br /&gt;
===Rules/Promotions===&lt;br /&gt;
These are the actual promotions you want to setup. Say you want to create 25% off promo code and send it out in a mass mailer, or setup a BOGO to get rid of those dusty jars of prune juice bought at a steep discount.&lt;br /&gt;
&lt;br /&gt;
====Rule Trigger Options====&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
====Rule Result Options====&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1483</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1483"/>
		<updated>2012-09-27T14:31:40Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods. There are two components here.&lt;br /&gt;
&lt;br /&gt;
===Customer Groups===&lt;br /&gt;
 This is used to define a segment of existing customers or members. For example, say you want to generate a list of previous customers that have purchased bird houses from an Alabama billing address so you can send them an email letting them know you will be at the 42nd Annual Mobile Bird Lovers gathering.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;When should customers be added?&#039;&#039;&#039;&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Other Options&#039;&#039;&#039;&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;. These options are &#039;&#039;&#039;only&#039;&#039;&#039; for adding customers to groups, you will not likely use these for most promotions.&lt;br /&gt;
&lt;br /&gt;
===Rules/Promotions===&lt;br /&gt;
These are the actual promotions you want to setup. Say you want to create 25% off promo code and send it out in a mass mailer, or setup a BOGO to get rid of those dusty jars of prune juice bought at a steep discount.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039;&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
*&#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1482</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1482"/>
		<updated>2012-09-27T14:29:13Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods. There are two components here.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; - This is used to define a segment of existing customers or members. For example, say you want to generate a list of previous customers that have purchased bird houses from an Alabama billing address so you can send them an email letting them know you will be at the 42nd Annual Mobile Bird Lovers gathering.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Rules/Promotions&#039;&#039;&#039; - These are the actual promotions you want to setup. Say you want to create 25% off promo code and send it out in a mass mailer, or setup a BOGO to get rid of those dusty jars of prune juice bought at a steep discount.&lt;br /&gt;
&lt;br /&gt;
===When should customers be added?===&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
===Other Options===&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;. These options are &#039;&#039;&#039;only&#039;&#039;&#039; for adding customers to groups, you will not likely use these for most promotions.&lt;br /&gt;
===Rule Trigger Options===&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
===Rule Result Options===&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1481</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1481"/>
		<updated>2012-09-27T14:20:56Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods.&lt;br /&gt;
&lt;br /&gt;
===When should customers be added?===&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
===Other Options===&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;.&lt;br /&gt;
===Rule Trigger Options===&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
===Rule Result Options===&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===X% off Promo Code===&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Customer Group for Tracking Catalog/Marketing Campaigns===&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1480</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1480"/>
		<updated>2012-09-27T14:20:21Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods.&lt;br /&gt;
&lt;br /&gt;
===When should customers be added?===&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option. &#039;&#039;&#039;For most promo codes, discounts, specials, etc. you should only have all users checked.&#039;&#039;&#039;&lt;br /&gt;
===Other Options===&lt;br /&gt;
Additional options to add a customer to a &#039;&#039;&#039;group&#039;&#039;&#039;.&lt;br /&gt;
===Rule Trigger Options===&lt;br /&gt;
Here you will setup the rules for your promotion such as the date range, promo code, qualifying conditions, etc.&lt;br /&gt;
===Rule Result Options===&lt;br /&gt;
This is the meat and potatoes of most promotions. Here is where you will actually setup discount such as 15% off, free shipping, buy 3 get 1 free, special pricing, etc.&lt;br /&gt;
==X% off Promo Code==&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Customer Group for Tracking Catalog/Marketing Campaigns==&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1479</id>
		<title>Promo Codes</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Promo_Codes&amp;diff=1479"/>
		<updated>2012-09-27T14:11:46Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Customer groups.jpg|thumb|Click on the Groups link to view or setup a customer group/promo]]&lt;br /&gt;
&lt;br /&gt;
==Customer Groups/Promo Codes Basics==&lt;br /&gt;
&lt;br /&gt;
Customer groups and promo codes are valuable marketing tools that allow you setup a variety of promotions and customer tracking methods.&lt;br /&gt;
&lt;br /&gt;
===When should customers be added?===&lt;br /&gt;
This feature allows you to add customers to a specific group &#039;&#039;&#039;after&#039;&#039;&#039; they have completed an order and met certain criteria. This is often a source of confusion as on first glance you might think there is where you would setup a promo code or trigger option.&lt;br /&gt;
===Other Options===&lt;br /&gt;
===Rule Trigger Options===&lt;br /&gt;
===Rule Result Options===&lt;br /&gt;
&lt;br /&gt;
==X% off Promo Code==&lt;br /&gt;
&lt;br /&gt;
Say you would like to give your customers that respond to a mailing 10% if they enter a special promo code you provided on the back of your catalog. This is how you would accomplish that.&lt;br /&gt;
&lt;br /&gt;
* Login in to eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section from the left side menu by clicking on the plus (&#039;&#039;&#039;+&#039;&#039;&#039;) sign next to the &#039;&#039;&#039;Customers&#039;&#039;&#039; tab.&lt;br /&gt;
* Click on the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; from the top left of the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; page.&lt;br /&gt;
* Give your promo an accurate and descriptive name that will help you quickly tell it apart from other promo codes (10 Percent off). &lt;br /&gt;
* In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; area select the &#039;&#039;&#039;All Users&#039;&#039;&#039; from the bottom of the list.&lt;br /&gt;
&lt;br /&gt;
[[Image:Promo name.jpg]]&lt;br /&gt;
&lt;br /&gt;
* Click on the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
* You will now be back at the &#039;&#039;&#039;Customer Groups&#039;&#039;&#039; main page. Select the promo you just created (&#039;&#039;&#039;10 Percent Off&#039;&#039;&#039; in my example).&lt;br /&gt;
* From the top menu select &#039;&#039;&#039;Add Rule&#039;&#039;&#039;.&lt;br /&gt;
Now you can define the &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; and the &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039;. The &#039;&#039;&#039;Rule Trigger Options&#039;&#039;&#039; are the actions a customer will need to use to trigger a promotion. The &#039;&#039;&#039;Rule Result Options&#039;&#039;&#039; are what you are going to offer a customer that triggers the rule.&lt;br /&gt;
* Set the date for your promotion by clicking on the box next to the &#039;&#039;&#039;start date:&#039;&#039;&#039; and &#039;&#039;&#039;stop date:&#039;&#039;&#039;. Select the duration of your promotion. If the promotion is going to be ongoing just select a year far out from the current year.&lt;br /&gt;
[[Image:Rule triggers.jpg]]&lt;br /&gt;
* From the Rule Result Options you can either give a percent off the whole order, or specific products.&lt;br /&gt;
** To give xx% off of the order click the box next to the field &#039;&#039;&#039;give % off of order&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration).&lt;br /&gt;
[[Image:Percent off order.jpg]]&lt;br /&gt;
** To give xx% off of certain products place a check next to the &#039;&#039;&#039;give % of selected products:&#039;&#039;&#039; then put the percent you want to give off in the box (10% for our demonstration). &#039;&#039;&#039;Note:&#039;&#039;&#039; You probably do not want to give 10% off the order and 10% off specific products at the same time.&lt;br /&gt;
*** Now select the products you would like to give a percentage off of and then click the &#039;&#039;&#039;&amp;quot;&amp;lt;&amp;lt;&amp;quot;&#039;&#039;&#039; to move them to the left box.&lt;br /&gt;
[[Image:Percent off products.jpg]]&lt;br /&gt;
* Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Customer Group for Tracking Catalog/Marketing Campaigns==&lt;br /&gt;
&lt;br /&gt;
In this example, you want to track purchases made by customers who have received your seasonal print catalog.  This is done by having them key in a code that is printed on the back of said catalog during the checkout process.&lt;br /&gt;
&lt;br /&gt;
# Log into eCMS and expand the &#039;&#039;&#039;Customers&#039;&#039;&#039; section.&lt;br /&gt;
# Click on the &#039;&#039;&#039;Groups&#039;&#039;&#039; link.&lt;br /&gt;
# Click the &#039;&#039;&#039;Add Customer Group&#039;&#039;&#039; link near the top of the page.&lt;br /&gt;
# Give the group a descriptive name (example:  &#039;&#039;&#039;Spring/Summer 2009 Catalog&#039;&#039;&#039;).&lt;br /&gt;
# In the &#039;&#039;&#039;&amp;quot;When should customers be added?&amp;quot;&#039;&#039;&#039; section:&lt;br /&gt;
#* Check the &#039;&#039;&#039;when customer completes order using promo code&#039;&#039;&#039; box.&lt;br /&gt;
#* Enter the code from the back of your catalog in the text field.&lt;br /&gt;
# Click the &#039;&#039;&#039;Submit&#039;&#039;&#039; button at the bottom of the page.&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1372</id>
		<title>ECMS Control Panel</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=ECMS_Control_Panel&amp;diff=1372"/>
		<updated>2012-03-15T19:38:36Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: /* Product Discounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Dashboard_mini.jpg‎|thumb|Sidebar of the eCMS Dashboard. Clicking on the plus sign next to each heading will expand the options.]]&lt;br /&gt;
==Settings==&lt;br /&gt;
===Overview===&lt;br /&gt;
The Dashboard where you can see New Feature Release, Site Maintenance, and Quick Stats&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
Options are where the majority of the site specific functions are set. These range from shipping and tax options, to site display options.  For a detailed breakdown of the options, see the [[eCMS Options]] page.&lt;br /&gt;
&lt;br /&gt;
===Shipping Tables===&lt;br /&gt;
Here you can setup and maintain site shipping tables. For a full explanation and example see [[ECMS Shipping Tables]].&lt;br /&gt;
&lt;br /&gt;
===Shipping Groups===&lt;br /&gt;
Shipping Groups are used to further limit shipping options to specific groups of customers that meet the defined criteria, such as State, Country, or product purchase type.&lt;br /&gt;
&lt;br /&gt;
===Tax Tables===&lt;br /&gt;
Tax tables allow you to setup tax rates for any state or city. For more information see [[eCMS tax tables]].&lt;br /&gt;
&lt;br /&gt;
===Google Sitemap===&lt;br /&gt;
Create and edit a Site Map for submission to Google&#039;s [http://www.google.com/webmasters/sitemaps/login Site Map program].&lt;br /&gt;
&lt;br /&gt;
===Google Base===&lt;br /&gt;
&lt;br /&gt;
Creates an XML file that is manually uploaded to [http://base.google.com/base/help/sellongoogle.html Google Base].&lt;br /&gt;
&lt;br /&gt;
If you have a &#039;&#039;&#039;Download Files&#039;&#039;&#039; link here, you have a Google Base XML file available for download.  Click the link to get to the download page.&lt;br /&gt;
&lt;br /&gt;
* Settings&lt;br /&gt;
** Feed Title&lt;br /&gt;
** Feed Description&lt;br /&gt;
** Feed Expiration&lt;br /&gt;
** &#039;&#039;&#039;Brand&#039;&#039;&#039; - product data field to use for Brand.&lt;br /&gt;
** &#039;&#039;&#039;Product Type&#039;&#039;&#039; - product data field to use for Product Type (category or top-level category is probably best).&lt;br /&gt;
** Department&lt;br /&gt;
** &#039;&#039;&#039;Use special pricing?&#039;&#039;&#039; - If a product is currently on special, selecting Yes will upload this price rather than the normal retail price.&lt;br /&gt;
* Select Products&lt;br /&gt;
** Include all active products &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** Include selected products only.&lt;br /&gt;
* Email Notification Address&lt;br /&gt;
** You will receive an email at the address entered when the file is ready for download.&lt;br /&gt;
&lt;br /&gt;
===ChannelAdvisor===&lt;br /&gt;
*Settings (all the settings can be left blank if you do not want to use them)&lt;br /&gt;
**Manufacturer:&lt;br /&gt;
*** If you use this field you can set it to the field that contains the manufacturer, some people like vitamin companies, would have a manufacturer set.&lt;br /&gt;
**Manufacturer Number:&lt;br /&gt;
*** Set to the field that contains this info, usually set to sku.&lt;br /&gt;
**Brand: &lt;br /&gt;
*** Some people have their brands set as their categories, in this case you&#039;d select the category, otherwise whatever field contains this information.&lt;br /&gt;
**Use special pricing?&lt;br /&gt;
*** Yes or No - If a product is on special and &#039;No&#039; is selected above, the retail price will be included in the ChannelAdvisor Data Feed.&lt;br /&gt;
*Select Products&lt;br /&gt;
**Include all active products&lt;br /&gt;
***Include all active products - meaning all products that are not set as inactive.&lt;br /&gt;
**Include selected products only &lt;br /&gt;
***Include only the products you select below in the datafeed.&lt;br /&gt;
&lt;br /&gt;
Once the feed is set, it will update once a day and can be accessed using the URL that will appear on the bottom of the page once you click the Submit button under the &amp;quot;Pick Up Data Feeds&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
===SingleFeed===&lt;br /&gt;
* Settings&lt;br /&gt;
** Category: How you want your products categorized by SingleFeed.  Usually the category or top-level category.&lt;br /&gt;
** Manufacturer: You may have this data from your vendor.&lt;br /&gt;
** Keywords: Keywords you want associated with this product in SingleFeed&#039;s data.&lt;br /&gt;
** UPC, Model/Part Number, ISBN, Department, Color, and Size: All these can be uploaded if they are contained in one of your custom fields.&lt;br /&gt;
&lt;br /&gt;
* Select Products&lt;br /&gt;
** Choose from all active products, or select a limited list.&lt;br /&gt;
&lt;br /&gt;
You will be provided with a link to your file in [[SingleFeed_file_format|this format]].  Please allow 12-24 hours for the initial file to be created.&lt;br /&gt;
&lt;br /&gt;
===Suggested Search===&lt;br /&gt;
This allows you to view and modify terms for the &#039;&#039;&#039;Suggested Search&#039;&#039;&#039; feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You may need a template upgrade in order to use this feature.&lt;br /&gt;
&lt;br /&gt;
To enable this feature Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Search Options &amp;gt;&amp;gt; and select &#039;&#039;&#039;Would you like to enable the suggested search feature?&#039;&#039;&#039; For more info on enabling this feature please see [[ECMS Suggested Search]].&lt;br /&gt;
&lt;br /&gt;
===URI Redirects===&lt;br /&gt;
&lt;br /&gt;
This allows you to create URI redirects for your store pointing old/outdated URIs to their updated locations.  The import file contains two columns - the first with the &amp;quot;From&amp;quot; URI, the second with the &amp;quot;To&amp;quot; URI.  Click [http://docs.commercev3.com/index.php/URI_Redirects here] to read the full documentation.&lt;br /&gt;
&lt;br /&gt;
* Import URI Redirects&lt;br /&gt;
** Choose File&lt;br /&gt;
** &#039;&#039;&#039;Type&#039;&#039;&#039; - the file can be comma-, tab-, or pipe-delimited.&lt;br /&gt;
** Character set (leave at the default).&lt;br /&gt;
** Notification email&lt;br /&gt;
* Export URI Redirects&lt;br /&gt;
** &#039;&#039;&#039;Export Active Redirects&#039;&#039;&#039; - exports a file containing all active redirects set up for your site via this process.&lt;br /&gt;
** &#039;&#039;&#039;Export Expired Redirects&#039;&#039;&#039; - exports a file containing redirects set up via this process that are more than 30 days old (and are therefore expired).&lt;br /&gt;
&lt;br /&gt;
===Delete Store===&lt;br /&gt;
This will delete your store. You will probably want to avoid clicking this option.&lt;br /&gt;
&lt;br /&gt;
===New Features===&lt;br /&gt;
New Features to eCMS will be listed here, including features, templates, and services.&lt;br /&gt;
&lt;br /&gt;
===Launch Checklist===&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
===Template Tags===&lt;br /&gt;
Template tags offer you an easy way to change the content of your pages, as well as the content of your communications to your customers. [[Image:Template_tags.jpg|thumb|Image of Template Tags. Clicking on any of the links will show you the available template tags.]]&lt;br /&gt;
&lt;br /&gt;
See [[Custom Template Tags]] for additional information on how to setup and use custom template tags.&lt;br /&gt;
&lt;br /&gt;
===Template Library===&lt;br /&gt;
This is where all of the templates for your site are. Templates use [http://www.smarty.net/ Smarty] and [http://www.w3schools.com/HTML/ HTML] to control all of the visual elements of your site. For more info see [[ECMS Templates]].&lt;br /&gt;
&lt;br /&gt;
===Image Library===&lt;br /&gt;
This is where all of the images for your site are uploaded and stored. Site images will be available at http://yoursite.com/images/. The options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Mass Image Upload | Single Image Upload | Assign Product Images | Publish All Images | Mass Publish Images |  Backup Images &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Mass Image Upload&#039;&#039;&#039; -- Use this option to upload a .zip file of images used for the site or products. There are two options as follows:&lt;br /&gt;
**&#039;&#039;&#039;Upload Product Images&#039;&#039;&#039; -- Use this option to upload a .zip file containing product images (thumbnails, large, and pop-up).&lt;br /&gt;
**&#039;&#039;&#039;Upload Site Images&#039;&#039;&#039; -- Use this option to upload site images for things like headers, backgrounds, etc. Site images will be available at http://yoursite.com/images/&lt;br /&gt;
*&#039;&#039;&#039;Single Image Upload&#039;&#039;&#039; -- Use this option to upload single site image. (Not used for product images.)&lt;br /&gt;
*&#039;&#039;&#039;Assign Product Images&#039;&#039;&#039; -- Use this option to assign products to images you have uploaded using the Mass Image Upload &amp;gt;&amp;gt; Upload Product Images.&lt;br /&gt;
*&#039;&#039;&#039;Publish All Images&#039;&#039;&#039; -- Use this option to publish &#039;&#039;&#039;all&#039;&#039;&#039; images to your live site. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Images&#039;&#039;&#039; -- Use this option to selectively publish multiple images to your live site at once. &#039;&#039;Images that are upload are only available in staging until you have publishes them.&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Backup Images&#039;&#039;&#039; -- Use this option to create a .zip file of all of your images for download to your local computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also assign product images for one product at a time by going to Inventory &amp;gt;&amp;gt; All Products &amp;gt;&amp;gt; (click on the product name) &amp;gt;&amp;gt; Product Display &amp;gt;&amp;gt; Images.&lt;br /&gt;
===File Library===&lt;br /&gt;
You can upload files for use/download on your site here. Some examples are .js files for additional JavaScript functionality, PDF files for download, Flash Videos for streaming movies, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Upload File | Publish All Files | Mass Publish Files |  Backup Files &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Upload File&#039;&#039;&#039; -- Use this option to upload a file to your site. &lt;br /&gt;
*&#039;&#039;&#039;Publish All Files&#039;&#039;&#039; -- Use this option to publish files to your live site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Mass Publish Files&#039;&#039;&#039; -- Use this option to selectively publish multiple files at once to your site. Published files will be available at http://yoursite.com/downloads/&lt;br /&gt;
*&#039;&#039;&#039;Backup Files&#039;&#039;&#039; -- Use this option to create .zip backup of all the files on your site.&lt;br /&gt;
&lt;br /&gt;
===Generic Forms===&lt;br /&gt;
Generic forms are used to collect specific information from a customer when one of the standard forms, such as the catalog request or contact form, cannot be used. Add, remove, and edit your generic forms here.&lt;br /&gt;
&lt;br /&gt;
==Inventory==&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]]&lt;br /&gt;
===Edit Categories===&lt;br /&gt;
Here you can manage your categories. To edit a category just click on the category name. The two options are:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Category | Delete Category&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Category&#039;&#039;&#039; -- Use this option to add new categories to your site.&lt;br /&gt;
*&#039;&#039;&#039;Delete Category&#039;&#039;&#039; -- Use this option to delete categories from your site.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you click &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Expand All &amp;lt;/span&amp;gt; you can view all of your sub-categories. &amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Collapse All&amp;lt;/span&amp;gt; will close all of the sub-categories and only display your parent categories.&lt;br /&gt;
&lt;br /&gt;
[[Image:Cat_adjust_order.jpg|frame|right|Adjust product order.]]You can adjust the order the categories display on your site by changing the numeric values in the Adjust Order column. For example, in the image notice the one in the last row instead of a six. If you click submit this category will now display first.&lt;br /&gt;
&lt;br /&gt;
===All Products===&lt;br /&gt;
[[ECMS Product Types| Click here for more information on the eCMS product types]] &lt;br /&gt;
&lt;br /&gt;
Add, remove, and edit your Products here. You can edit an existing product by clicking on it&#039;s name. The options are as follows:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search | Product ID Finder&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
*&#039;&#039;&#039;Product ID Finder&#039;&#039;&#039; -- Use this option to display a list of products by Name, SKU, and Product ID.&lt;br /&gt;
&lt;br /&gt;
===Products By Cat.===&lt;br /&gt;
In the product by category listing you are able to view, edit and remove products and sub-products from your store. Not only can you view your products, but you can manage the order in which your products and sub-products are displayed within their category the same way you can adjust the order of [[ECMS_Control_Panel#Edit_Categories|categories]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:blue;&amp;quot;&amp;gt;Add Product | Copy Product | Delete Product | Product Search&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Add Product&#039;&#039;&#039; -- Use this option to add additional products to your site. &#039;&#039;&#039;Note:&#039;&#039;&#039; Products added manually will not be present in CMS. You should usually add products in CMS and then upload them to the web.&lt;br /&gt;
*&#039;&#039;&#039;Copy Product&#039;&#039;&#039; -- Use this option to copy a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; Images and electronic download information will not be copied. &lt;br /&gt;
*&#039;&#039;&#039;Delete Product&#039;&#039;&#039; -- Use this option to delete a product. &#039;&#039;&#039;Note:&#039;&#039;&#039; This will not delete a product from CMS.&lt;br /&gt;
*&#039;&#039;&#039;Product Search&#039;&#039;&#039; -- Use this option to search for a product by SKU, name, or type.&lt;br /&gt;
&lt;br /&gt;
===Product Search===&lt;br /&gt;
Search with product name or sku or select the type of product you would like to view.&lt;br /&gt;
&lt;br /&gt;
===Refined Search===&lt;br /&gt;
Create custom search options to allow your customers to find the products quickly.&lt;br /&gt;
&lt;br /&gt;
===Category Filter===&lt;br /&gt;
Allow customers to narrow down the list of products in a category by selecting options from drop-down boxes.&lt;br /&gt;
* Create the filter options here.&lt;br /&gt;
* Set the keyword for each option via:&lt;br /&gt;
** Individual product editing page.  &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
** eCMS Product Import.&lt;br /&gt;
* This can be done to create a custom grouping of semi-related products where a single sub-category is not a good fit.&lt;br /&gt;
&lt;br /&gt;
===Custom Product Forms===&lt;br /&gt;
Custom product forms allow you to associate additional information with your products as well as adjusting the price. When this product is picked up by CMS the information in this form will be in the notes field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: &lt;br /&gt;
* Changes to Custom Product Forms are live. There is no staging for these forms. It&#039;s best to design the form completely before associating with a product.&lt;br /&gt;
* You need to have the following smarty code where you&#039;d like the form to show up. Generally in the product.tpl or the default_product.tpl files: &amp;lt;source lang=&amp;quot;smarty&amp;quot;&amp;gt;{include file=&amp;quot;custom_form.tpl&amp;quot;}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Add a form ====&lt;br /&gt;
* Click &#039;&#039;&#039;Add Form&#039;&#039;&#039;&lt;br /&gt;
* On the next page enter a name for this form in the &#039;&#039;&#039;Form Name&#039;&#039;&#039; field&lt;br /&gt;
* Click &#039;&#039;&#039;Add New Form&#039;&#039;&#039; - you will be taken to the form page&lt;br /&gt;
&lt;br /&gt;
Here you can add the fields you would like to have on the product page (see below for more details on form fields). Once you finish adding the form fields you&#039;ll need to associate products with this form.&lt;br /&gt;
&lt;br /&gt;
==== Product Selection ====&lt;br /&gt;
* Click &#039;&#039;&#039;Product Selection&#039;&#039;&#039;&lt;br /&gt;
* On this page select the products that should be associated with this form&lt;br /&gt;
* Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when finished&lt;br /&gt;
&lt;br /&gt;
====Form Fields====&lt;br /&gt;
=====Subheading=====&lt;br /&gt;
* &#039;&#039;&#039;Subheading Text:&#039;&#039;&#039; Brief text to describe a section&lt;br /&gt;
=====Blank Line=====&lt;br /&gt;
* Used as a spacer in the form, adds a blank line&lt;br /&gt;
=====Text Field=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Size of Text Field:&#039;&#039;&#039; How large the text field will be&lt;br /&gt;
* &#039;&#039;&#039;Maximum Length of Text Field:&#039;&#039;&#039; The maximum number of characters the text field can hold&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;Letters only:&#039;&#039;&#039; Will only validate alphabetic characters, no numbers/symbols/spaces&lt;br /&gt;
** &#039;&#039;&#039;Numbers only:&#039;&#039;&#039; Will only validate numbers, no alphabetic/symbol/space characters&lt;br /&gt;
** &#039;&#039;&#039;Letters and Numbers only:&#039;&#039;&#039; Will validate alphanumeric characters, no spaces&lt;br /&gt;
** &#039;&#039;&#039;Sentence:&#039;&#039;&#039; Validates any alphanumeric text including spaces and symbols. Basically if you want a combined first/last name field, or an Address1 field, those are considered &amp;quot;sentence&amp;quot; fields.&lt;br /&gt;
** &#039;&#039;&#039;Paragraph:&#039;&#039;&#039; Validates any alphanumeric text including spaces, symbols, and multiple lines.&lt;br /&gt;
** &#039;&#039;&#039;Money:&#039;&#039;&#039; Will validate numeric values with a decimal place. No symbols.&lt;br /&gt;
** &#039;&#039;&#039;Web Address:&#039;&#039;&#039; Will validate a URL, http://www.example.com to just example.com&lt;br /&gt;
** &#039;&#039;&#039;E-mail Address:&#039;&#039;&#039; Will validate email addresses&lt;br /&gt;
** &#039;&#039;&#039;Phone Number:&#039;&#039;&#039; Will validate phone numbers&lt;br /&gt;
** &#039;&#039;&#039;Zip Code:&#039;&#039;&#039; Will validate a zip code including zip+4&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
&lt;br /&gt;
=====Radio Buttons=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Radio Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the radio options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Radio Option when the form is loaded this option will start selected.&lt;br /&gt;
=====Text Area=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this text field&lt;br /&gt;
* &#039;&#039;&#039;Number of Columns:&#039;&#039;&#039; How wide the box will be by the number of characters to display. I.E. a value of 30 will be a box 30 characters wide.&lt;br /&gt;
* &#039;&#039;&#039;Number of Rows:&#039;&#039;&#039; How tall the box will be in rows. I.E. a value of 4 will allow for 4 lines of text.&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;How should this field be validated?:&#039;&#039;&#039; Select the proper validation based on the following list.&lt;br /&gt;
** &#039;&#039;&#039;See Text Field Validation above for a description&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Default Field Value:&#039;&#039;&#039; The fields starting value, keep this blank if no default value is needed.&lt;br /&gt;
=====Multiple Checkboxes=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the checkbox options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially checked, enter the same name as the desired Checkbox Option, one per line, when the form is loaded these options will start checked.&lt;br /&gt;
=====Single Checkbox=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Checkbox Option:&#039;&#039;&#039; The value of this check box&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; Enter a value that will dynamically adjust your product price. Enter the value like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, or &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; If you want this box checked by default enter the same name you entered in Checkbox Option above, otherwise leave this blank.&lt;br /&gt;
=====Drop Down Box=====&lt;br /&gt;
* &#039;&#039;&#039;Label:&#039;&#039;&#039; A label for this field&lt;br /&gt;
* &#039;&#039;&#039;Is this a required field?:&#039;&#039;&#039; Make the field required&lt;br /&gt;
* &#039;&#039;&#039;Drop Down Options:&#039;&#039;&#039; A list of options to display, one per line&lt;br /&gt;
* &#039;&#039;&#039;Price Adjustments:&#039;&#039;&#039; A list of options, one per line, corresponding to the drop down options entered above that will dynamically adjust your product price. Enter the values like &#039;&#039;&#039;+1.00&#039;&#039;&#039; to add a dollar to the price, and &#039;&#039;&#039;-.050&#039;&#039;&#039; to subtract 50 cents from the price.&lt;br /&gt;
* &#039;&#039;&#039;Default Value:&#039;&#039;&#039; Which of the above options should be initially selected, enter the same name as the desired Drop Down Option when the form is loaded this option will start selected.&lt;br /&gt;
&lt;br /&gt;
===Product Discounts===&lt;br /&gt;
Product discount tables allow you to control the number of items you offer at a discount, the discount price, and / or the percentage adjustment you desire to grant your customers who purchase the items identified within your discount table. Remember, you will need to create a product group to associate with each discount table. A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
There are three links at the top of the &#039;&#039;&#039;Product Discounts&#039;&#039;&#039; page:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Add Discount Table&#039;&#039;&#039; - This option will take you create a new &#039;&#039;&#039;Discount Table&#039;&#039;&#039;. Here you can add the discount that you want to apply and the rules for the discount.&lt;br /&gt;
* &#039;&#039;&#039;Edit Product Groups&#039;&#039;&#039; - This option will allow you to edit &#039;&#039;&#039;Product Groups&#039;&#039;&#039;. Here you can add/modify the items you want to the discount to be applied to.&lt;br /&gt;
* &#039;&#039;&#039;Import Discount Tables/Product Groups&#039;&#039;&#039; - This option allows you to import a list of products or groups to apply discounts to in bulk.&lt;br /&gt;
&lt;br /&gt;
A video on this is available on our [http://www.youtube.com/watch?v=7OsgEPA04NQ YouTube Video Page].&lt;br /&gt;
&lt;br /&gt;
===Product Reviews===&lt;br /&gt;
View pending product reviews that have not yet been approved for display on your site.&lt;br /&gt;
* If you are configured to auto-approve product reviews (under &#039;&#039;&#039;Settings-&amp;gt;Options-&amp;gt;Product Review Options&#039;&#039;&#039;), reviews will never show up under this section.&lt;br /&gt;
&lt;br /&gt;
===Product Import===&lt;br /&gt;
The Product Import is used to import new products to your eCMS store, or update existing products.  This can be useful to add information fields that are not currently a part of CMS, such as meta data fields.  [[eCMS_Product_Import|This page]] covers the product import in much greater detail.&lt;br /&gt;
&lt;br /&gt;
===Category Import===&lt;br /&gt;
The Category import can be used to import new categories into eCMS, or to update information in existing categories (for example, meta title/description information).&lt;br /&gt;
&lt;br /&gt;
A few details:&lt;br /&gt;
* URLName is used if you want to be able to link to the category by a named URL instead of /category/&amp;lt;catID&amp;gt; (for example, using /category/dogfood).  The field should contain only the name, without any slashes or other directory information (&#039;dogfood&#039;, in our example), and must be a unique name in that store.  &#039;&#039;&#039;Spaces are prohibited!&#039;&#039;&#039;  (Underscores or hyphens are fine)&lt;br /&gt;
* Either Name or ID must be present.  If using Name, the full category &amp;quot;tree&amp;quot; must be present in this format: Main~SubCat~SubCat2~...FinalCat.&lt;br /&gt;
&lt;br /&gt;
====Running the Category Import====&lt;br /&gt;
# Click Inventory-&amp;gt;Category Import.&lt;br /&gt;
# Browse to the file you want to import.&lt;br /&gt;
# Set the notification email and click Submit.&lt;br /&gt;
#* If you get a response other than &amp;quot;thanks for the file, we&#039;ll email you when it&#039;s done&amp;quot;, your file has a formatting error.  Double-check your file and try again.&lt;br /&gt;
&lt;br /&gt;
===Category Export===&lt;br /&gt;
This category export will export your categories in a format that is immediately importable into eCMS. There are no options for category exports other than the [http://en.wikipedia.org/wiki/Delimiter delimiter] type (comma, pipe, or tab) and what email you would like to be notified at once the export had completed.&lt;br /&gt;
&lt;br /&gt;
===Refined Search Import===&lt;br /&gt;
Import a text file containing refined search information.  See the [http://docs.commercev3.com/index.php/Refined_Search_Import full Refined Search Import documentation] for more information on formatting.&lt;br /&gt;
&lt;br /&gt;
===Inventory Control===&lt;br /&gt;
Manually add and remove product inventory counts. You can also upload a comma delimited inventory list, if you wish.&lt;br /&gt;
&lt;br /&gt;
====Inventory Control Import File====&lt;br /&gt;
This is a comma-separated file with two columns; SKU and inventory count (no header row).  For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;0002-1&#039;,10&lt;br /&gt;
&#039;0002-2&#039;,15&lt;br /&gt;
&#039;0002-3&#039;,20&lt;br /&gt;
&#039;0003&#039;,50&lt;br /&gt;
&#039;T-SHIRT&#039;,100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To run the inventory import:&lt;br /&gt;
# Browse for the file.&lt;br /&gt;
# Enter your email address (you will receive a notification email when the import is complete, including any errors received).&lt;br /&gt;
# Click Submit down at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
===Price Categories===&lt;br /&gt;
Price categories allow you to set the price you want to extend to your customers associated to promotion codes or customer groups.  This section allows you to add new price categories or delete existing ones.&lt;br /&gt;
&lt;br /&gt;
===Subscription Products===&lt;br /&gt;
View subscription products and place subscription orders for appropriate products.&lt;br /&gt;
&lt;br /&gt;
===Vendors===&lt;br /&gt;
Add your products&#039;s vendors so that they will be notified via email when orders are placed for any of their products.&lt;br /&gt;
&lt;br /&gt;
===Recipes===&lt;br /&gt;
Manage your Recipes and Recipe Categories to give your customers delicious ideas for your products.&lt;br /&gt;
# Add one or more recipe categories.&lt;br /&gt;
#* (These are different from product categories!)&lt;br /&gt;
# Add the recipe, filling out any of these fields as applicable:&lt;br /&gt;
#* Title&lt;br /&gt;
#* Category (select one or more)&lt;br /&gt;
#* Image (optional)&lt;br /&gt;
#* Ingredients&lt;br /&gt;
#* Instructions&lt;br /&gt;
#* Products from your site used in this recipe.&lt;br /&gt;
# Submit the recipe when complete.&lt;br /&gt;
&lt;br /&gt;
Although this is designed for food products and items, it could also apply to items assembled using hardware components from your site.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this to create a list of gift certificate codes of a specific value.  You can then manually email these codes to customers or use them for your own pre-printed gift certificates.&lt;br /&gt;
&lt;br /&gt;
* Value&lt;br /&gt;
* Days Available (0 for unlimited)&lt;br /&gt;
* Quantity Needed &#039;&#039;&#039;OR&#039;&#039;&#039;&lt;br /&gt;
* Import File (import a text file with one gift code per line instead of putting a quantity)&lt;br /&gt;
* Log Note (for your reference)&lt;br /&gt;
&lt;br /&gt;
After clicking Create Gift Certificates, the page will refresh with a link for you to download a file containing the gift certificate codes.&lt;br /&gt;
&lt;br /&gt;
==Customers==&lt;br /&gt;
===Search===&lt;br /&gt;
Search for customers who have purchased from you before (not necessarily members) by email address, first name or last name.  To change the customer groups one of the resulting customers belongs to:&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for that customer&#039;s record in the top section.&lt;br /&gt;
* Check the &#039;&#039;&#039;Add&#039;&#039;&#039; box for each group you want to add the customer to in the bottom section.&lt;br /&gt;
* Click Submit.&lt;br /&gt;
To add or remove customer groups from just one customer, it will be quicker to just click on their email address.  This brings up a popup window with Remove (for current groups) and Add (for other groups) checkboxes.&lt;br /&gt;
&lt;br /&gt;
===Groups===&lt;br /&gt;
&lt;br /&gt;
For a detailed example see [[Promo Codes|Examples of using Customer Groups/Promo Codes.]]&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Options_member_options.jpg|thumb|Here you can set various member options.]]&lt;br /&gt;
You can set various member options in &#039;&#039;&#039;Options &amp;gt;&amp;gt; Member Options&#039;&#039;&#039;. These include:&lt;br /&gt;
&lt;br /&gt;
*Would you like to require approval before a customer can become a member? -- If set to &#039;&#039;&#039;Yes&#039;&#039;&#039; then you will need to approve all members by going to &#039;&#039;&#039;Customers &amp;gt;&amp;gt; Members&#039;&#039;&#039;. If set to &#039;&#039;&#039;No&#039;&#039;&#039; then all members will be auto-approved.&lt;br /&gt;
*What is the to address to inform you of a new member request? -- What email address would you like to receive new member request at.&lt;br /&gt;
*What is the from address for the email that notifies your customers once they are approved? -- The address you would like to have reply to member approvals with. Can be the same email address as the new member requests.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reminder Service: you must edit the email message in reminder_service_email.tpl and enter the subject and from email below.&#039;&#039;&#039;&lt;br /&gt;
*What is the from address for the member reminder service? -- What email address you would like to use to send out reminders to members.&lt;br /&gt;
*What is the subject of the reminder service email? -- Subject for the reminder email.&lt;br /&gt;
&#039;&#039;&#039;Reminder Service Default Events&#039;&#039;&#039;&lt;br /&gt;
*Add New Reminder Service Event: -- Select the name and date of your reminder/event.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; You can allow only members to use payment options other than credit cards by going to &#039;&#039;&#039;Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Payment Options &amp;gt;&amp;gt; Only allow members to use payment methods other than credit card&#039;&#039;&#039;. In order to prevent a customer from abusing this you may want to use this option only if you require members to be approved first.&lt;br /&gt;
&lt;br /&gt;
For a detail example see [[eCMS Members|What is the members section?]]&lt;br /&gt;
&lt;br /&gt;
===Wishlists===&lt;br /&gt;
Search for customer wishlists by customer last name or zip code.&lt;br /&gt;
&lt;br /&gt;
==Orders==&lt;br /&gt;
===Pending===&lt;br /&gt;
View and export all pending orders. If you have orders that have yet to be downloaded into CMS they will be displayed here. Also, if you move orders from search back to pending they will be available here. You can click on any order to view the order details.&lt;br /&gt;
====Export Type====&lt;br /&gt;
You can also change the export type if you need to manually download orders. The export type should be &#039;&#039;&#039;CMS&#039;&#039;&#039; or &#039;&#039;&#039;Automatic CMS&#039;&#039;&#039;. Sometimes for troubleshooting it is necessary to change the export type to PDF or to manually download the XML. Be aware that downloading the orders outside of CMS will display credit cards in plain text and will likely put you in violation of [[PCI_Compliance| PCI]].&lt;br /&gt;
&lt;br /&gt;
===Search===&lt;br /&gt;
Here you can search for previously placed orders. You can search by:&lt;br /&gt;
&lt;br /&gt;
*Order ID - Supply the Order Number.&lt;br /&gt;
*Date Ordered - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*Ship On Date - Use the Date Range (mm/dd/yyyy) to search for orders.&lt;br /&gt;
*User&#039;s Last Name - Use the User Last Name to search for orders.&lt;br /&gt;
*User&#039;s Email Address - Use the Users Email Address to search for orders.&lt;br /&gt;
&lt;br /&gt;
===Gift Certificate Emails===&lt;br /&gt;
Any pending emails for digital gift certificates will be displayed here.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Any catalog requests that have yet to be downloaded into CMS will be displayed here.&lt;br /&gt;
&lt;br /&gt;
==Wholesale==&lt;br /&gt;
&lt;br /&gt;
===Orders===&lt;br /&gt;
Shows a list of all unprocessed (pending download) wholesale orders, and gives the option to download/export them.&lt;br /&gt;
&lt;br /&gt;
===Approve Wholesalers===&lt;br /&gt;
List of companies have requested access to the wholesale section. View their information by clicking on the company name.&lt;br /&gt;
* &#039;&#039;&#039;Approve wholesalers&#039;&#039;&#039;&lt;br /&gt;
*# Check the &amp;quot;Approve&amp;quot; box on the wholesaler&#039;s record.&lt;br /&gt;
*# When you have checked off all the wholesalers you want to approve, click the Submit button at the bottom of the page.&lt;br /&gt;
* &#039;&#039;&#039;Pending wholesalers&#039;&#039;&#039; will remain on this list until they are deleted.&lt;br /&gt;
&lt;br /&gt;
===Search Wholesalers===&lt;br /&gt;
Search for wholesalers by:&lt;br /&gt;
* Company name&lt;br /&gt;
* Email address&lt;br /&gt;
* Contact last name&lt;br /&gt;
* State&lt;br /&gt;
* Active/inactive wholesaler status&lt;br /&gt;
* New wholesaler requests&lt;br /&gt;
&lt;br /&gt;
===Shipping===&lt;br /&gt;
Create and edit shipping tables specific to your wholesalers&#039; site.  These are created the same way as your site&#039;s [[ECMS_Shipping_Tables|standard shipping tables]], but apply only to wholesale customers logged into the wholesale site.&lt;br /&gt;
&lt;br /&gt;
==Marketing==&lt;br /&gt;
&lt;br /&gt;
===Meta Tags===&lt;br /&gt;
Meta tags are not seen by your visitors but are used to help search engines classify your site. Your site should have at least the default set of Meta Tags. If you have the &#039;&#039;&#039;dynamic meta data&#039;&#039;&#039; (&#039;&#039;&#039;Options &amp;gt;&amp;gt; Display Options &amp;gt;&amp;gt; Catalog Options&#039;&#039;&#039;) feature enabled your site will display category and product descriptions as the meta data unless you specify specific meta data for those fields. For a more detailed explanation see the [[SEO]] page on this.&lt;br /&gt;
&lt;br /&gt;
You can setup multiple sets of meta tags for use with the Gateway Pages option below.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
Create a gateway page with its own meta information set that points to a specific area of your site.  This can be used to help direct search engine keyword traffic to a particular area, or to create marketing URLs associated with a particular advertising campaign to track the campaign&#039;s effectiveness through reports.&lt;br /&gt;
&lt;br /&gt;
===Email Campaigns===&lt;br /&gt;
&lt;br /&gt;
Email campaigns provides a way to create, manage, and organize email &#039;blasts&#039;. For full documentation read the [http://webapps/wiki/images/2/2f/EmailBlasts.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
==Reporting==&lt;br /&gt;
===Benchmark===&lt;br /&gt;
Use this report to find out how your store compares to other stores using CommerceV3 in regard to:&lt;br /&gt;
* Conversion rates (number of orders compared to site visits).&lt;br /&gt;
* Cart abandonment (number of sessions where product[s] are added to cart but checkout is not completed).&lt;br /&gt;
* Email blast conversion rate (number of email links clicked compared to number of emails sent).&lt;br /&gt;
&lt;br /&gt;
===Bot Tracker===&lt;br /&gt;
Tracks which pages are being visited by these major search engines, and how frequently:&lt;br /&gt;
* Google&lt;br /&gt;
* Yahoo&lt;br /&gt;
* MSN&lt;br /&gt;
* Ask.com&lt;br /&gt;
&lt;br /&gt;
===Cart Abandonment===&lt;br /&gt;
These reports track trends in cart abandonment. They can help you make changes to your site to minimize the number of people who are leaving your site before making a purchase. The definition of a cart abandoner is a visitor who adds at least one item to the cart but does not place an order.&lt;br /&gt;
&lt;br /&gt;
===Catalog Requests===&lt;br /&gt;
Track catalog requests by day, month, or year.  This can show you when you are your busiest, when you should plan marketing efforts, and when your holiday season begins and ends.&lt;br /&gt;
&lt;br /&gt;
===Comparatives===&lt;br /&gt;
Compare current year&#039;s values to those from the previous year:&lt;br /&gt;
* Visitors&lt;br /&gt;
* Orders&lt;br /&gt;
* Revenue&lt;br /&gt;
* Average order amount&lt;br /&gt;
&lt;br /&gt;
===Email Bounce===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number that bounced as undeliverable.&lt;br /&gt;
&lt;br /&gt;
===Gateway Pages===&lt;br /&gt;
View the referring domain or Media Code, number of catalog requests, number of visits, orders, Sales Avg. $ per Visit, average Dollar amount per Order, and last visit by date for each of your Gateway Pages (configured under Marketing).&lt;br /&gt;
&lt;br /&gt;
===Gift Certificates===&lt;br /&gt;
Use this report to track usage and issuance of gift certificates.&lt;br /&gt;
&lt;br /&gt;
===Incentive Programs===&lt;br /&gt;
====Affiliates====&lt;br /&gt;
[[Image:Ecms-affiliate-setup.JPG|thumb|left| Setting up an Affiliate]]&lt;br /&gt;
Affiliates are a way to track affiliate sales through click-throughs and allow other companies or people to receive a commission for sales they generate. Affiliates are tracked through an &#039;affiliate code&#039; tacked to the end of a URL. For example, if you have an affiliate named &#039;getpaid&#039; then the URL would be http://www.your-site.com?a=getpaid. You would instruct your affiliates to append &#039;?a=getpaid&#039; to any link to your site. All hits would then be tracked and you can view reports to see how much, if any you traffic your affiliates generate for you and pay them appropriately.&lt;br /&gt;
&lt;br /&gt;
From your eCMS control panel expand the Reporting section and click on Affiliates. Then click on the &amp;quot;Add Affiliates&amp;quot; link at the top of the page and fill out the appropriate information. &lt;br /&gt;
&lt;br /&gt;
*Affiliate or Program Name: Pick a unique name for this affiliate. &lt;br /&gt;
*Affiliate Code (used in url): This will be code on the end of the URL (http://your-site.com?a=code). Use alpha-numeric *characters to make it(a-z 0-9)easy. &lt;br /&gt;
*Email of Report Recipient: Who do you want to receive a copy of the report? &lt;br /&gt;
*Commission Rate: This is a numeric value expresses as either a flat rate dollar amount per sale, or a percentage of the total sale without tax and shipping. &lt;br /&gt;
*Send Monthly Email Report?: Check yes to enable this. An email will then be sent to the email addressed supplied above. &lt;br /&gt;
*Web Address: Affiliate&#039;s web site. &lt;br /&gt;
*Check Payable To: Payee &lt;br /&gt;
*Address 1: Address of Payee &lt;br /&gt;
*Address 2: &lt;br /&gt;
*City: &lt;br /&gt;
*State: &lt;br /&gt;
*Zip: &lt;br /&gt;
*Country: &lt;br /&gt;
*Phone: &lt;br /&gt;
*Affiliates can have access to their commission and statistics for the last 12 months. All you need to do is give the affiliate a password and send them to http://yourdomain.com/affiliate. &lt;br /&gt;
*Affiliate Section Password: If you want the affiliate to be able to login to your site and view their statistics then supply a password for them. &lt;br /&gt;
*Retype Affiliate Section Password:&lt;br /&gt;
&lt;br /&gt;
If you have a link on your site for people to apply to be an affiliate of yours, you can manage those applications from &#039;&#039;&#039;Reporting &amp;gt;&amp;gt; Affiliates &amp;gt;&amp;gt; Approve Affiliates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
For an example of what your customer would see -&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.yourstore.com/affiliate_register&lt;br /&gt;
&lt;br /&gt;
Review and approve, assign an affiliate code, assign commission rate, or deny (delete) the applications from this screen.&lt;br /&gt;
&lt;br /&gt;
===Opt-Out===&lt;br /&gt;
Displays a line item for each email blast showing the number of emails sent and the number of recipients that clicked an opt-out link.&lt;br /&gt;
&lt;br /&gt;
===Order Detail===&lt;br /&gt;
View line items ordered on all site orders in the date range entered.&lt;br /&gt;
&lt;br /&gt;
===Product Aging===&lt;br /&gt;
Shows all products in order of last update, with &amp;quot;stalest&amp;quot; products starting at the top of the list.  This helps you find products that have not been updated in a long time so you can keep your product list up-to-date with your latest changes.&lt;br /&gt;
&lt;br /&gt;
===Referrers===&lt;br /&gt;
Shows the amount of site traffic in the specified date range, grouped according to the referring URL (could be a search engine or an affiliated page):&lt;br /&gt;
* Catalog requests&lt;br /&gt;
* Visits&lt;br /&gt;
* Orders&lt;br /&gt;
* Sales&lt;br /&gt;
* Average dollar amount per visit&lt;br /&gt;
* Average dollar amount per order&lt;br /&gt;
* Last visit&lt;br /&gt;
&lt;br /&gt;
===Revenue===&lt;br /&gt;
&lt;br /&gt;
* The amounts used in the report are total order amounts&lt;br /&gt;
* Total order amount will include adjustments, discounts, shipping, etc. &lt;br /&gt;
* The report will also include free products however, it will not affect the money total&lt;br /&gt;
&lt;br /&gt;
===Sales Rank===&lt;br /&gt;
Use to identify the best selling items in your inventory. This tool is useful to not only see where you are making money but also to find which items need attention in order to improve their ranking.&lt;br /&gt;
&lt;br /&gt;
===Search Engine Placement===&lt;br /&gt;
This feature allows you to view the Google and Yahoo! search engine placement for you and several of your competitors.  To set up this report:&lt;br /&gt;
# Add the keywords you want to check against the two search engines.&lt;br /&gt;
# (Optional) Add one or more competitors you want to check your ranking against.&lt;br /&gt;
The report runs nightly, so your updated statistics will be available each morning for review.&lt;br /&gt;
&lt;br /&gt;
===Search Terms===&lt;br /&gt;
See what people have searched your site for using the built-in search functionality.&lt;br /&gt;
&lt;br /&gt;
===Square In. Analyzer===&lt;br /&gt;
The square inch analyzer&#039;s primary function is to help you identify the items in your store that are under or over performing, and with that information make changes to increase your item&#039;s sales performance.&lt;br /&gt;
&lt;br /&gt;
===Tell a Friend===&lt;br /&gt;
Show a list of products that customers have shared with friends using the Tell A Friend link on the product&#039;s page.  This can show you which products are popular and help you decide which products to market.&lt;br /&gt;
&lt;br /&gt;
===Visits===&lt;br /&gt;
Show graphs of site visits per day, month, and year.&lt;br /&gt;
&lt;br /&gt;
===Wishlist Products===&lt;br /&gt;
Show a list of products that have been added to customer wishlists, and how many lists they are a part of.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===Register for Training===&lt;br /&gt;
===Training Videos===&lt;br /&gt;
===Message Board===&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1366</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1366"/>
		<updated>2012-03-02T17:06:20Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. Having smooth and easy to understand forms on your site can help lower cart abandonment and prevent a lot of user frustration.  If you are using eCMS you can use CSS to style any of your forms. We often use existing frameworks and plugins to achieve design/function requests. Below are some of the most common ones. As always, if you have questions please contact [mailto:ecms@newhavensoftware.com support]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Frameworks:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ - A larger framework that does a lot to equalize typography, layout, and forms. You can use the whole framework or parts. Example page at http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/ - Small CSS and JavaScript library that aims to normalize forms across all browsers. Uses JavaScript to add support for older browsers that do not support HTML5.&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/ - Another form framework that&#039;s easy to use and offers numerous styling options. Example page http://sprawsm.com/uni-form/styles/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be forewarned it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Validation:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation - A well written and versatile client side validation library (depends on [http://jquery.com jQuery]). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Buttons:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1365</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1365"/>
		<updated>2012-03-02T17:05:37Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. Having smooth and easy to understand forms on your site can help lower cart abandonment and prevent a lot of user frustration.  If you are using eCMS you can use CSS to style any of your forms. We often use existing frameworks and plugins to achieve design/function requests. Below are some of the most common ones. As always, if you have questions contact [mailto:ecms@newhavensoftware.com support]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Frameworks:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ - A larger framework that does a lot to equalize typography, layout, and forms. You can use the whole framework or parts. Example page at http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/ - Small CSS and JavaScript library that aims to normalize forms across all browsers. Uses JavaScript to add support for older browsers that do not support HTML5.&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/ - Another form framework that&#039;s easy to use and offers numerous styling options. Example page http://sprawsm.com/uni-form/styles/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be forewarned it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Validation:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation - A well written and versatile client side validation library (depends on [http://jquery.com jQuery]). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Buttons:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1364</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1364"/>
		<updated>2012-03-02T17:05:10Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. Having smooth and easy to understand forms on your site can help lower cart abandonment and prevent a lot of user frustration.  If you are using eCMS you can use CSS to style any of your forms. We often use existing frameworks and plugins to achieve design/function requests. Below are some of the most common ones. As always, if you have questions contact support at [mailto:ecms@newhavensoftware.com]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Frameworks:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ - A larger framework that does a lot to equalize typography, layout, and forms. You can use the whole framework or parts. Example page at http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/ - Small CSS and JavaScript library that aims to normalize forms across all browsers. Uses JavaScript to add support for older browsers that do not support HTML5.&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/ - Another form framework that&#039;s easy to use and offers numerous styling options. Example page http://sprawsm.com/uni-form/styles/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be forewarned it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Validation:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation - A well written and versatile client side validation library (depends on [http://jquery.com jQuery]). &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Buttons:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1363</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1363"/>
		<updated>2012-03-02T16:54:05Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. If you are using eCMS you can use CSS to style any of your forms. &lt;br /&gt;
&lt;br /&gt;
Frameworks:&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ - A larger framework that does a lot to equalize typography, layout, and forms. You can use the whole framework or parts. Example page at http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/ - Small CSS and JavaScript library that aims to normalize forms across all browsers. Uses JavaScript to add support for older browsers that do not support HTML5.&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/ - Another form framework that&#039;s easy to use and offers numerous styling options. Example page http://sprawsm.com/uni-form/styles/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be warned that it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Validation:&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation - A well written and versatile client side validation library (depends on [http://jquery.com jQuery]). &lt;br /&gt;
&lt;br /&gt;
Buttons:&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1362</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1362"/>
		<updated>2012-03-02T16:50:51Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. If you are using eCMS you can use CSS to style any of your forms. &lt;br /&gt;
&lt;br /&gt;
Frameworks:&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ - A larger framework that does a lot to equalize typography, layout, and forms. You can use the whole framework or parts. Example page at http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/ - Small CSS and JavaScript library that aims to normalize forms across all browsers. Uses JavaScript to add support for older browsers that do not support HTML5.&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be warned that it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Validation:&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation&lt;br /&gt;
&lt;br /&gt;
Buttons:&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1361</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1361"/>
		<updated>2012-03-02T16:45:16Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating customer facing forms on your site. If you are using eCMS you can use CSS to style any of your forms. &lt;br /&gt;
&lt;br /&gt;
Frameworks:&lt;br /&gt;
&lt;br /&gt;
* http://formee.org/demo/index.htm - An easy to use and small framework just for forms.&lt;br /&gt;
&lt;br /&gt;
* http://blueprintcss.org/ Example http://blueprintcss.org/tests/parts/forms.html&lt;br /&gt;
&lt;br /&gt;
* http://formalize.me/&lt;br /&gt;
&lt;br /&gt;
* http://sprawsm.com/uni-form/&lt;br /&gt;
&lt;br /&gt;
* http://twitter.github.com/bootstrap/ This is a large framework built by Twitter. Be warned that it&#039;s &amp;quot;for nerds, by nerds&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Validation:&lt;br /&gt;
&lt;br /&gt;
* http://docs.jquery.com/Plugins/Validation&lt;br /&gt;
&lt;br /&gt;
Buttons:&lt;br /&gt;
&lt;br /&gt;
* http://www.cssbuttongenerator.com/ Great cross-browser CSS based button generator. An easy and quick way to style all of your submit buttons.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1360</id>
		<title>Form Design Cribsheet</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Form_Design_Cribsheet&amp;diff=1360"/>
		<updated>2012-03-01T15:20:10Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: Created page with &amp;#039;The graphic below illustrates some of the principles to keep in mind when creating forms.  Image:Form-Design-Crib-Sheet-NewHaven.png&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The graphic below illustrates some of the principles to keep in mind when creating forms.&lt;br /&gt;
&lt;br /&gt;
[[Image:Form-Design-Crib-Sheet-NewHaven.png]]&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
	<entry>
		<id>http://wiki.newhavensoftware.com/index.php?title=Web_Resources&amp;diff=1359</id>
		<title>Web Resources</title>
		<link rel="alternate" type="text/html" href="http://wiki.newhavensoftware.com/index.php?title=Web_Resources&amp;diff=1359"/>
		<updated>2012-03-01T15:19:19Z</updated>

		<summary type="html">&lt;p&gt;Mboyanton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of some of the resources we have found useful for web design, development, and troubleshooting. If you have a suggestion that we have not considered, please email us at [mailto:ecms@newhavensoftware.com ecms@newhavensoftware.com]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/ W3C] is the organization responsible for deciding web standards. This is the definitive source for HTML, CSS, XML, etc. A little technical and dry.&lt;br /&gt;
* [http://www.d.umn.edu/itss/support/Training/Online/webdesign/php.html Web Design REFERENCES - PHP] A massive collection of PHP links, tutorials, and documentation.&lt;br /&gt;
* [http://www.d.umn.edu/itss/support/Training/Online/webdesign/javascript.html Web Design REFERENCES - JavaScript] A massive collection of JavaScript links, tutorials, and documentation.&lt;br /&gt;
* [http://www.d.umn.edu/itss/support/Training/Online/webdesign/css.html Web Design REFERENCES - CSS] A massive collection of CSS (Cascading Style Sheets) links, tutorials, and documentation.&lt;br /&gt;
* [http://www.ibm.com/developerworks/web/tutorials/wa-html5/ Create modern Web sites using HTML5 and CSS3] - Implementing the canvas and video elements in HTML5&lt;br /&gt;
* [http://net.tutsplus.com/ Net Tuts +] - Large selection of tutorials.&lt;br /&gt;
* [http://net.tutsplus.com/ Dive into HTML5] - Great overview of HTML5 and and introduction to the usage of some of the new features.&lt;br /&gt;
* [[Form Design Cribsheet]] - Great infographic on creating a great customer experience with forms&lt;/div&gt;</summary>
		<author><name>Mboyanton</name></author>
	</entry>
</feed>