Megamog
Try Megamog freeResourcesOther solutions
  • What is Megamog theme?
  • Changelog
  • Refund policy
  • Support policy
  • Terms of Service
  • Getting started
    • Install Megamog theme
      • Install Megamog in 1-click fast way
      • Install Megamog manually
    • Add Custom code/ CSS correctly
    • Integrate Shopify Review apps
    • Mega menu
    • Purchase code & activation
    • Update Megamog theme
    • FoxHome
  • Build for success series
    • Product page for Beauty store like Kylie Jenner 🔥
    • Landing page for Fashion store like Bremont
  • Page's global sections
    • Announcement bar
    • Age verifier pop-up
    • Header
    • Footer
    • Mobile sticky bar
  • Theme sections
    • Before/ After image slider
    • Blog posts
    • Brand list
    • Collapsible content
    • Collection spotlight
    • Collection list
    • Collection links
    • Countdown timer
    • Custom content
    • Favorite product slider
    • Featured collection
    • Featured product
    • Featured promotion
    • Featured products slider
    • Google Maps
    • Image banner
    • Image with text
    • Instagram
    • Lookbook
    • Newsletter
    • Press
    • Product tabs
    • Recently viewed products
    • Scrolling promotion
    • Slideshow
    • Testimonials
    • Video
    • Video hero
    • Banner grid
    • Multiple columns
    • Store locator
  • Theme settings
    • General settings
    • Layout settings
    • Additional pages
    • Advanced
    • Animation
    • Article card
    • Badges
    • Cart settings
    • Checkout
    • Colors & Color schemes
    • Corner radius
    • Currency format
    • GDPR settings
    • Intergrated apps
    • Integration
    • Pop-up & drawer
    • Product card
    • Product options design
    • Product options swatches
    • Social sharing
    • Search settings
    • Store contact
    • Typography
  • Collections & Products
    • Product page
      • Product template
      • Page sections
        • Breadcrumb
        • Product information
        • Product information tabs
        • Product recommedations
    • Collection page
      • Collection template
      • Collection sections
        • Collection banner
        • Product listing
  • Other pages
    • 404 page
    • Blogs
    • Blog posts
    • Cart & Checkout
    • Password
  • FAQS
    • Add a gift wrap option to my cart
    • Add custom badges to my product card
    • Add recipient fields to my gift card product
    • Add/ Remove Social icons in footer
    • Change the default product order in collection
    • Customize search results
    • Move the collection description to under the product listing
    • Remove the tax-included information in product page
    • Set up local pickup
    • Show Payment icons on the Footer
  • TROUBLESHOOTING
    • Contact form submissions not found
    • Translation apps incompatibility
Powered by GitBook
On this page
  1. FAQS

Show Payment icons on the Footer

Everything you need to know about the payment icons on your Footer

PreviousSet up local pickupNextContact form submissions not found

Last updated 3 months ago

How to enable showing the payment icons on Footer?

Payment icons can be enabled inside the Footer section settings.

Why are icons not showing up/ missing?

Shopify recently updated how payment methods integrate into stores. As a result, only payment options accepted through Shopify Payments will automatically display their icons in the footer.

What Can You Do?

  • Contact Shopify Support: For the latest information and any potential workarounds, we recommend reaching out directly to Shopify Support. They can provide the most up-to-date details on payment method icon display.

Choose which payment icons to display

If you want to add or remove payment icons in Footer without changing your payment settings, then you can edit your theme code by following our steps below.

Make sure you enable the payment icons in your footer

  1. Click Footer.

  2. Check the Show payment icons checkbox.

  3. Click Save.

Edit the code for your payment icons

In this step, you will change the way that payment icons are assigned to your footer. By default, your theme shows the icons that are associated with the payment gateway you have enabled in the Shopify payments settings section of your admin. With this customization, you will manually add or remove the payment icons that you want to display.

Steps:

  1. From your Shopify admin, go to Online Store > Themes.

  2. Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.

  3. In the Snippets directory, click payment-icons.liquid. Find the following code in the file:

{% for type in shop.enabled_payment_types %}

Replace that code with the following:

{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}

In the code that you just pasted, there is a list of payment providers separated by commas:

 'visa,master,american_express,paypal'

The payment providers that you include in this list will determine which payment icons display on your online store. You can edit the list of payment providers to suit your needs.

  1. Click Save.

.

Theme Customization: If you're comfortable with code editing, Minimog theme allows manual customization of the footer section to potentially include icons for third-party gateways.

Go to the .

and copy the name of each icon that you need from that list, without the .svg extension.

Learn more about Shopify Payments here
theme editor
Review the list of available values
See how