X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   Can't use HTML in the description section of Payment Settings (https://forum.x-cart.com/showthread.php?t=73743)

GlasPak 03-21-2016 05:26 AM

Can't use HTML in the description section of Payment Settings
 
I am trying to modify the payment description and would like to add 2 <br> to the description but x-cart keeps removing the html from the description. Anyway to use html in the description box?

totaltec 03-21-2016 04:27 PM

Re: Can't use HTML in the description section of Payment Settings
 
Is it removing it from the admin side, like taking it away from the input box, or is it just not rendering it on the front of the site?

2 different issues, for the first you would need to allow html in that field on the admin side, probably require some PHP decorating of that class, for the second you would need to edit the template. Both tasks are fairly easy to do if you are an experienced developer, but it would be tough otherwise.

razortw 03-28-2016 12:45 AM

Re: Can't use HTML in the description section of Payment Settings
 
Quote:

Originally Posted by GlasPak
I am trying to modify the payment description and would like to add 2 <br> to the description but x-cart keeps removing the html from the description. Anyway to use html in the description box?

Hi there.
You will need to modify the default/en/checkout/steps/shipping/parts/paymentMethod.tpl template and add the ":h" modifier to the {method.getDescription()} expression as follows.
Code:

<div IF="{method.getDescription()}" class="payment-description">{method.getDescription():h}</div>
This will apply to offline payments only. If you need to use HTML in PayPal's description or other online payment, you will need to modify their own templates. Use Webmaster mode to identify the exact template to be edited.


All times are GMT -8. The time now is 01:13 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.