- Open the product_details.tpl file located in the skins/[CUSTOMER_ACTIVE_SKIN]/customer/products_pages directory of your CS-Cart installation, where [CUSTOMER_ACTIVE_SKIN] is an active skin of your storefront.
- Find the following part of code there:
<div class="form-field product-list-field">
<label>{$lang.in_stock}:</label>
<span id="product_amount_{$product.product_id}">{$product.amount} {$lang.items}</span>
</div>
and replace it with this one:
<div class="form-field product-list-field" style="display:none">
<label>{$lang.in_stock}:</label>
<span id="product_amount_{$product.product_id}">{$product.amount} {$lang.items}</span>
</div>
- Save the file and check the result.
NOTE: If some of the objects on the pages need to be hidden add the style="display:none" part of code to the HTML tag of this object.