Is there an easy way to have a different product description load if the user is logged in? I want to include a link to some further information, but display that link if they are logged in.
Using 1.54 with a custom theme.
Is there an easy way to have a different product description load if the user is logged in? I want to include a link to some further information, but display that link if they are logged in.
Using 1.54 with a custom theme.
Is it JUST the link? You could use the "more info" URL that's built in with Zen Cart and only modify your template's tpl_product_info_display.php and change
toCode:if (zen_not_null($products_url)) {
This will make the additional URL show only for logged in customers.Code:if (zen_not_null($products_url) && isset($_SESSION['customer_id'])) {