A better way to display manufacturers as features

I haven’t really liked how the manufacturers were displayed in the features part of the product details page. One of the biggest things is that there wasn’t a link to be able to go to the manufacturers home page. I also didn’t like the fact that none of the manufacturer data wasn’t there besides just the name.



This is what I changed the features tab to look like:







I did this by changing skins/basic/customer/views/products/components/product_features.tpl



I changed:


		{elseif $feature.feature_type == "S" || $feature.feature_type == "E"}<br />
			{foreach from=$feature.variants item="var"}<br />
				{if $var.selected}<b>{$var.variant}{/if}<br />
			{/foreach}
```<br />
<br />
To:<br />
<br />
```php
		{elseif $feature.feature_type == "S" || $feature.feature_type == "E"}<br />
			{foreach from=$feature.variants item="var"}<br />
				{if $var.selected}<b>{$var.variant}</b><a style="margin-left:50px;" href="{$var.url}" target="_blank">{$var.url}</a><br />
                	<p style="margin-top:10px">{$var.description}</p>{/if}<br />
			{/foreach}
```<br />
<br />
There might be a better way to style this, but this works.<br />
<br />
I hope this helps someone.<br />
<br />
Brandon

I like it! Thank you.

Works great for descriptions, thanks!



Anyone know the tag to get the image in there as well?

Has anyone added the manufacturer image to the Features area? It would be good to have the logo next to the description.

…got it with the help of this post [URL=“http://forum.cs-cart.com/showthread.php?t=13547”]http://forum.cs-cart.com/showthread.php?t=13547[/URL]

Thanks for sharing these mods - they’re really helping me with my new saltwater aquarium store! :wink: Seriously though, your contributions are highly appreciated here.