Shopify themes, liquid, logos, and UX
Hi,
I don't offer paypal on my store so I want to get rid of the payment icon.
URL: https://driftnoosa.com/
Thank you
Solved! Go to the solution
This is an accepted solution.
Try this one.
li.icon--payment svg[aria-labelledby="pi-paypal"] {
display: none;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hello @ultimatebeanzmo
To remove the PayPal icon from the payment methods section in your Shopify store, follow these steps:
Method 1: Remove PayPal from Theme Code
1.Go to Shopify Admin > Online Store > Themes.
2.Find your Nordic theme and click Edit Code.
3.Look for a file named footer.liquid (or similar, depending on the theme).
4.Search for the section that includes the payment icons. It may look something like this:
{{ shop.enabled_payment_types | default: payment_icons }}
5 .If your theme manually includes PayPal, you may see something like:
<img src="paypal-logo.png" alt="PayPal">
Remove or comment out the PayPal icon.
6. If the payment icons are dynamically generated, you may need to filter out PayPal by modifying the Liquid code:
{%- for type in shop.enabled_payment_types -%}
{%- unless type == 'paypal' -%}
<img src="{{ type | payment_type_image_url }}" alt="{{ type }}">
{%- endunless -%}
{%- endfor -%}
7. Click Save and check your store.
Method 2: Hide PayPal Icon Using CSS (Quick Fix)
If you don't want to edit the Liquid code, you can use CSS:
1. In Shopify Admin > Online Store > Themes, click Customize.
2. Go to Theme Settings > Custom CSS (if available) or Edit Code and open base.css or theme.css.
3. Add the following CSS:
img[src*="paypal"] {
display: none !important;
}
4. Save the changes and check your store.
Thank you😊
This is an accepted solution.
Try this one.
li.icon--payment svg[aria-labelledby="pi-paypal"] {
display: none;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you bro
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025