Reputation: 193
Have one issue which don't like google for seo. All the categories having the same title if going by pages in that category, so I want to add page number in page title. Is any solution?
Upvotes: 1
Views: 1602
Reputation: 4980
Copy file from /app/code/core/Mage/Page/Block/Html/Head.php
to app/code/local/Mage/Page/Block/Html/Head.php
modify with the following code which is getting default page number.
Mage::getBlockSingleton('page/html_pager')->getCurrentPage();
Upvotes: 1