View Single Post
  #6  
Old 07-01-2008, 07:49 PM
 
Light Speed Light Speed is offline
 

X-Adept
  
Join Date: Mar 2003
Posts: 921
 

Default Re: Variables in product descriptions?

no longer DESPERATE!!!!! -SOLVED-

Since upgrading from 4.1.8 to 4.1.10 this no longer is working for me and my includes in product descriptions are printing as the include code rather than including the contents of the include file.

What is the way in 4.1.10 to allow includes in product descriptions?


EDIT:
To implement this you should modify the 'skin12/customer/main/product.tpl' file. Find the following code:

-------------------------------
{if $product.fulldescr ne ""}{ $product.fulldescr}{else}{$product.descr}{/if}
-------------------------------

and replace it with this one:

-------------------------------
{if $product.fulldescr ne ""}{eval var=$product.fulldescr}{else}{$product.descr}{/if}
Reply With Quote