Align payment options and remove "more payment options"

Hello guys. I want to have the payment badges aligned under the dircetly under the buy with paypal button. I also want to remove “more payment options”

Anyone can help?

https://luviera.store/

password: bautso

I used a custom liquid to add the payment options

Hello @AnimeVoyage

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

button.shopify-payment-button__more-options.BUz42FHpSPncCPJ4Pr_f { display: none !important; } @media screen and (min-width: 750px) { .list-payment { justify-content: flex-start !important; } }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hey @AnimeVoyage

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @AnimeVoyage ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

HEllo @AnimeVoyage
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

.shopify-payment-button__more-options.BUz42FHpSPncCPJ4Pr_f {
display: none !important;
}
@media screen and (min-width: 750px) {
.list-payment {
justify-content: center;
}
}

result

If this was helpful, hit the like button and accept the solution.
Thanks