Ajeh:
You could use this for the link:
zen_href_link(zen_get_info_page((int)$this->products[$i]['id']), 'cPath=' . zen_get_generated_category_path_rev(zen_get_products_category_id((int)$this->products[$i]['id'])) . '&products_id=' . (int)$this->products[$i]['id'])
>
> NOTE: be sure to add it to both the TEXT and HTML for the order class ...
Life saver, thanks. Just for anyone else's info here's what I've done. ver1.5
1.open order.php look for ```php
// build output for email notification
``` ( line 906) add ```php
////SHOW PRODUCT LINK
$produrllink[$i] = zen_href_link(zen_get_info_page((int)$this->products[$i]['id']), 'cPath=' . zen_get_generated_category_path_rev(zen_get_products_category_id((int)$this->products[$i]['id'])) . '&products_id=' . (int)$this->products[$i]['id']);
``` directly after it.
2. Next Find: ```php
$this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' = ' .
``` (it should be the very next line)
Replace with
```php
$this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ' '. $produrllink[$i]. ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' = ' .
I only use plain txt email but it works fine for me. Thanks