Posts Tagged with "troubleshoot"

Magento Tip : Get Grouped Product’s Associated Simple Products on Category Page

Monday, September 6, 2010

5 Comments

Here is a simple trick to get the sub-products of a grouped product on the category products listing page. Add the following code to the products list.phtml file. $_associatedProducts = array(); if ($_product->getTypeId() == 'grouped') { $_associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product); } Once you collect all simple product data associated with the grouped product, you can loop […]

Continue reading...

How to delete a post from Google’s FeedBurner feed?

Tuesday, April 27, 2010

1 Comment

Using Google FeedBurner to syndicate your blog feeds? Have you tried delete a blog post or convert a post status to draft? FeedBurner will still display the post on the feed. You might be in a state of panic if your XML feed has a wide reader base. Not to worry! Edit your feed in Google FeedBurner and choose the "Troubleshootize" option from the menu.

Continue reading...