How do I remove the “More payment options” content under the purchase button on the product page in Shopify’s Sense theme?
Topic summary
A user seeks to remove the “More payment options” text appearing below the purchase button on product pages in Shopify’s Sense theme.
Solutions Provided:
Multiple community members offered CSS-based solutions:
- JavaScript approach: Add a script to the theme.liquid file before the
</body>tag that targets and hides the element - CSS approach: Add custom CSS to the base.css file:
more-payment-options-link {
display: none;
visibility: hidden;
}
Outcome:
The issue appears resolved. The original poster thanked multiple respondents, and another user confirmed one of the solutions worked for them. All proposed solutions involve hiding the element through either custom CSS or JavaScript inserted into the theme files.
@CRART Can you please share this page link?
Hi @CRART ,
I have written custom CSS for this solution. Please follow below steps and let me know your feedback.
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
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;
}
thanks
thanks
You are very welcome!
This worked for me. Thanks!

