Hello,
You can modify the Bank Transfert "end order view", for make this follow me step bt step :
- Go to YourWebsiteUrl\plugins\hikashoppayment\banktransfer
- open the banktransfer_end.php and edit it for have something like this :
<div class="hikashop_banktransfer_end" id="hikashop_banktransfer_end">
<span class="hikashop_banktransfer_end_message" id="hikashop_banktransfer_end_message">
<?php echo /* JText::_('ORDER_IS_COMPLETE').'<br/>'.
JText::sprintf('PLEASE_TRANSFERT_MONEY',$this->amount).'<br/>'. */
$this->information.'<br/>'.
JText::sprintf('INCLUDE_ORDER_NUMBER_TO_TRANSFER',$this->order_number).'<br/>'.
JText::_('THANK_YOU_FOR_PURCHASE');?>
</span>
</div>
<?php
if(!empty($this->return_url)) {
$doc = JFactory::getDocument();
$doc->addScriptDeclaration("window.hikashop.ready(function(){window.location='".$this->return_url."'});");
}
Comment the 2line arround line 3 & 4 will prevent to display the unwanted text, and so have the plugin payment that fir your needs.
Regards