Customer Reviews Add-on by Stokes Web Development
Web.config Modification
Previous Top Next

The Web.config file needs a few new lines added for the licensing system key and the automatic email reminder configuration.  Open your web.config file and search and see if it contains the following code:
  
<appSettings>

A stock Storefront 6.x site will not contain this tag but some add-ons will add this line to your file. A Storefront 7.x site will contain this tag.  If this tag is not present, look at the very bottom of this file and find this tag:
  
</configuration>

Then just before that line add the following code in red:
  
<appSettings>  
   <add key="swReviewLicenseKey" value="****" />
   <add key="ReminderEmailDaysToWait" value="21" />
   <add key="ReminderEmailCC" value="" />
   <add key="ReminderEmailTrigger" value="OrderDate" />
   <add key="ReminderEmailSubject" value="Review items recently ordered from [StoreName]" />
   <add key="SendEmailsToNonSubscribed" value="False" />
</appSettings>
</configuration>

Replace the **** with the license key you were given when you purchased the add-on.  Leave it as is if you are using the trial version.  If needed,  you can CLICK HERE to retrieve your key by logging into your account panel and then reviewing your order.

If your site does contain the <appSettings> tags then add the above code to that existing section minus the <appSettings></appSettings> tags.

Save the file.

 
 
 Next Step: Merchant Tools

 See Also: Customization - Emails


Copyright © 2008 by Stokes Web Development.  All Rights Reserved.