cancel
Showing results for 
Search instead for 
Did you mean: 

Removing "Checkout" button.

SOLVED

Removing "Checkout" button.

Hello everyone, I'm Simone, Magento CE 1.9.4.1

I need to remove the "Checkout" button and leave only the "Cart" one when you hover your mouse over, as seen in the image. How can I do so?Checkout.png

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Removing "Checkout" button.

Hello @simone_romeo 

 

I am not sure which theme file calling here but I can suggest you simple way to remove checkout button:

1. You can find class of that button or can add display:none in css

or

2. Findout this button code in theme checkout > cart folder and comment out or add style="display:none"

 

Thanks

Manish Mittal
https://www.manishmittal.com/

View solution in original post

2 REPLIES 2

Re: Removing "Checkout" button.

Hello @simone_romeo 

 

I am not sure which theme file calling here but I can suggest you simple way to remove checkout button:

1. You can find class of that button or can add display:none in css

or

2. Findout this button code in theme checkout > cart folder and comment out or add style="display:none"

 

Thanks

Manish Mittal
https://www.manishmittal.com/

Re: Removing "Checkout" button.

Greetings @Manish Mittal and thank you for your answer.

I was able to comment out the line in /app/design/frontend/smartwave/porto/template/checkout/cart/minicart.phtml with <!--

 

Thank you for your help!