Well, I have had a little time to tweak and I thought I would share as usual. The extended feature page (better known as the Manufacturer page) looks like **** with the url sitting at the top. So I decided to remove it and embed it into the image.
NOTE: This template does not have any hooks so you know what that means come upgrade time! I personally donât use the hooks anyway. With the upgrade providing the comparisons, itâs no big deal to edit my changes.
[ATTACH]1919[/ATTACH]
/skins/your_skin/customer/views/product_features/view.tpl
Replace this:
```php
{if $variant_data.image_pair}
{include file=âcommon_templates/image.tplâ images=$variant_data.image_pair object_type=âfeature_variantâ}
{/if}
[B]With this:[/B]
```php
{if $variant_data.image_pair}
{if $variant_data.url}
{include file="common_templates/image.tpl" images=$variant_data.image_pair object_type="feature_variant"}
{else}
{$variant_data.url}{include file="common_templates/image.tpl" images=$variant_data.image_pair object_type="feature_variant"}
{/if}
{/if}
{$variant_data.description|unescape}
Now I am off to see if I can rearrange the product page and add this to it.:D