Jump to content

How to add long description in Quick view?


Recommended Posts

Hi!

I have noticed that every single description of my products does not show up in the pop up. This because I have been writing it in the long description textarea. But when I add short description it shows up (see attached files).

How do I apply the function for showing the long description in my quick view pop up?

 

Thank you in advance!

post-1015994-0-46824800-1435489853_thumb.png

post-1015994-0-35529800-1435490220_thumb.png

Edited by Ludwig1 (see edit history)
Link to comment
Share on other sites

I have solved the problem. 

Go to Product.tpl

 

Replace:

 

{if $product->description_short || $packItems|@count > 0}
<div id="short_description_block">
{if $product->description_short}
<div id="short_description_content" class="rte align_justify" itemprop="description">{$product->description_short}</div>
{/if}
 
with:

 

{if $product->description}
<div id="short_description_block">
{if $product->description}
<div id="short_description_content" class="rte align_justify" itemprop="description">{$product->description}</div>
{/if}

 

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...