I'm trying to get a product collection with a category filter that takes the category as an object. The problem is I'm getting the following error:
Fatal error: Call to a member function getId() on a non-object in /var/www/vhosts/officeaccounts/subdomains/ls/httpdocs/app/code/core/Mage/Catalog/Model/Resource/Product/Collection.php on line 557
When I comment out the category filter it don't get the errors.
It's saying that I'm not passing in an object. But yet I can still access the getId() method of the object by doing var_dump($category->getId()); This returns the id as a string.
$category = Mage::registry('current_category');
if (!$category) {
$product = $this->getProduct();
$cats = $product->getCategoryIds();
$category = Mage::getModel('catalog/category')->load($cats[0]);
}
function getFallbackItems() {
$productCollection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->addCategoryFilter($category);
$productCollection->getSelect()->order(new Zend_Db_Expr('RAND()'));
return $productCollection;
}
Any ideas anyone?