Question

Since the upgrade from 2.2.3 to 2.2.4, I got new function next to the price of each product. Which is: As low as.

How can I remove it? I can't find and option in Admin panel to switch it off. Any idea how can I disable/remove it?

enter image description here

Was it helpful?

Solution

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:

  1. 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'),
  1. 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)'

  1. find class with firebug and add display: none;

OTHER TIPS

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.

in magento2 after creating configurable product the price is getting disable and its showing as low as

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top