Get rid of Privacy Policy at the very bottom of my shopify pages

I’d like to get rid of the Privacy Policy at the very bottom of my pages, not in the footer, but under the payment methods next to © 2024, Schi+Kin Botanical Skincare . Please advice. Thanks

https://www.schikin.co.uk/

Hi Schikinoils,

Try following:
Got to Online store > Themes > click … (next to your theme) > click Edit code

Find a file called section-footer.css and find a line code matching the following

.policies {
    display: inline;
}

update the code by changing the value to none as follows:

.policies {
    display: none;
}

Let me know if it didn’t work

1 Like

Hello @schikinoils ,

Check in the footer setting there you will find an option to hide/remove it.

btw if you can’t please follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

ul.policies.list-unstyled {
    display: none !important;
}

Thanks

Thanks

1 Like