Hello,
- Remove button "
Choose a preset style": 'Extensions' -> 'Template Manager' -> 'Styles' -> 'OT Malesuada - Default' -> 'Advanced' -> 'Show template control utility at front-end?' : 'No'
- Remove "
Out of Stock" in product detail page: find and comment this code (line 202 - 205) in file 'templates/ot_malesuada/html/com_virtuemart/productdetails/default.php'
<div class="product-in-stock pull-left">
<?php echo $this->product->product_in_stock > 0 ? $this->product->product_in_stock . ($this->product->product_in_stock > 1 ? JText::_('TPL_OT_ITEMS_IN_STOCK') : JText::_('TPL_OT_ITEM_IN_STOCK')) : JText::_('TPL_OT_ITEMS_OUT_STOCK'); ?>
</div>
<div class="clear"></div>
change to
<!-- <div class="product-in-stock pull-left">
<?php echo $this->product->product_in_stock > 0 ? $this->product->product_in_stock . ($this->product->product_in_stock > 1 ? JText::_('TPL_OT_ITEMS_IN_STOCK') : JText::_('TPL_OT_ITEM_IN_STOCK')) : JText::_('TPL_OT_ITEMS_OUT_STOCK'); ?>
</div>
<div class="clear"></div> -->