Tag Archives: Magento

MagentoGO screenshot tour

Featured Image

MagentoGO has been released few days ago. To be more precise on 28th of February 2011. For those interested here are few screenshots from its Admin panel. Read more

4

Teraflex’s Magento Design featured on the CSS Design Awards

Featured Image

For those who are still not aware; at Inchoo we handle your store front design with the same care we do your development and transform your online store into an online success. Teraflex is a good example, last Friday we were advised that Teraflex’s storefront design had been nominated for the CSS Design Awards.
Just like when inchoo.net was nominated for the prize; we need your support, vote for Terraflex.biz on cssdesignawards.com

Read more

1

Add “increment field” functionality to Magento’s quantity fields

Featured Image

You’ve maybe noticed that Magento’s quantity inputs are just plain input fields, and if you wish to change it’s value, you have to erase value manually and enter new one on your numpad. Today I’ll show you how to add plus and minus signs by each input for quantity by implementing my colleague’s unobtrusive approach. If interested, read on!
Read more

18

How you could serve static content files from your Magento extension folder

Featured Image

As a part of my personal ongoing “unobtrusive Magento extensions” campaign. I will show you another “hack”/approach you can apply in order to squeeze your static files under the main extension folder.

When I say static, I am mainly referring to images, CSS and JavaScript in this case.

For example, imagine you are coding an extension called “Sociable“, which will display several links to various web services like Twitter, GoogleBuzz, etc. Links that you can click and the publish a short message about a product/category on that web service. Something like on the image shown below. Logical question is, where do you store your images? Read more

11

How to add an external javascript/css file to Magento?

Featured Image

image by mauricesvay left @flickr

Have you ever had a need for adding external files into your Magento layout?
If you had then you know that you cannot do that from your xml layout files using methods/action:

<action method="addJs">
<action method="addCss">
or
<action method="addItem">

You could do that by hard-coding your “head.phtml” file, but then those external files will be loaded on all Magento pages.
This simple extension will provide you easy access for adding/removing external files such as JavaScript or CSS, libraries from remote servers which you cannot or don’t want to put on your server.
I called it Inchoo_Xternal extension.
Read more

35

Logging user/customer actions in Magento

Featured Image

Recently I wrote a Magento extension called ActionLogger, inspired (thematically) by the “Logging of Administrator Actions” feature available in Magento Enterprise. ActionLogger is pretty simple extension, working on pretty simple but powerful concept of Magento controllers predispatch action.

All you need to do is to create event observer/observers for “controller_action_predispatch” event. This event is fired on every controller action call. Read more

12

Magento PDF invoice with product images extension

Featured Image

Hello everyone, short while after I wrote article Add custom attribute to Magento’s PDF invoice I received quite a number of requests for explanation on how to add products images to PDF invoice. As I had some time, I’ve created an extension that will do just that.
Read more

9

Magento and rel=canonical

Featured Image

photo of twins by e³°°° @flickr

A new comment on my old post that explains how rel=canonical element (tag) works gave me inspiration to write another article about rel=canonical. This time, I’ll try to explain why and where rel=canonical is usually necessary in a Magento store.

I’ll leave technical implementation and decision should you use any of the existing extensions or go for custom implementation to you. I’ll just cover the marketing and SEO perspective on the issue. Read more

24

Create configuration for your Magento extension

Featured Image

Today I’m going to give you and quick HOW-TO for beginners on how to create simple configuration for your extension inside Magento’s configuration section.
If you’re interested, read on:
Read more

16

Adding related products problem

Featured Image

by gerard79/sxc.hu

Today I had a problem when I want to add related product to Magento Professional 1.9.0.0., it did not work. After some tracing thrown errors and comparing files with other Magento versions I found missing part. Magento Professional has missing lines of code in Related.php. So, if someone stuck on the same problem, here is the solution!

Read more

3