If you need to change the Price Range in your Magento catalog go to:
app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
Look for the line:
Change the 10 for a lower / higher number.
Tested in the 1.4 version
If you need to change the Price Range in your Magento catalog go to:
app/code/core/Mage/Catalog/Model/Layer/Filter/Price.php
Look for the line:
Change the 10 for a lower / higher number.
Tested in the 1.4 version
I found a problem when trying to show the Catalog Prices including and excluding tax inMagento.
I created a product with 299€ price. That price had tax included so I setted up the admin for that:
Sales -> Tax -> Calculation Settings (tab)
Using this module you will have a scroller or carousel showing your New Products. Your website can easily show new products in the side bar left or side bar right as block.
HOW DOES IT WORK? New Product Vertical Scroller is an useful magento extension that allows the customers to see top new product. It can be said that this magento extension provides an ease to the visitors, and thus attract more visitors to your online store. Lets get New Product Vertical Scroller to increase your sale.
Using this module you will have a scroller or carousel showing your BestSeller Products. The scroller will show the top sales products. Also with the aim to give customers more information. Your website can easily show featured products in the side bar left or side bar right as block.
HOW DOES IT WORK? BestSeller Product Vertical Scroller is an useful magento extension that allows the customers to see top bestseller product. It can be said that this magento extension provides an ease to the visitors, and thus attract more visitors to your online store. Lets get BestSeller Product Vertical Scroller to increase your sale.
NOTE: Tested on Symfony2 Beta3. Might not work on later releases!
Symfony2 offers many prebuilt field types for using when creating forms. The one of them I found interesting is ‘EntityType’. There are just basic documentation about that.
I had one case recently that I had to use Entity field type for creating form, but except using it in simple way like documented I wanted to use it on little more advanced way.I have table in database called statuses that have basic filelds like:
id (int11), status_name (varchar 50), status_type (varchar 20). I defined 3 basic statuses that will be used for all items I have to describe their state:
draft, live, deleted
but, also I have more statuses defined that is for other purposes.
Because of that I defined these three types to have status type ‘basic‘ and I wanted to create form with select box, but only filter and show these three statuses and ignore others.
For that purpose, I used ‘Entity‘ field type, but I don’t want to pull all statuses from database, but only those three that have defined status_type: ‘basic‘.