Hi,
Does anyone know how to make the "add to cart" button show up as a text link instead of a button without changing the main setting for this in the Shopsite back office? I have other "add to cart" buttons in the site that I want to stay as buttons, I only want to make it text on a few.
Here is the line of code in my custom template that I want to change to text, currently this makes a button:
<input class="add" type=submit value="Add to Cart">
Here it is again inside the if statement.:
[-- IF PRODUCT.QuantityPricing --]
<form action="[-- SHOPPING_CART_URL BASE --]/order.cgi" method=post>
<input type=text size=2 name="[-- PRODUCT.RecordNumber --]:qnty" value="1" >
<input type=hidden name=storeid value=[-- STORE_ID --]>
<input type=hidden name=dbname value=products>
<input type=hidden name=function value=add>
<input type=hidden name=itemnum value=[-- PRODUCT.RecordNumber --]>
<input class="add" type=submit value="Add to Cart">
</form>
[-- END_IF --]