Please post the section(s) of the template that you changed. Also you
must make sure that the file name of the file you changed is exactly the
same as the file name that ShopSite is using. You can't copy a ShopSite
template from the backoffice and give it the same name as the original
but once you have a copy in the merchant template area you can then make
another copy and give it the same name as ShopSite had.
Here is the code from the Multi-Use-Product.sst
- Code: Select all
[-- IF product.DisplayOrderQuantity? --]
<span class="pr_qty">[-- STORE.Quantity --]: <input type=text size=2
name="[-- PRODUCT.RECORDNUMBER --]:qnty" value="[-- IF
PRODUCT.MinimumQuantity "0" --]1[-- ELSE_IF PRODUCT.MinimumQuantity ""
--]1[-- ELSE --][-- PRODUCT.MinimumQuantity --][-- END_IF --]"></span>
[-- END_IF --]
I would change it to be
- Code: Select all
[-- IF product.DisplayOrderQuantity? --]
<span class="pr_qty">[-- STORE.Quantity --]: <input type=text size=2
name="[-- PRODUCT.RECORDNUMBER --]:qnty" value="1"></span>
[-- END_IF --]
Or if you always want the quantity field to display avoid the IF statements and just use
- Code: Select all
<span class="pr_qty">[-- STORE.Quantity --]: <input type=text size=2
name="[-- PRODUCT.RECORDNUMBER --]:qnty" value="1"></span>
Note that you must also make similar changes to the form which displays on the field on the moreinfo page.
I think the template that has that information is an include file Multi-Use-More-Info-Content.sst
One helpful feature when trying to find out what file is used to display certain content is found under Utilities > Publish. Check the box "Insert an html comment before each include file " and then an html comment line listing the file being used will be output in the html of generated pages. It will look something like the following with a start and end statement to let you know what is in each include file.
- Code: Select all
<!-- ***** Start of Include: [sc] Multi-Use-Page-Vars.sst -->
html code is here
<!-- ***** End of Include: Multi-Use-Page-Vars.sst -->