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