Jump to content
  • 0

HTML w short description


Mateusz_unkown

Question

Witam serdecznie.
Posiadam Prestashop w wersji 1.6.0.9.
Chciałbym uzyskać informacje co należy zrobić, aby znaczniki HTML działały w short description.

W pliku product-list.tpl mamy :

<p class="product-desc" itemprop="description">
{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}
</p>

po zagłębieniu się w temacie, przeczytałem, że należy usunąć

|strip_tags:'UTF-8'|truncate:360:'...'


Niestety, gdy usuwam powyższy kod, text w opisie krótkim nie pokazuje się.

Prosiłbym o pomoc w tym temacie.

Pozdrawiam

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Witam,
udało mi się rozwiązać powyższy problem.
Poniżej zamieszczam rozwiązanie, może komuś się przyda w przyszłości :)

Należy zmienić

<p class="product-desc" itemprop="description">
{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}
</p> 

na

<div class="product-desc" itemprop="description">
{$product.description_short|truncate:360:'...'}
</div>

pozdrawiam

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...