Hello,
I tried to edit the module banktransfer in order to change the text when the customer confirm his order.
When I open the banktransfer_end.php (/plugins/hikashoppayment/banktransfer) I see the following:
defined('_JEXEC') or die('Restricted access');
?><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>
Where can I find these variable to change their content?
Thank you in advance!