kadapawn Posted May 19, 2014 Share Posted May 19, 2014 Hello guys, I have a problem when try to set bold, italic or any other style in my product or category description, because no changes are made in front-end, even if the code is presented in the html source of that description and only h styles are working... I use ps1562 with custom theme. I know the problem is with this theme because in the default theme the editor style is working. Any idea what i must change to get this work? This is the link of the website. Best regards Link to comment Share on other sites More sharing options...
NemoPS Posted May 19, 2014 Share Posted May 19, 2014 Custom theme, definitely. It's probably using strip_tags on those fields. Try opening product.tpl, look for the description ($product->description) and see if it has |strip_tags attached at the end of the variable Link to comment Share on other sites More sharing options...
vekia Posted May 19, 2014 Share Posted May 19, 2014 can you show contents of file mentioned by Nemo above? you can find it in your theme directory. Link to comment Share on other sites More sharing options...
kadapawn Posted May 19, 2014 Author Share Posted May 19, 2014 Hello guys and thank for helping! There was no |strip_tags in any line of the description in cat.tpl and product.tpl. Because i am working on cat. description, here is the code for that. {* * 2007-2013 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {include file="$tpl_dir./breadcrumb.tpl"} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat"> {if $scenes} <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {else} <!-- Category image --> {if $category->id_image} <div class="align_center"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage"/> </div> {/if} {/if} {if $category->description} <div class="cat_desc"> {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} <p>{$category->description}</p> {/if} </div> {/if} </div> {/if} {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories"> <h3>{l s='Subcategories'}</h3> <ul class="inline_list"> {foreach from=$subcategories item=subcategory} <li class="clearfix"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img"> {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="{$subcategory.name|escape:'htmlall':'UTF-8'}" /> {else} <img src="{$img_cat_dir}default-medium_default.jpg" alt="{$subcategory.name|escape:'htmlall':'UTF-8'}" /> {/if} </a> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a> {*{if $subcategory.description} <p class="cat_desc">{$subcategory.description}</p> {/if}*} </li> {/foreach} </ul> <br class="clear"/> </div> {/if} <h1> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} <span class="resumecat category-product-count"> {include file="$tpl_dir./category-count.tpl"} </span> </h1> {if $products} <div class="content_sortPagiBar"> <div class="sortPagiBar"> {include file="./product-compare.tpl"} {include file="./product-sort.tpl"} </div> </div> {include file="./product-list.tpl" products=$products} <div class="content_sortPagiBar bottom"> <div class="sortPagiBar"> {include file="./product-sort.tpl"} </div> {include file="./pagination.tpl"} </div> {/if} {elseif $category->id} <p class="warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Link to comment Share on other sites More sharing options...
kadapawn Posted May 19, 2014 Author Share Posted May 19, 2014 i found the problem, was a font weight in global.css in body{...} Please mark this topic as solved! Link to comment Share on other sites More sharing options...
vekia Posted May 19, 2014 Share Posted May 19, 2014 i found the problem, was a font weight in global.css in body{...} thank you for confirmation Please mark this topic as solved! as you wish :-) Link to comment Share on other sites More sharing options...
Recommended Posts