Archive: product

 

Posts Tagged ‘product’


I need to get the parent configurable product from a simple product, even if the parent product is marked as disabled. I also need to get the status of the configurable product (enabled or disabled). Right now I’m getting the parent product like this: $parentIds = Mage::getResourceSingleton(‘catalog/product_type_configurable’)->getParentIdsByChild($product->getId()); if (isset($parentIds[0])) { $product = Mage::getModel(‘catalog/product’)->load($parentIds[0]); } This [...]



 

Is there an observer which can be used to observe events when a product is removed from the cart? I haven’t found any. What I have found is checkout_cart_update_items_after which can be used if a product is removed by altering the product count, but not when the user uses the remove button. The only alternative [...]



 

In the web-shop i’m creating we want the customers to see the category new as they are landing in the shop. Our configuration in the whole catalog is an layout of 4 items next to each other, like below: four items in one row *sorry i am not yet allowed to post pictures I’ve made [...]



 

When using Magentos log facility Mage::log() it sometimes causes a white screen. No error messages are outputted either to the screen or any of the log files (var/log/system.log, var/log/exception.log ) This seems to happen only when I’m trying to log a very large object. for example when I’m trying this Mage::log(Mage::helper(‘catalog/category’)->getStoreCategories()); inside a block controller [...]



 

How can I simply add new simple products incrementally to configurable products? or do I still need to retrieve the 2 original arrays of the pre-defined configurable product (getConfigurableAttributesData and getConfigurableProductsData) first, append the new arrays and set them again? Is it worked for my case just as the first-time creation? And if the new [...]



 

I want to modify the product pages in my Magento store (I’m using version 1.4.2) so that a particular static block is appended to the description. I’m using the easytab system right now, but many of my customers can’t find the information that I want to present to them when it’s in a tab other [...]



 

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 user experience for reading a document online using the Scribd Reader application embedded in HTML. Get this extension on Magento Connect Features [...]



 

We have a poster store. Posters come in varying sizes and have optional frames. Both the size and frame change the price. These are print-on-demand, so no inventory is needed. In the Magento world: This can’t be a simple product with attributes due to the pricing differences (?) Configurable products seem like a maintenance nightmare [...]



 

I’ve got an issue where only this morning my magento site at www.smartgaragestorage.com.au was working fine. All data could be found on single product pages and actual page data was visible on the front end. Now, after doing some work on a Temando freight extension I get only the page title on CMS pages and [...]



 

I have a magento shop which uses shipping zones method for calculating shipment price. It works but there is one small issue , I am unable to offer quantity discounts for the same product if the user adds to his cart multiple times with different color. Each time the product is added it is taken [...]