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
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
Figured this out myself![]()
In includes/modules/product_all_listing.php around line 111
Changed
toPHP Code:if (PRODUCT_ALL_LIST_DESCRIPTION != '0') {
$disp_text = zen_get_products_description($products_all->fields['products_id']);
$disp_text = zen_clean_html($disp_text);
PHP Code: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);
Bookmarks