HELLO
WHEN WE GO ON THE CART I HAVE COMMENT THAT CUSTOMER CAN WRITE, PLEASE TELL ME HOW TO DELETE THIS ?
comments can be usefull on the cart for things like shipping instructions etc, but if you want to get rid of it the use a HTML override to edit the file views/cart/tmpl/default.php
use HTML comments to hide it <!-- --> or just delete the lines
===================
<form method="post" id="checkoutForm" name="checkoutForm" action="<?php echo JRoute::_( 'index.php?option=com_virtuemart&view=cart'.$taskRoute,$this->useXHTML,$this->useSSL ); ?>">
<?php // Leave A Comment Field ?>
<!-- <div class="customer-comment marginbottom15"> -->
<!--<span class="comment"><?php echo JText::_('COM_VIRTUEMART_COMMENT'); ?></span><br /> -->
<!--<textarea class="customer-comment" name="customer_comment" cols="50" rows="4"><?php echo $this->cart->customer_comment; ?></textarea> -->
</div>
<?php // Leave A Comment Field END ?>
===========================
Hope this helps
Hello,
Thank you very much!
But you have just make a little mistake with the last -->
<!--<textarea class="customer-comment" name="customer_comment" cols="50" rows="4"><?php echo $this->cart->customer_comment; ?></textarea>
</div>-->
Thank you for your help ! :)