Quote:
Originally Posted by Dougrun
thanks, seems to work ok, although theres 2 "Quantity" on the product details page and I'm not sure what their functions are...
I'm tweaking the look to our liking..
The Qty input field really doesnt need to be the entire page width.
|
You can change common_files/modules/Xcart_Mobile_Skin/customer/main/product_details.tpl at lines 81-83
HTML Code:
<span class="property-name">
{strip}<span class="ui-btn-text">{$smarty.capture.qty_title|strip}: </span>{/strip}
</span>
to
HTML Code:
{if not $product.appearance.quantity_input_box_enabled}
<span class="property-name">
{strip}<span class="ui-btn-text">{$smarty.capture.qty_title|strip}: </span>{/strip}
</span>
{/if}