Hello hannah,
1. I think that you'll have to :
- go to "Hikashop -> Display -> Views"
- edit the file "status" of the view "checkout" of the template that you are currently using
- and you can for example replace your file by :
<?php
/**
* @package HikaShop for Joomla!
* @version 1.5.7
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><!--
<br/>
<span id="hikashop_checkout_status">
<?php
$array=array();
if(!empty($this->shipping_data)){
$array[]= JText::sprintf('HIKASHOP_SHIPPING_METHOD_CHOSEN',$this->shipping_data->shipping_name);
}
if(!empty($this->payment_data)){
$array[]= JText::sprintf('HIKASHOP_PAYMENT_METHOD_CHOSEN',$this->payment_data->payment_name);
}
echo implode('<br/>',$array);
?>
</span>-->
2. I don't know if it's possible.
Hope this will help you.