<!-- DISPLAY_TAG NOT DEFINED -->
I assume I'm missing something in my product template. my 'add to cart' section in the template looks like this:
#######################
# ADD TO CART BUTTON #
#######################
[-- IF VAR.SubForm no --]
<a href="[--PRODUCT.AddToCartURL--]&super=[-- PRODUCT.Parent --]"><img src="[-- OUTPUT_DIRECTORY_URL --]/[-- VAR.Media --]/add_to_cart.gif" border="0"></a><br>
[-- ELSE --]
<form action="[-- SHOPPING_CART_URL BASE --]/order.cgi" style="display:inline" method=post>
<input type=hidden name=storeid value=[-- STORE_ID --]>
<input type=hidden name="super" value="[-- Product.Parent --]">
<input type=hidden name=dbname value=products>
<input type=hidden name=function value=add>
<input type=hidden name=itemnum value=[-- PRODUCT.RecordNumber --]>
[-- IF VAR.SubOptions yes --]
<br>[-- PRODUCT.OptionText --]
[-- ORDER_OPTION_MENU LINE --]
[-- END_IF --]
[-- IF VAR.SubQuantity yes --]
[-- IF VAR.SubOptions no --]
<br>
[-- END_IF --]
Quantity <input type=text size=2 name="[-- PRODUCT.RecordNumber --]:qnty" value="1" >
[-- END_IF --]
<input type=image src="[-- OUTPUT_DIRECTORY_URL --]/[-- VAR.Media --]/add_to_cart.gif" width=121 height=19 hspace=3 vspace=3 border=0 align="absbottom" name="Add to Cart" alt="Add to Cart">
</form><br>
[-- END_IF --]
am I supposed to hard-code in the /media/ directory where it says /[-- VAR.Media --]? what about the [-- OUTPUT_DIRECTORY_URL --] portion, should I be hard-coding in my store URL there?
TIA.