Jump to content

how add a image massive in short description


Recommended Posts

  • 4 weeks later...

@chichos

At short description, because of length limits, I guess PrestaShop has stripped the html tags. Please try it on long description.

 

in long description it work perfect but not for short description i need to add a little image but is don't work in the admin panel i can see the image but not in the from office, do you know the code i need to check to fix this

Link to comment
Share on other sites

i think i need to modify this

 

<div id="short_description_block">

{if $product->description_short}

<div id="short_description_content" class="rte align_justify">{$product->description_short|strip_tags}</div>

{/if}

{if $product->description}

<p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p>

{/if}

{if $packItems|@count > 0}

<h3>{l s='Pack content'}</h3>

{foreach from=$packItems item=packItem}

<div class="pack_content">

{$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)}">{$packItem.name|escape:'htmlall':'UTF-8'}</a>

<p>{$packItem.description_short|truncate:100:'...'}</p>

</div>

Link to comment
Share on other sites

i think i need to modify this

 

<div id="short_description_block">

{if $product->description_short}

<div id="short_description_content" class="rte align_justify">{$product->description_short|strip_tags}</div>

{/if}

{if $product->description}

<p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p>

{/if}

{if $packItems|@count > 0}

<h3>{l s='Pack content'}</h3>

{foreach from=$packItems item=packItem}

<div class="pack_content">

{$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)}">{$packItem.name|escape:'htmlall':'UTF-8'}</a>

<p>{$packItem.description_short|truncate:100:'...'}</p>

</div>

 

 

problem solved :D

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 months later...
×
×
  • Create New...