Category / Administration

Magento Enterprise – Discount for specific Customer segments group

Featured Image

sxc.hu

In previous post we create Customer group based on company emails. Now when we have few customers registered with company emails we will create campaign and give them 50% discount for purchasing Laptops. Read more

0

Magento Customer Segments

Featured Image

http://www.flickr.com/photos/nasawebbtelescope/

In Magento Enterprise Edition we have Rich Merchandising Suite which allows you to define customer segments to optimize your marketing initiatives. Read more

4

Adding magento attribute with custom input renderer

Featured Image

This is example which will explain you, how to add new attribute with custom input render. You will be able to modify existing functionality, add javascript, some other option or change default input renderer by your wishes.
Read more

2

Backorders Report Magento Extension

Featured Image

Recently, i had a request to display a list of all backorders. Backorders have to be grouped by Manufacturers, also should be option to filter backorders by manufacturers.

In this article, I will present you the extension, which solved the above requirement.
Read more

7

What is base64 encoding and how can we benefit from it

Featured Image

What is base64 encoding/decoding and how we can benefit from this representation

Base64 schemes represent binary data in an ASCII string format (English alphabet, common punctuation chars, control chars) by translating it into a base-64 representation. Read more

10

View product in frontend from Magento admin

Featured Image

When you are editing some product in Magento admin and want to check it out in frontend of your Magento project, how do you find this particular product? Do you search for it, navigate to it using product url key or just browse to it? Well, however you do it, I’m going to give you the easiest way to get to your desired product in the frontend – view product link.
Read more

9

Enhanced Catalog Product Grid – Custom Attribute Filter

Featured Image

Sometimes one needs to have additional filtering criteria inside of a catalog’s product grid. Here is an extension that adds custom product attribute to search filter. You can choose to use any product attribute and it will be shown in the product grid.

Read more

20

Guide through Magento’s timezones

Featured Image

I’ll guide you through Magento’s timezone behavior, as I’ve noticed that people tend to get confused in cases when they have 2 or more websites with different timezones. If this is what you are searching for, read on!
Read more

1

Magento CMS syntax – part2

Featured Image

Every Magento user noticed that there is special {{magentocode}} syntax available in cms pages and static blocks. We traced a bit to find out which params are available and what exactly they do. Read more

9

How to translate form labels in Magento’s Admin Area

Featured Image

Since Magento has built in functionality for translations, you can ask yourself why Magento doesn’t want to translate my labels… and everything is set up correctly!
For all of you who work on Magento for a while and you didn’t yet needed to translate everything in Magento admin area here is a short “howto” on what you can do:
go to app/code/core/Mage/Adminhtml/Block/Widget/Form.php
and find protected function _setFieldset($attributes, $fieldset, $exclude=array())
Instead of this line

//'label'     => $attribute->getFrontend()->getLabel(),
//put this:
'label'     => Mage::helper('core')->__($attribute->getFrontend()->getLabel()),

Of course you will not change Magento’s core file in this way :) (more below).
Read more

20