-
MagDoc – Powered by Scribd Released on Magento Connect
MagDoc will give store administrator a feature of managing/displaying document in the Magento storefront powered by richly featured “the world’s largest social reading and publishing platform” – Scribd. This module provides a unique...
-
Adding Custom Javascript on Admin form in Magento (Backend)
Sometimes in Magento, while creating a custom module we need to add our custom Javascript code in our Admin form. These Admin forms we create are extened from the Magento’s core form widget. So there is a less flexibiliy of adding a custom...
-
Magento: Setting Up a Default Shipping Method on Cart Page
I recently came to a situation where I need to show a shipping price amount on cart before selecting the shipping address from the checkout page. Basically shipping price is shown after the user has added the shipping address and selected the...
-
Magento: Creating Ajax Updated Tabs In Frontend, Like Product Management Tabs of Backend
Magento’s Product Management GUI in back-end has Tabbed Navigation. There are two types of Tabs implemented there. One type of Tab is normal tab, loading content on page load while other type of tab has its content loaded by “Ajax”....
-
Solution: Error Message Not Showing up in Frontend in Magento
I recently got to a situation where I needed to add a new frontend template for some module and after some action show the error or success message. Not the first time though . Interesting thing was even if I added this code in the PHTML file.
<?php...
-
Generating Backend-Admin URL with Key and Parameters in Magento
When you log into adminstrator part of the Magento webshop, and look into the url you may see something like this.
The part in “RED” are module controller(router)/action. And the part in “GREEN” is what we call as “Paramerters”...
-
Magento Module Release: Uses Layout To List Post, made by AW Blog, on the basis of Category Identifier
I’ve always wanted to contribute something in Magento Community and I think today the day has arrived. The module is named as Sirius Blog Helper, just a name, Who cares about the “Name” unless it works . The basic function...
-
Creating Product Links in Magento Using Custom Query
I’ve already made a post in this blog about Adding Related Product and other links to Product in Magento . But when I used the method to creating links among product’s, while importing very large number of products and creating large...
-
Getting Ordered Items and their Detail from Order ID in Magento
Here is a small snippet of code, yet useful, to get ordered items and its details. I’ve deviced this code a lot before and posted in Magento Commerce’s Forum as well. But felt like writting it again, so that I can have a quick refrence...
-
Create and Download XLS Report file using Magento's Core
Reporting can be a very important part of the Module you might be developing for Mageneto. If you are showing your data in Grid that’s good, but it will be better if you add XLS file generation action on that grid, so that the site administrator...
-
Debugging Magento Using Eclipse PDT & Zend Debugger
Latest Post on Debugging Magento: Debugging Magento Using Eclipse on Ubuntu
I had always thought of using Eclipse to debug Magento’s complex code flow, and tried number of times before. But without any success I had to abandon it, and...
-
Creating Custom Sourced Multiselect Product Attribute
Creating Multiselect type of product attribute whose source will be the Magento’s core tables is pretty simple. Just go to Manage Attributes and create a new one. But if you want the attribute’s source table be a custom table, then...
-
Adding custom options to a product in Magento
Adding custom option in Magento is pretty easy! You just need to know the format of an array, which is taken by catalog/product_option Model to set the custom option. I’ve deviced a simple function (setCustomOption) that just does that....
-
Getting all custom options of a product in Magento
Custom options are the options that can be added to any product, which gives an option for the user of the site to select what type of product they actually want. Here is a scenario where custom option can be helpful. If you have a product say...
-
Image Resize In Magento & cache the resized image
Handling Products image in Magento is quite easy to do. Magento has deviced as very good class and function to create product’s image by defining widht and height and in addition it caches that image created if you want to get the same...