magento

Filtering by category in Magento 1.4

Hi All I have a custom module I made to show featured products on the homepage. I set it up to show products that are in a ‘featured’ category. It works fine in 1.3, but now in 1.4 I get the following error: SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘e.category_ids’ in ‘where clause’ Here’s my code: $_productCollection =...

Creating a Total Line in the Admin Grid - Magento

I'm trying to figure out how to add a total line to the bottom of a grid listing in the magento admin. Does anybody have any ideas? ...

How to override a Magento administration panel?

Hi guys, I would like to know how have I do to add a field in the customer administration at system->configuration->Customer settings panel. Have I create the system.xml file from the core and paste in the local folder with the same path? and have I maintain all the content of the file or I can write only the portion interested? than...

How to get a Magento product collection as a comma separated list of SKU's

Hi All I have a custom module I made for Magento. From the admin, there is a multi-select list of store products. The selected products from this are output in the form of a comma separated list of SKU's - for example: // Get Featured Products from list $configData = Mage::getStoreConfig('featured_products'); $featuredlist = $c...

Instantiate dynamic array Magento

Kick me if I'm being silly but some some reason I'm having a heck of time building a dynamic array in magento. Example: $data = array(); $data[0] = 'test'; $data[1] = 'what'; I keep getting an ERROR: Notice: Undefined offset: 0 Any ideas? Do I need to handle these arrays differently since they are in a class? ...

Magento Tax (Code)

Hello, how to exclude from product price tax in template? Thanks for response ! ...

magento serach result not displays

Hi In my magento project the search result not displays. I have customized my magento. I don't know what's happened? Is there is any settings I admin side, Does any one know this? ...

Linking Simple product to their page listed under Grouped product in Magento

I want to add url for each simple product listed under Grouped product in Magento i have changed it with below code in app\design\frontend\blank\default\template\catalog\product\view\type\grouped.phtml but still not work for me it's link but with main group product (Example: Main Grouped product and three simple products Item1 Item2 Item...

How do I create a Magento module or widget that will appear on the shopping cart page?

I’m having a lot of trouble understanding how to create a module that will add an extra button to the shopping cart page. I found lots of info on payment modules and stand-a-lone page modules, but nothing for this. I simply need to add a button underneath the regular “Checkout” button that can post item data to another website. I’ve c...

Media RSS and Zend

Hi, I have a Magento application running atop Zend framework. I like to generate Media RSS feed in Zend (In orded to feed the Cooliris application). Does anyone know if Zend framework supports Media RSS feed? (I didn't find anything in http://framework.zend.com/manual/1.10/en/zend.feed.html, but maybe I dint look in the right place?) ...

add more admin and allow permission in magento site

Hai I want to create more users as admin and allow permission to access some modules. I know it's possible, but I don't know how is it? Does any one know? Please give me the steps. Does any one help me to do this? ...

Generate a left hand menu for product categories in Magento

I'm looking for a method to generate a left hand menu in Magento much like the top menu present in the default template, anyone have a method for doing this? ...

How to get ordered qty of product in front-end?

I display a best-sell list in front-end,Now I also want to show the QTY that how many already sell for this product,How do I get the QTY ? And if the product is a "Configurable Product",How do I get the QTY ? ...

magento -search not working properly

hai I have a magento web site. In this the search function compare with product name, description, sku and part number. I want to modify this. ie having to compare only with the product name, short description and Sku, How is it possible.Is there is any settings in admin side? ...

Get products to display on custom Magento page

How can you get products to display on a custom Magento page? Naturally, this is not an uncommon question but nothing that I've seen has solved it for me. The common response is to put the following code in through the CMS editor: {{block type="catalog/product_list" name="home.catalog.product.list" alias="products_homepage” template=”ca...

magento dropdown menu not displays in modern theme

Hai I have changed my magento theme to Modern. But the dropdown menu not displays (sub menus), Does any one know what's the problem ...

Magento- adding my content in left side of inner page

Hai I want to place a box contain some text at the left side of the inner page in my magento web site. Is it possible to do this? ...

How to delete / clear all product reviews in magento?

How to delete / clear all product reviews in magento? ...

Magento Api and Downloadable Url

I need to know how to set the downloadable URL for a downloadable new product created using Magento API. Problem is find the appropriate array value for the downloadable URL. here is my code: $productData = array( 'name' => $stealth_item->Title, 'websites' => array(1), 'short_description' => ltrim( ereg_replace( "\...

How to get downloadable product links after successfull order

After a successfull order I would like to propose directly the downloadable URL for products buyer bought in the success.phtml file. I wrote this piece of code to know product's values of the latest order: // Get the latest Order ID $order = Mage::getModel('sales/order')->load(Mage::getSingleton('checkout/session')->getLastOrderId()); ...