Problem is how to implement this, the code in product.tpl says:
Code:
{if $active_modules.Upselling_Products ne ""}
<p />
{include file="modules/Upselling_Products/related_products.tpl" }
{/if}
Not quite sure how to put the {if $product_links eq ""} in it.
Maybe something like:
---
{if $active_modules.Upselling_Products ne "" && $product_links eq ""}
<p />
{include file="modules/Upselling_Products/related_products.tpl" }
{/if}
---
But that doesn't work ...