Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
Solved! Go to the solution
This is an accepted solution.
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
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
Thanks
This is an accepted solution.
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