Quote Originally Posted by zep View Post
Jane,

I have modified the files, and Im sorry for such a questions, but....

I am having issues displaying the info in tpl_moduals_featured_products.php

I'm calling calling $case = $product_info->fields['products_case'];

and also tried $case = $featured_products>fields['products_case'];

Im then putting the var into this statement :

<div class="p_left"><br style="line-height:9px;"/>Case Price: <a href="'.$href.'">'.$price.'<br/>'.$case.'<br/>'.$case2.'<br/>'.$case3.' </a>

When I echo, I'm getting no output, so the variable I put it into is empty. Im sorry to seem so needy, but could you lend a tip?

Thanks
Hey Zep, did you get this working, I'm trying to get my custom field to show up in the products_all page and I'm getting the same outcome it's like the field is empty...

This is the code I'm trying to use in the tpl_modules_products_all_listing.php, but it's only showing 0
PHP Code:
if ($product_info->fields['products_on_order']){$products_on_order $product_info->fields['products_on_order'];}else{$products_on_order "0";}
     echo 
'<td align="left" width="18%">'.$product_info->fields['products_on_order'].' Units On Order: '.$products_on_order.'</td>'
Any help would be great thanks guys