Installed your extension and noticed that the maximum price from price slider is too low.
Example:
In a category was the most expensive product 19.29 €.
Price slider ranged from 0 to 19 €.
When I selected a minimum price the product wasn't in the list anymore.
My workaround was/is:
In /html/magento/app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Price.php
public function getMaxPriceFloat()
{
return $this->_filter->getMaxPriceFloat()+1;
}
Installed your extension and noticed that the maximum price from price slider is too low.
Example: In a category was the most expensive product 19.29 €. Price slider ranged from 0 to 19 €. When I selected a minimum price the product wasn't in the list anymore.
My workaround was/is: In /html/magento/app/code/community/Catalin/SEO/Block/Catalog/Layer/Filter/Price.php
(That '+1' is new)