However I think it would me much more useful if this link was not so "generic".
What about something similar to the customer account take over, but for Products

I have done a very quick vqmod for the product.tpl and it works on the default store very well and saves me a lot of time!
here it is:
Code: Select all
<modification>
<file name="admin/view/template/catalog/product_form.tpl">
<operation>
<search position="before"><![CDATA[<div class="buttons">]]></search>
<add><![CDATA[
<!-- View in main store link -->
<?php $store = HTTP_CATALOG;?>
<a onClick="window.open('<?php echo $store . 'index.php?route=product/product&product_id=' . $_GET['product_id']; ?>');">View in <?php echo basename($store); ?></a>
<!-- View in main store link -->
]]></add>
</operation>
</file>
</modification>
The reason is I could not figure out a quick way to get the store id(s) per product, because there is no product_form.php in admin/controller to vqmod.
I'm sure somebody can do a better job.....
anyway I combine this with with another vqmod
http://www.opencart.com/index.php?route ... on_id=5542
It literary takes me half the time to edit the products.
Can we make these default in future versions please ?