I have a BigCommerce Store. On the right-hand side of my store under My Favourites see (
http://gatesunique.mybigcommerce.com/doodle-daddles/) if I click on add to cart:
In Chrome it comes back with a blank page with "Add to my designAdd to my designAdd to my designAdd to my design"
In Firefox it comes back with a blank page with "Add to my design"
In i.e. it works perfectly and takes me to the fast cart.
I have script which is supposed to change the label "compare" on the main products page to "add to my design" depending on which category was chosen. Here is the script. If I remove the script the cart works perfectly, but then of course I don't have the label changed as I want it. Please let me know if there is more information I can provide to get help with this.
[CODE]<script type="text/javascript">
var doodle= "http://gatesunique.mybigcommerce.com/doodle-daddles/";
if (location.href==doodle){
document.write('<label for="compare_%%GLOBAL_ProductId%%">Add to my design</label>');
} else {
document.write('<label for="compare_%%GLOBAL_ProductId%%">%%LNG_Compare%%</label>');
}
</script>[ICODE]