Where to disable 'customer notes' on the order form?
I checked everywhere in the config, but can't seem to find it. Maybe overlooking something obvious.
VM 2.6.10
just comment it out in components\com_virtuemart\views\cart\tmpl\default.php as an override
<?php // Leave A Comment Field ?>
<!--<div class="customer-comment marginbottom15">
<span class="comment"><?php echo JText::_ ('COM_VIRTUEMART_COMMENT_CART'); ?></span><br/>
<textarea class="customer-comment" name="customer_comment" cols="60" rows="1"><?php echo $this->cart->customer_comment; ?></textarea>
</div>-->
<?php // Leave A Comment Field END ?>
Thanks. With all those updates I rather not work with overrides in templates. So maybe I'll just use css, as that div's classname seems to be unique (just did a full code-search in all VM files)
div.customer-comment{
display: none;
}