
So, I need a help. I want to make a button link in admin product list that will open a blank product detail in frontpage with seo url. I can do this using this in .tpl but this is not what I want because this is not seo url
<a target="_blank" href="../index.php?route=product/product&product_id=<?php echo $product_name['product_id']; ?>"><?php echo $product_name['text']; ?></a>
I've successfully make the frontpage become seo url, so the only problem is the link from admin page.
Any help please?