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.
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');
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');
Ah, excellent! Thank you!
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');
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...
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/
Quote from: Basara on January 17, 2022, 03:18:28 AM
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/
Sir, I have the original file I edited that file and replaced the $product_info['blurb'] with html_entity_decode($product_info['blurb'], ENT_QUOTES, 'UTF-8');
but nothing changed. as also cleaned the browser and website cache memory too