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…

Magento – Checkout / Cash back to the cart

After a move from one shop to another server suddenly no longer worked the checkout of a shop. Thus, we described the problem: We have a Magento 1.4.1.1. Installation, which runs fine. We now have a 1:1 Copy of it and have made this a problem with the check. These are the facts: – Magento 1.4.1.1…