AbanteCart Development > Customization help

HTML in the Blurb?

(1/2) > >>

andrewatmcd:
Hello all,

If I wanted to use HTML in the product blurb (inserting a bulleted list, for instance), what would I need to edit and where?

Many thanks,
Andrew.

abolabo:
all blurb stored in database as html-entities to prevent injections.
You should to change your tpl (product/product.tpl) and decode entities.
Just find variable $product_info['blurb'] and replace with html_entity_decode($product_info['blurb'], ENT_QUOTES, 'UTF-8');

andrewatmcd:

--- Quote from: abolabo on May 21, 2019, 04:48:41 AM ---all blurb stored in database as html-entities to prevent injections.
You should to change your tpl (product/product.tpl) and decode entities.
Just find variable $product_info['blurb'] and replace with html_entity_decode($product_info['blurb'], ENT_QUOTES, 'UTF-8');

--- End quote ---

Ah, excellent! Thank you!

HADY:

--- Quote from: abolabo on May 21, 2019, 04:48:41 AM ---all blurb stored in database as html-entities to prevent injections.
You should to change your tpl (product/product.tpl) and decode entities.
Just find variable $product_info['blurb'] and replace with html_entity_decode($product_info['blurb'], ENT_QUOTES, 'UTF-8');

--- End quote ---


Hello Sir,

Sorry for bothering you. I still learning php so,

Can you tell me please what and where exactly should be changed on (PHP DB) the decode entities???


Thank you...

Basara:
Hello.

If you have default template try to edit this file https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/template/pages/product/product.tpl#L94

In the 3rd party templates files located in the public_html/extension/theme/

Navigation

[0] Message Index

[#] Next page

Go to full version
Powered by SMFPacks Social Login Mod