How can I add a html link in the "bank transfer" extension in backend (Bank Transfer Instructions) textbox and allow the html link to show at the checkout confirmation page?
The customer can click the link and go to online bank to transfer the money.
Hello.
You need to modify bank_transfer extension code something like this http://forum.abantecart.com/index.php/topic,2134.msg8813.html#msg8813
Quote from: Basara on March 19, 2015, 07:27:11 AM
Hello.
You need to modify bank_transfer extension code something like this http://forum.abantecart.com/index.php/topic,2134.msg8813.html#msg8813
OK, thank you! I solve it. ^^
file public_html/extensions/default_banktransfer/storefront/controller/responses/extension/default_banktransfer.php
line 47 :
$this->view->assign('instructions', nl2br($instructions) );
change to
$this->view->assign('instructions', html_entity_decode($instructions) );