cancel
Showing results for 
Search instead for 
Did you mean: 

Wishlist page in dashboard doesn't show all products

Wishlist page in dashboard doesn't show all products

Hi there,

 

I can't seem to figure out how to include all of the products that are saved into the Wish List show up on the Dashboard. It only shows 3 items, similar to the sidebar. Is there a way to fix this? 

 

Thanks!

Amy

1 REPLY 1

Re: Wishlist page in dashboard doesn't show all products

This is where you can adjust number of products for sidebar in the file app/code/core/Mage/Wishlist/Block/Customer/Sidebar.php:

 protected function _prepareCollection($collection)
{
$collection->setCurPage(1)
->setPageSize(3)
->setInStockFilter(true)
->setOrder('added_at');

return $this;
}

Just change setPageSize(3) to something else, or remove completely setCurPage(..) and setPageSize(...). That's how all those kind of constraints are applied.

If this response was helpful to you, consider giving kudos to this post.
If this response solved your problem, click accept as solution to help others solve this issue