by ShopSite Lauren » Thu Jul 01, 2010 10:14 am
There isn't a way to do this with ShopSite, however there is a way that you can do this with a custom template. You could enter code into the regular text field like the following:
<span class="add-to">Add me to your E-mailing list</span>
<span class="added">Thank you for adding your name to the WorldWise Jewelry e-mail list</span>
In the shopping cart template, within the [-- DEFINE SHIPPING --] and [-- DEFINE CONFIRMATION --] sections you will want to add CSS similar to:
<style type="text/css">
span.add-to {
visibility: visible;
display: block;
}
span.added {
visibility: hidden;
max-height: 1px;
display: block;
}
</style>
Then, in the shopping cart template within the [-- DEFINE THANK_YOU --] and [-- DEFINE THANK_YOU_EMAIL --] sections you will want to add CSS similar to:
<style type="text/css">
span.added {
visibility: visible;
display: block;
}
span.add-to {
visibility: hidden;
max-height: 1px;
display: block;
}
</style>
- ShopSite Lauren
Contact me for help with any of your
custom ShopSite template questions.