Replace Sort by “Position” text on toolbar to Sort By “Default” – Magento 1
The Magento offer a neat toolbar in Catalog index pages to filter products with various options. In default, there is a sorting option according to varoius product attributes.
We can easily customize this sorting option in Toolbar from back end. We can add or remove product attribute for sorting by defining attribute scope and there visibility.
But Magento add a general sorting option, sort by “Position” in its toolbar. This is a wired setting for Magento newbies like me. But basically this sorting means, we can provide a number (position) for each product in back end and can sort product according to this number from toolbar.
But in my latest Magento customization, my client request to replace this Sort by “Position” with Sort by “Default”. They just want to change that text “Position” with “Default”. That is enough.
So to achieve this change, now we are going to edit core feature of Magento code. So to avoid update issues, first copy Config.php
in app\code\core\Mage\Catalog\Model\
to app\code\local\Mage\Catalog\Model\
folder with same Directory structure.
Then replace
$options = array(
'position' => Mage::helper('catalog')->__('Position')
);
with
$options = array(
'position' => Mage::helper('catalog')->__('Default')
);
in getAttributeUsedForSortByArray()
function.
This will replace text “Position” with “Default” in Sort by section in Magento toolbar.
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.