Sorry for all the questions today but I've been awake for far too long and my searching skills are deteriorating quickly. I want to put the model number under the product name in the product listing page (in the same column). It's almost there, but instead of "model" I'm getting "TEXT_PRODUCT_MODEL." It's looking for the define in english.php but it's really in /includes/languages/english/template/product_info.php. How do I get it to look for it in the right file? Here's what I have so far:
Also, anyone know how I can make the gap between product name and model number smaller?Code:$lc_text = '<h3 class="itemTitle"><a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing->fields['products_id']) . '">' . $listing->fields['products_name'] . '</a></h3><div class="listingDescription">' . '<br>' . TEXT_PRODUCT_MODEL . ': ' . $listing->fields['products_model'] . zen_trunc_string(zen_clean_html(stripslashes(zen_get_products_description($listing->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION) . '</div>';



