Damn, Magento is difficult, and more than a little fickle. This eCommerce open source package runs on a LAMP stack (Linux, Apache, MySql, php) and seems popular enough, but wow, there’s not much community support. Scary,when you need help but cannot turn to your people.
My client’s Magento site runs on Porto 1.2.0. The front page has a products slider that only displayed “;”. The products slider shows he most recently added products. Like, what? It used to work, I did not even know where the code was located, and now it broke? I tracked down the html with Firefly but even with the identified html could not find it in Magento or the Porto theme. I get a hint from the client that it is the homepage_15. Lo and behold, there is the code.
Porto 1.2.0 uses the open source owl-carousel. They have some documentation under homepage slider but it is pretty sketchy. You need to turn on the slider, under Homepage slider. Then you need to enable the required filter, under Filter products. The docs then give you some partial code, but not enough to implement the slider. Damn.
This owl-carousel displays the last 10 items by saved date. It is not very controllable, and the client wishes to mix it up. Here are the options, all from the Filter Extension docs:
In this extensions, you can set options related to filter products such as featured products, best selling products etc.
Bestsellers Configuration – It shows the products by selling automatically.
{{block type=”filterproducts/bestsellers_home_list” … }}
Featured Products Configuration – It shows the products which “Is Featured” attribute is “yes”.
{{block type=”filterproducts/featured_home_list” … }}
Most Viewed Configuration – It shows the products which most viewed automatically.
{{block type=”filterproducts/mostviewed_home_list” … }}
New Products Configuration – It shows the products which “New from Date” or “New to Date” attributes are inputed.
{{block type=”filterproducts/newproduct_home_list” … }}
Latest Products Configuration – It shows the products which all products sort by latest input automatically.
{{block type=”filterproducts/latest_home_list” … }}
Sale Products Configuration – It shows the products which “Special Price” is inputed.
{{block type=”filterproducts/sale_home_list” … “}}