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
Topic summary
Request to remove the Privacy Policy links displayed beneath payment icons next to © 2024 on Shopify pages (outside the primary footer). Aim: hide that policies list globally.
Proposed approaches:
- Use the theme’s Footer settings to hide/remove the policies list if the option exists.
- Edit code: in section-footer.css set the selector .policies to “display: none”.
Alternative CSS override: add to base.css the rule “ul.policies.list-unstyled { display: none !important; }”. This hides the element via CSS; “!important” ensures it overrides theme defaults.
Outcome: OP replied with thanks; no errors or follow-up issues reported. Status appears resolved, though the exact method used wasn’t confirmed.
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
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:
-
Go to Online Store → Theme → Edit code
-
Open your base.css file and paste the following code at the bottom:
ul.policies.list-unstyled {
display: none !important;
}
Thanks
Thanks