Author Topic: input html link in "Bank Transfer Instructions"  (Read 3759 times)

Offline smallfish

  • Full Member
  • ***
  • Posts: 129
  • Karma: +15/-2
    • View Profile
input html link in "Bank Transfer Instructions"
« on: March 19, 2015, 01:05:18 AM »
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.

Offline Basara

  • Administrator
  • Hero Member
  • *****
  • Posts: 5798
  • Karma: +274/-2
    • View Profile
Re: input html link in "Bank Transfer Instructions"
« Reply #1 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

Offline smallfish

  • Full Member
  • ***
  • Posts: 129
  • Karma: +15/-2
    • View Profile
Re: input html link in "Bank Transfer Instructions"
« Reply #2 on: March 19, 2015, 07:58:30 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) );

 

Powered by SMFPacks Social Login Mod