Zen Cart Logo
Forums / Basic Configuration / featured items description character limit

featured items description character limit

Locked

Views: 1,548

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
2 Oct 2008, 9:16 AM
#1
microfrost avatar

microfrost

New Zenner

Join Date:
Mar 2005
Posts:
3
Plugin Contributions:
0

featured items description character limit

Hi,

On a website we are developing we have featured items displaying on the index page. We want to edit the character limit for the description from the default 150. The configuration only seems to allow the limit to be adjusted for the regular listings.

I've been looking around in the code but despite my best efforts I cannot find the function that limits the characters in this case. The line calling the description seems to be in tpl_modules_featured_products.php:

$tm_desc = zen_trunc_string($featured_products->fields['products_description'], PRODUCT_LIST_DESCRIPTION);

Any help would be greatly appreciated.

Thanks
Chris

3 Jul 2009, 6:29 PM
#2
xativasystems avatar

xativasystems

New Zenner

Join Date:
Jul 2009
Posts:
5
Plugin Contributions:
0

Re: featured items description character limit

We are having the same problem just cannot find anywhere in the database or the php code....

Does anyone have any idea on this one as we have been looking at this for hours

Cheers

Pabs

3 Jul 2009, 7:18 PM
#3
xativasystems avatar

xativasystems

New Zenner

Join Date:
Jul 2009
Posts:
5
Plugin Contributions:
0

Re: featured items description character limit

We have found it finally....

If you go to includes/modules/yourtemplate/featured_products.php

Around line 89 look for

$products_desc = substr(strip_tags($featured_products->fields['products_description']), 0,75) . '...';

and change it from 75 to whatever you like

Hope this helps

Cheers

Paul