Thanks Kobra,
You put me in the right direction.
I don't know php so I am doing by example. I've got it partially working.
I took the link code from tpl_product_info_display.php
PHP Code:
<p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link (FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
I then changed (hacked) the line in product_listing.php and ended up with this:
PHP Code:
$lc_text = '<h3 class="itemTitle"><a href="' . zen_href_link ( FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false) . '">' . $listing->fields['products_name'] . '</a></h3><div class="listingDescription">' . zen_trunc_string(zen_clean_html(stripslashes(zen_get_products_description($listing->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION) . '</div>';
When I hover over the Description, the link shows up to the url&goto=, but the url is missing.
Any suggestions why or how to properly define the $products_url? I think that missing definition is the problem.
Thanks again,
Jeff