Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a custom module in magento and wants to show products with their URL as links.

I am trying in this way :-

 for ($counter=0; $counter < count($products); $counter++)
{  
 $_product =    Mage::getModel('catalog/product')->loadByAttribute('id',$products[$counter]->product_id);
  echo $_product->getProductUrl();
}

but the $_product->getProductUrl() function always return a url which is not related to none of the loaded products.

Can you guys inspect it and let me know what I am missing?

Thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

You are using loadByAttribute('id', ...) but the attribute that identifies a product (and most other entities) is entity_id. A shorter, safer method is just load(...). An even shorter method is this:

echo Mage::helper('catalog/product')->getProductUrl($products[$counter]->product_id);
share|improve this answer
Many Thanks it's worked. I am in another problem now. on this same custom module I want to check the availability of product but It always return true even if I set the out of stock for the product I am checking like this $_product = Mage::getModel('catalog/product')->loadByAttribute('id',$products[$counter]->pro‌​duct_id); $_product->isSaleable(); Please your quick help needed. Thanks – Positive Oct 28 '10 at 12:18
Soory, Such a stupid comment. Your answer is worked for me perfectly. I want to give point to your answer but I can't. Thanks alot – Positive Oct 28 '10 at 12:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.