Доброго времени суток , господа!
В рнр я полный профан , подскажите как вырезать (вернее что именно ) Авторизацию , Выставить счёт и Способ доставки .

Я догадываюсь что рыть надо тут com_virtuemart - views - cart - tmpl -
default_pricelist.phpПорыл - прогресс на лицо Убрал "Выставить счёт" и "Изменить адрес доставки"
кому нужно код ниже (с вырезанными кусками)
<?php defined('_JEXEC') or die('Restricted access');
?>
<div class="billto-shipto">
<div class="width50 floatleft">
<?php // Output Bill To Address ?>
<div class="output-billto">
<?php
foreach($this->cart->BTaddress['fields'] as $item){
if(!empty($item['value'])){
if($item['name']==='agreed'){
$item['value'] = ($item['value']===0)? JText::_('COM_VIRTUEMART_USER_FORM_BILLTO_TOS_NO'):JText::_('COM_VIRTUEMART_USER_FORM_BILLTO_TOS_YES');
}
?>
<?php if ($item['name'] != 'title' and $item['name'] != 'first_name' and $item['name'] != 'middle_name' and $item['name'] != 'zip') { ?>
<br class="clear" />
<?php
}
}
} ?>
<div class="clear"></div>
</div>
<input type="hidden" name="billto" value="<?php echo $this->cart->lists['billTo']; ?>"/>
</div>
<div class="width50 floatleft">
<?php if(!isset($this->cart->lists['current_id'])) $this->cart->lists['current_id'] = 0; ?>
</div>
<div class="clear"></div>
</div>
<fieldset>
<table
class="cart-summary"
cellspacing="0"
cellpadding="0"
border="0"
width="100%">
<tr>
<th align="left"><?php echo JText::_('COM_VIRTUEMART_CART_NAME')?></th>
<th align="left"><?php echo JText::_('COM_VIRTUEMART_CART_SKU')?></th>
<th
align="center"
width="60px"><?php echo JText::_('COM_VIRTUEMART_CART_PRICE')?></th>
<th
align="right"
width="140px"><?php echo JText::_('COM_VIRTUEMART_CART_QUANTITY')?>
/ <?php echo JText::_('COM_VIRTUEMART_CART_ACTION')?></th>
<?php if ( VmConfig::get('show_tax')) { ?>
<th align="right" width="60px"><?php echo "<span class='priceColor2'>".JText::_('COM_VIRTUEMART_CART_SUBTOTAL_TAX_AMOUNT')?></th>
<?php } ?>
<th align="right" width="60px"><?php echo "<span class='priceColor2'>".JText::_('COM_VIRTUEMART_CART_SUBTOTAL_DISCOUNT_AMOUNT')?></th>
<th align="right" width="70px"><?php echo JText::_('COM_VIRTUEMART_CART_TOTAL')?></th>
</tr>
<?php
$i=1;
А вот где логин грохнуть .....
