Ok, I’m kind of frustrated now.
I was able to get my manufacturers to appear on my product details page and even make them clickable. The problem I am having is that once the manufacturer is clicked the URL is changed.
The url for one manufacturer should be:
[url]http://www.saltwatertogo.com/algae-free.html[/url]
But after it is clicked once on the product details page it is changed to:
[url]http://www.saltwatertogo.com/algae-free-1.html[/url]
And I just get a 404 page.
To see what I have done you can go to:
[url]http://www.saltwatertogo.com/algae-free-great-white-cleaning-magnet.html[/url]
Click on the Features tab and you will see.
How I managed this is I changed:
skins/basic/customer/views/products/components/product_features.tpl
From:
{elseif $feature.feature_type == "S" || $feature.feature_type == "E"}
{foreach from=$feature.variants item="var"}
{if $var.selected}{$var.variant}{/if}
{/foreach}
To:
{$var.description}{elseif $feature.feature_type == "E"}
{foreach from=$feature.variants item="var"}
{if $var.selected}{$var.variant}{$var.url}
{/foreach}
{elseif $feature.feature_type == "S"}
{foreach from=$feature.variants item="var"}
{if $var.selected}{$var.variant}{$var.variant}{/if}
{/foreach}
Maybe I am doing this the wrong way? Obviously something is messed up.
I sure would appreciate any help.
Thank you,
Brandon