Quote:
Originally Posted by aimeea
Is there a way to make relatedproducts and recommended products both show at the same time?
If I have a related product entered it wil not show recommends.
Thank you for any help.
|
Are you sure you have the modules configured correctly? I don't see anything in customer/product.tpl that would cause that to happen.
Code:
{if $active_modules.Upselling_Products ne ""}
<br />
{include file="modules/Upselling_Products/related_products.tpl" }
{/if}
{if $config.Appearance.send_to_friend_enabled eq 'Y'}
<br />
{include file="customer/main/send_to_friend.tpl" }
{/if}
{if $active_modules.Recommended_Products ne ""}
<br />
{include file="modules/Recommended_Products/recommends.tpl" }
{/if}
Note - this is from a 4.1.8 version of x-cart but I don't think there is a difference between recent versions.