Magento – “Back” Link to Article in Category Details

You want rel. easily have a link back from the product view to the category overview, this can be made as follows. In the view.phtml folder app / design /[base or default]/[IhrTemplate]/catalog / product / The following code is inserted: <?php if ($_category = $_product->getCategory()): ?> <div class =”back-link”> <a href=”<?php echo $_category->getUrl(); ?>” class =”form-button-alt” ><?php echo $this->__(‘Back’) ?></a> </div> <?php endif;?> I…