-- HikaShop version -- : 5.0.4
-- Joomla version -- : 4.4.4
-- PHP version -- : 8.0.30
I am using the Bank Transfer plugin, to create an option for paying via invoice.
In the end text, I get a message about transfering the amount and other stuff that I do not need.
My customers are businesses and they all buy on "credit", so they will get an invoice and pay that after 30 days. I can see in the "banktransfer_end.php" where the text is comming from and I can find the text in the language file - but is it possible for me to create an override on the entire "banktransfer_end.php" ?
So that this section:
<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>
Becomes this:
<span class="hikashop_banktransfer_end_message" id="hikashop_banktransfer_end_message">
<?php echo JText::_('ORDER_IS_COMPLETE').'<br/>'.
$this->information.'<br/>'.
JText::_('THANK_YOU_FOR_PURCHASE');?>
</span>
Or is there a better way to do this ?