Magento – Prices per site not Global

It is a bit confusing: Magento is no known way to yes 100% consistently. So you stumble every now and then about things that are not very useful. Among others, the following:   The attribute “Price” or. “Price” is in the system as scope “Website” registered. Thus, should e.g.. can realize a multi-store Magento shop operator…

Magento – Google Webmaster Tools confirm the homepage

Who wants to work with Google's Webmaster Tools, must first prove, that the site should be accessible to the user or even really heard. that he has access to it. After registering with Google and therefore the application “Webmaster Tools”, you will be prompted as follows: Recommended: HTML tag to add a meta tag to your site's home…

Magento – Google Conversion Tracking Code in Shop einbinden

In order to efficiently use Magento in conjunction with Google Analytics, Conversion tracking is an extremely useful and really not do without. For this must first be registered with Google and therefore in Google Analytics. Then, click in the area on Google Analytics 1. Tools und Analysen > Conversions 2. Then on “+ New…

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…