How do I remove the "More payment options" content under the purchase button on the product page in

How do I remove the “More payment options” content under the purchase button on the product page in Shopify’s Sense theme?

@CRART Can you please share this page link?

https://crartcase.com/products/custom-phone-cases

Hi @CRART

Please try to add this code to theme.liquid file before and check again


Hi @CRART ,

I have written custom CSS for this solution. Please follow below steps and let me know your feedback.

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code just above tag


If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
Makka

@CRART please add this css to the very end of your base.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → base.css

more-payment-options-link {
    display: none;
    visibility: hidden;
}
1 Like

thanks

1 Like

thanks

1 Like

You are very welcome!

This worked for me. Thanks!