How can I remove "As low as" in Magento 2.2.4
Helpfull comand to check where we can find 'As low as'
grep -rnw '/var/www/html/your magento-directory' -e 'As low as'
You can use one of this three methods:
Rewrite final_price.phtml Just copy
vendor/magento/module-bundle/view/base/templates/product/price/final_price.phtml
to:
app/design/frontend/YourVendor/YourTheme/Magento_Catalog/product/price/final_price.phtml
and remove this line:
'display_label' => __('As low as'),
- Edit your translation, find line As low as /var/www/html/vendor/magento/module-catalog/i18n/en_US.csv (find your file with language)
'As low as' '(empty)'
- find class with firebug and add display: none;
In the last version of magento (2.3), the template that holds the final price is:
your-magento-directory/vendor/magento/module-configurable-product/view/base/templates/product/price/final_price.phtml
to override it, you need to create a file in:
app/design/frontend/<YOUR_VENDOR>/<YOUR_THEME>/Magento_ConfigurableProduct/templates/product/price/final_price.phtml
Hope it helps.