cancel
Showing results for 
Search instead for 
Did you mean: 

is available to buy in increments of.... Product page

SOLVED

is available to buy in increments of.... Product page

Hello

 

I'd like to hide this message. It's always shown. How/where do i need to configure that?

wtf.JPG

1 ACCEPTED SOLUTION

Accepted Solutions

Re: is available to buy in increments of.... Product page

Hi @patrick_tschumi 

You can comment this section from phtml file.

You can override into the custom theme if you are using magento default theme.

You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html

OR using command line:

Now you can enable or disable Template path hints via Command Line Go to Magento 2 root folder and run the following command:
Enable

php bin/magento dev:template-hints:enable

Disable

php bin/magento dev:template-hints:disable


Then flush cache:

php bin/magento cache:flush

I hope it will help you!

View solution in original post

2 REPLIES 2

Re: is available to buy in increments of.... Product page

Hi @patrick_tschumi 

You can comment this section from phtml file.

You can override into the custom theme if you are using magento default theme.

You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html

OR using command line:

Now you can enable or disable Template path hints via Command Line Go to Magento 2 root folder and run the following command:
Enable

php bin/magento dev:template-hints:enable

Disable

php bin/magento dev:template-hints:disable


Then flush cache:

php bin/magento cache:flush

I hope it will help you!

Re: is available to buy in increments of.... Product page

That was exactly what I was always searching for. Didn't know that.

 

You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html

 

Great

Thanks!