Category / E-Commerce

mCommerce – Consumers are ready, industry is not

mCommerce – Consumers are ready, industry is not

mCommerce (mobile commerce) is here to stay and due to the recently published researches, we have data to back it up and predict the growth. The only problem is, consumers seem to be accepting the change much faster than the industry is. Since both mCommerce and eCommerce are growing sectors, we know they will continue to coexist, however, eCommerce industry seems to be not very agile when it comes to upgrading their solutions to fit the small screens. Read more

0

MagentoGO screenshot tour

MagentoGO screenshot tour

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

Teraflex’s Magento Design featured on the CSS Design Awards

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

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

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

15

Insert dynamical menu in Magento’s Admin

Insert dynamical menu in Magento’s Admin

Hello everyone! I’ve recently got frustrated with Magento’s core functionality which requires XML definition for Administration menus. And I really wanted to add quick website / store links to it. Solution was to overwrite one of Magento’s Adminhtml blocks, and inject my non-XML, dynamic menu to it. If you’re interested in how I did it, read on. Read more

4

Advanced layout updates for categories and products in Magento

Advanced layout updates for categories and products in Magento

Recently I had a task to modify sorting in only one category of Magento shop.
What I had to do is “only” to change which attribute will be used for default sorting and I needed to reverse ordering from ascending to descending.
Task seems simple, right?
Read more

13

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

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

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 you could build your Magento extensions without view files

How you could build your Magento extensions without view files

The main idea behind this article is something I previously wrote, making your extensions more distributable, less error prone, less depended, less intrusive. Such extensions are then more “safer” to be fetched and installed via Magento Connect. When I say safer I am thinking in terms of your extension not breaking someone live store, etc.

I would dare to say that one of the most annoying and dangerous areas of extension development are the theme view files. For example, imagine an extension that adds some “color switcher” like functionality on the product view page. Read more

16

Configurable product modification in Magento

Configurable product modification in Magento

In this article, I’ll give you extension that will change drop down selection (select field) to radio buttons on configurable products in Magento Community edition.
Read more

57

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

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

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

33