
11-18-2013, 01:28 PM
|
 |
Ecwid Team
|
|
Join Date: Feb 2010
Location: Ecwid headquarter
Posts: 5,876
|
|
Quote:
Originally Posted by patrick dinneen
I've managed to remove the 'sign in' but not to change the e-mail text. This doesn't work, creatd using the translate tool
<script>
ecwidMessages = {
"PaymentDetails.enter_email":"Enter your e-mail for updates on when item is shipped"
}
</script>
|
Hello Patrick,
You can use only one ecwidMessages traslation variable on your site. Otherwise, only last variable values will be applied to your store.
In order to solve this problem you should merge all translation scripts into one.
Find following script in the source code of your page:
Code:
<p><script>
ecwidMessages = {
"PaymentDetails.enter_billing":"Enter your shipping address"
}
</script></p>
<p><script>
ecwidMessages = {
"PaymentDetails.enter_email=Enter your e-mail so I can update you when item is shipped"
}
</script></p>
and change it to this one:
Code:
<script>
ecwidMessages = {
"PaymentDetails.enter_billing":"Enter your shipping address",
"PaymentDetails.enter_email=Enter your e-mail so I can update you when item is shipped"
}
</script>
If you have any questions, please, feel free to ask.
__________________
Maya N., Ecwid Team
------------------
Welcome to our new Help Center!
|