Home Archive

Articles in the Magento eCommerce Category

28 Jun 28 Jun 2009 7Comment

In my previous post, I had explained a way to add extra controllers to existing route. Here I am going to explain another method which is used for overriding controllers and actions. Like my each post on tips & tricks, I am going to first explain where the trick is applicable! I am considering that readers of this post are aware of MVC architecture in Magento.
Let me explain the difference between the both tricks. The trick explained in previous post is used when we need additional URLs in same route …

Read More

 
6 Jun 6 Jun 2009 0Comment

When upload images for products, after uploading images a dialog box would popup with HTML source code, then the system goto to login again and none of the pictures were uploaded.
Work around:
add file php.ini with
magic_quotes_gpc = off
short_open_tag = on
extension=pdo.so
extension=pdo_mysql.so
It should work fine now.

Read More

 
2 Jun 2 Jun 2009 1Comment

Here is the way to get product information for a specific store view in Magento.
<?php $product = Mage::getModel(’catalog/product’)->setStoreId(Mage::app()->getStore()->getId())->load($productId); ?>
And get product description:

<?php echo $this->helper(’catalog/output’)->productAttribute($product, nl2br($product->getDescription()), ‘description’); ?>

Read More

 
23 May 23 May 2009 6Comment

FreeCMS frontend feature is FREE for you
You can download it here:
http://download.hello-magento.com/FreeCMS-Frontend_v1.1.zip
Installation Guide
Just copy /app to root of magento folder. That all you need.
User Guide
To show static block on your frontend, go to Admin/CMS/Static Blocks,  create static block with follow identifier:
sidebar-right-top
sidebar-right-bottom
sidebar-left-top
sidebar-left-bottom
content-top
menu-top
menu-bottom
page-bottom
Note that you should select appropriate website that you want to show. This support any HTML content.
Why fullversion?

Fullversion support to show static blocks on only catalog or product pages.
Fullversion support to show static blocks on customer account/shopping cart/checkout pages.
Fullversion support backend management with defined position. Very easy to use, don’t need …

Read More

 
22 May 22 May 2009 8Comment
Free CMS/Block Module for Magento – v2.0

Overview
(Version 2.0 Released)
Free CMS/Block is a powerful magento extension that provide dynamic block solution. Free CMS allow to put any HTML content to any position on Magento site. You can put text, banner, advertisement, images, flash, music, video, product…
Features
1. Easy to use with admin backend management
2. Allow to display block anywhere with 10 predefined position
3. Allow to specify a store view/website/store
4. Allow to enable/disable any block
5. Allow to specify category to display
6. Allow to specify product to display
7. Suppor full HTML content (Text, Banner, Advertisement, Images, Flash, Music, Video, Product…)
8. …

Read More

 
12 May 12 May 2009 7Comment
Photo Album + Lightbox with Backend Management

Overview
This extension allow to create photo album for magento store.
On front end, the user can view albums, select to view album details.

User also can view album with description, view photo thumbnail and see full photo with lightbox.

On backend, admin can add/remove album, add/remove photo for each album. Admin also can add album description that support full HTML tag.

Installation is very easy, just copy & ready to run.
Live Demo
Front-end: http://demo.mage-world.com/1301/default/gallery/
At this time, the features of this extension is very basic. Every enhanced features could be implement.
Buy this extension now
Please click here …

Read More

 
6 May 6 May 2009 5Comment
Magento MP3 Flash Player with Backend Management

Overview
This extension allow to create music album for a product as CD.
On front end, the buyers can listen trial song via the MP3 flash player. The player display an album as a play list, play songs repeatedly and automatically when the buyers view product detail. It also allow the buyers to select stop/play, next/back track, select a specific songs on play list.

On back end, the admin can add/remove songs of product album. This extension support single or double albums for CD products.

Installation is very easy. Just create an custom attribute …

Read More

 
26 Apr 26 Apr 2009 0Comment
Magento Featured Products

I’ve been working with Magento version 0.8.16100 for a couple days now trying to implement a Featured Product feature.  The Featured Product is a product with an attribute I added from the admin.  When the administrator selects “Yes” in the “Featured” attribute, that product will be displayed in a content block.
I’ll explain each step I took to make this custom feature.  Please forgive me if I left anything out.  The PHP itself I would like to rewrite to be more… professional, but I couldn’t figure out how to query a …

Read More

 
23 Apr 23 Apr 2009 32Comment
After installing magento can’t log in to admin panel

Problem Description
While installing magento on xampp version 2.5 you have provided admin username and password. After installation finished you no longer login with your admin account. In fact in the “Log in to Admin Panel” window whenever you provide wrong password/username combination it displays “Invalid Username or Password.” But whenever you provide correct password it does not show anything. Though a new url like
http://127.0.0.1/magento/index.php/admin/index/index/key/d135be4de664ab83db829120740e058a/
is displayed on the address bar.
Everytime you do this you can’t log in to admin panel.
Cause of the problem
The problem occurs because magneto could not store cookies. …

Read More

 
20 Apr 20 Apr 2009 1Comment

At work we are developing a site for a client using the Magento eCommerce software. This is my first time using it and I’m finding it fairly badass (and it’s free!). There is a lot to like about it, which we’ll probably talk about another time, but it uses Prototype for a JavaScript library. Now I’m sure Prototype is wonderful and all that, but I don’t know a lick of it. I’d rather just use the library I’ve known to come and love, jQuery. But Prototype and jQuery notoriously don’t …

Read More