Remove the quantity Modifier from the Mini Cart was my next goal, so here it is.
Open the
/common_files/customer/minicart.tpl file.
On line 54 put a {* at the begin of that line and on line 67 put *} after the "=" sign.
In order to turn this off on a per product basis, use the following code and change as needed. Starting at line 52:
Notice the use of the Does Not Equal "!=".
Code:
{else}
{if $product.productid != '90'}
{if $active_modules.Egoods and $product.distribution}
<span class="quantity">
1
<input type="hidden" name="productindexes[{$product.cartid}]" value="1" />
</span>
{else}
<input type="text" name="productindexes[{$product.cartid}]" value="{$product.amount}" class="quantity" />
{/if}
x
<span class="price">{currency value=$price}</span>
=
{else}
<span class="total">{multi x=$price y=$product.amount assign=unformatted}{currency value=$unformatted}</span>
{/if}
{/if}