We had a lot of price changes recently, and I just changed the prices on our basic 1.9 magento store. Now I wish to be able to sort out products based on:
latest price change/ latest changed by date/time. So I can go through the list and see if they were all changed correctly. How should I proceed?
- Captain Obvious: hire a programmer/web dev.
- I guess this is similar to this topic: Magento – Sort by Date Added, which based on the answers can be made without changing core files.
Yes you guessed correctly, I wish to use option 2. Now can this be done simply?
I’m not a coder or web dev, but I do have basic web knowledge and ftp access.
2
Answers
In Your collection use sort by updated_at
Example
As you only want to perform a verification, it can be done on the admin side.
You can display the Updated Time in the Catalog Product Grid.
In a custom module, let’s set this in
config.xml
:Then in
app/code/local/<VENDOR>/<MODULE>/Block/Adminhtml/Catalog/Product/Grid.php
:I haven’t tested, but it should be working.
Then, you will be able to sort the grid on this new column.