Must Know TomatoCart Translation Rules
Last Updated on Thursday, 24 January 2013 11:14 Written by Jack Yin Thursday, 31 January 2013 12:00
TomatoCart has offered two ways for users to translate TomatoCart software into multiple languages. People could either use the Online Translator tool (http://translator.tomatocart.com/), or translate at private store administration panel. TomatoCart Online Translator (hereinafter “TOT” ) serves as a collaborative platform for multiple users to translate into multiple languages. It supports account creation, multiple roles, translating, export and import, help information etc.
Rules to translate or your account will be deactivated or even deleted:
Learn MoreHow To Dynamically Change CSS Properties of Elements with jQuery
Last Updated on Thursday, 3 January 2013 12:00 Written by Richi González Thursday, 3 January 2013 12:00
Hello,
Did you know you can change elements’ CSS properties dynamically with jQuery? Well, yeah! You probably want to change an element’s opacity when a button is clicked to make it look like it is loading, for example. There are lots of uses this function can have, you set your own limits!
Learn MoreHow to do a rewrite rule in web.config
Last Updated on Wednesday, 28 April 2010 05:22 Written by Shai Ben-Naphtali Monday, 1 March 2010 01:26
If you would like to do a domain URL redirection from domain.com to www.domain.com or vise versa, you can do something like this:
Place either of these (depending on what you’d like done. And edit to match your domain) inside the <system.webServer></system.webServer> tags in the web.config of the domain.
<rewrite><rules>
<rule name=”Add WWW prefix” >
<match url=”(.*)” ignoreCase=”true” />
<conditions>
<add input=”{HTTP_HOST}” pattern=”^domain\.com” />
</conditions>
<action type=”Redirect” url=”http://www.domain.com/{R:1}”
redirectType=”Permanent” />
</rule>
—
<rule name=”Remove WWW prefix” >
<match url=”(.*)” ignoreCase=”true” />
<conditions>
<add input=”{HTTP_HOST}” pattern=”^www\.domain\.com” />
</conditions>
<action type=”Redirect” url=”http://domain.com/{R:1}”
redirectType=”Permanent” />
</rule>
</rules></rewrite>

Recent Comments