Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Product Short description in all products listing

Product Short description in all products listing

Locked

Views: 1,537

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
2 Aug 2006, 4:55 PM
#1
patski avatar

patski

Zen Follower

Join Date:
Nov 2004
Location:
Deal, Kent, UK
Posts:
325
Plugin Contributions:
0

Product Short description in all products listing

Has anyone modified the all products listing page to show the short description using the short-desc mod? if so, can you point me in the right direction please.
I'm using v1.2.6d.

Thanks

2 Aug 2006, 8:10 PM
#2
patski avatar

patski

Zen Follower

Join Date:
Nov 2004
Location:
Deal, Kent, UK
Posts:
325
Plugin Contributions:
0

Re: Product Short description in all products listing

Figured this out myself :shocking:

In includes/modules/product_all_listing.php around line 111

Changed

if (PRODUCT_ALL_LIST_DESCRIPTION != '0') {
        $disp_text = zen_get_products_description($products_all->fields['products_id']);
        $disp_text = zen_clean_html($disp_text);

to

if (PRODUCT_ALL_LIST_DESCRIPTION != '0') {
        $disp_text = zen_get_products_short_desc($products_all->fields['products_id']);
        $disp_text = zen_clean_html($disp_text);