Articles in the Magento eCommerce Category
Magento eCommerce »
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 …
Magento eCommerce »
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.
Magento eCommerce, Services »
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’); ?>
Magento Live Demo, Magento eCommerce »
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 …
Featured, Headline, Magento Live Demo, Magento eCommerce, Portfolios, Services »
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. …
Featured, Magento Live Demo, Magento eCommerce, Portfolios »
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://asia-connect.com.vn/demo/magento/default/gallery/
Back-end: http://asia-connect.com.vn/demo/magento/admin
Admin Access: admindemo – admindemo
At this time, the features of this extension is very basic. Every enhanced features could be implement.
Buy …
Featured, Magento Live Demo, Magento eCommerce, Portfolios »
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 …
Featured, Magento eCommerce »
Magento is the next generation of eCommerce platforms, designed to propell your online business forward by releasing the shackles often associated with eCommerce software.
Magento is much more than simply another shopping cart, with a range of innovative features it can be seen much more of a platform upon which your eCommerce aspirations that flourish. With powerful front-end, back-end and integration functionality, Magento manages to forge a mix of features that cater for the vast majority of requirements ‘out of the box’.
What’s more, Magento is open source. This means there are …
Featured, Magento eCommerce »
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 …
Featured, Headline, Magento eCommerce »
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. …
