Jump to content

Compare products using more info instead of data sheet possible?


Recommended Posts

Hi

I have all my specs written in the more info column ,but prestashop compares the datasheet of products during comparison.

 

If i could make it read from the more info block that would be great.

 

 

thanks in advance

 

indus

Link to comment
Share on other sites

Try changing line 45 of products-comparison.tpl in your theme's directory from:

 

<div class="product_desc"><a href="{$product->getLink()}" title="{l s='More'}">{$product->description_short|strip_tags|truncate:130:'...'}</a></div>

 

to:

 

<div class="product_desc"><a href="{$product->getLink()}" title="{l s='More'}">{$product->description|strip_tags|truncate:130:'...'}</a></div>

 

This will use the description field instead of the short description field, but it will still strip all formatting and only show the first 130 characters. You can remove |strip_tags and increase the truncate value to fix that.

Link to comment
Share on other sites

Try changing line 45 of products-comparison.tpl in your theme's directory from:

 

<div class="product_desc"><a href="{$product->getLink()}" title="{l s='More'}">{$product->description_short|strip_tags|truncate:130:'...'}</a></div>

 

to:

 

<div class="product_desc"><a href="{$product->getLink()}" title="{l s='More'}">{$product->description|strip_tags|truncate:130:'...'}</a></div>

 

This will use the description field instead of the short description field, but it will still strip all formatting and only show the first 130 characters. You can remove |strip_tags and increase the truncate value to fix that.

 

 

i tried this but does not seem to work.But anyways i think this might not really work correctly due to formatting and space issues on the page.

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