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
Hi All,
I'm wanting to remove the phone number from the header of the minion theme. Does anyone know how to do this please?
Thanks!
Solved! Go to the solution
This is an accepted solution.
Hi @Frolicksy,
Please go to Customize > Theme settings > Custom CSS and add code:
.header-phone-number__desktop {
display: none;
}
Hey! @Frolicksy,
Go to your Shopify Admin Panel.
Navigate to Online Store → Themes.
Click on Edit Code (not Customize).
Open the theme.liquid file (found inside the Layout folder).
Scroll down and paste the code just before the </head> tag:
<style>
.header-phone-number__desktop {
display: none !important;
}
</style>
Thank you! The comment below with code to remove this part of the page was a simple fix and worked immediately, I had tried removing phone number from being shown through settings which hadn't worked.
Thanks for your support and input! 🙂
This is an accepted solution.
Hi @Frolicksy,
Please go to Customize > Theme settings > Custom CSS and add code:
.header-phone-number__desktop {
display: none;
}
Legend! Thank you SO much for this, worked perfectly! It's these little things I'm still learning and I appreciate Shopify support so much 🙂
Hi @Frolicksy,
Welcome to support you 😊