How to remove CART text and adding logo/trust badges on Prestige theme

Hi,

I’d be very grateful if you could help me!! Does someone knows how to remove CART text of the cart page and the possibility to add the logo or trust badges. I’m using Prestige theme and the URL is https://kannuii.es/

Many thanks

Marc

Hello Marc,

  1. Go to Online Store->Theme->Edit code
  2. Sections->main-cart.liquid now here search for this code
# {{ 'cart.general.title' | t }}

Once found remove it.

To add trust badge do modification in same file.
e.g. if you want to add trust badge image before checkout button then search for this code


and just before of it add your code.

Thanks

1 Like

Hi @Guleria ,

Thanks for your help! Adding the code of atrust badge after or before the code you pasted on your reply, it means the link from admin/settings/files of the picture, isnt?

Thanks

Marc

If you want, you can add picture to admin/settings/files and after that use that image in code alternatively you can add image to asset and use it and last option is you can create an option in cart page so can add trust badge from theme settings ( but for this you need a developer )

Hi @Guleria , thanks but it doesn’t work ! ((

Can you share what you did to add trust badge ? And I provided an idea to implement it, not code to add trust badge.

Hi @Guleria , I’ve already add the trusted badge from admin/files on cart page just on the header then I’ve added the next code on theme.scss.liquid but it shows on the left and I’d and not centered. Do you know how it would be??

@media screen and (min-width: 381px) {
.cart-trust-badge {
max-height: 30px;
display: block;
margin-left: center;
margin-top: 15px;
}
}

Many thanks

Marc

Use this css

@media screen and (min-width: 381px) {
.cart-trust-badge {
    max-height: 30px;
    display: block;
    margin: 0 auto;
}
}
1 Like

Perfect!! It finally worked!!

Thanks for your help!

MArc