Oh sure...lol! I always forget that it would be good to post the solution!
OK, go to Modules/Manufacturers/customer_manufacturer_products.tpl.
I am just going to cut and paste my code and bold the changes, I think that is the easiest way to show what I did...
Quote:
{* $Id: customer_manufacturer_products.tpl,v 1.3.2.2 2004/10/13 11:21:45 max Exp $ *}
{if $manufacturer.image ne '' || $manufacturer.descr ne '' || $manufacturer.url ne ''}
<TABLE border="0">
<TR>
{if $manufacturer.image ne ''}
<TD valign="top">{if $manufacturer.url ne ''}{/if}[img]{$xcart_web_dir}/mlogo.php?manufacturerid={$manufacturer.manufactur erid}[/img]{if $manufacturer.url ne ''}{/if}</TD>
{elseif $manufacturer.url ne ''}
<TD>{$lng.lbl_url}: {$manufacturer.url}</TD>
</TR>
<TR>
{/if}
<TD valign="top">{$manufacturer.descr|escape}</TD>
</TR>
</TABLE>
{/if}
{capture name=dialog}
{if $products ne ''}
{if $sort_fields}
<DIV align="right">{include file="main/search_sort_by.tpl" sort_fields=$sort_fields selected=$search_prefilled.sort_field direction=$search_prefilled.sort_direction}</DIV>
{/if}
{ include file="customer/main/navigation.tpl" }
{include file="customer/main/products.tpl" products=$products}
{else}
{$lng.txt_no_products_in_man}
{/if}
{/capture}
{include file="dialog.tpl" title=$manufacturer.manufacturer content=$smarty.capture.dialog extra="width=100%"}
{ include file="customer/main/navigation.tpl" }
|