What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: How to remove shopify logo from bottom of password page

Solved

How to remove shopify logo from bottom of password page

canikickit
Excursionist
17 1 3

Hello, I've successfully removed the "power by shopify" text presented on the bottom of the password page however I can't seem to remove the "Shopify" logo.  

 

I'm using the Enterprise Theme.  Thank you for your assistance.  

Accepted Solution (1)
Guleria
Shopify Partner
3707 744 1040

This is an accepted solution.

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your pasword.css file and paste the following code below:

svg.shopify-logo {
    display: none;
}
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 11 (11)

Guleria
Shopify Partner
3707 744 1040

Hello @canikickit ,

 

Add this css at the bottom of the theme.css  

.password-footer {
    display: none !important;
}

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

Made4uo-Ribe
Shopify Partner
9179 2190 2708

Hi @canikickit 

Would you mind to share your password page URL?Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
canikickit
Excursionist
17 1 3
Guleria
Shopify Partner
3707 744 1040

This is an accepted solution.

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your pasword.css file and paste the following code below:

svg.shopify-logo {
    display: none;
}
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
canikickit
Excursionist
17 1 3

After doing this, the logo is replaced by the text "svg.shopify-logo { display: none; }"

Guleria
Shopify Partner
3707 744 1040

You added the css at the wrong place.
You have to find password.css under Assets  

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
canikickit
Excursionist
17 1 3

That's exactly what I did - at the very bottom of this file

canikickit
Excursionist
17 1 3

It worked! Thank you

Moeed
Shopify Partner
6369 1725 2088

Hey @canikickit 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
svg.shopify-logo {
    display: none !important;
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


AidX
Visitor
1 0 0

Brilliant, thank you! Worked first time with your clear instructions! Molt respecte

Pav33
Visitor
3 0 0

Solution for the Prestige theme or other paid themes:

  1. Go to your Theme -> Edit code.
  2. Find password.liquid and go to line 111, or search for:
    {%- render 'icon' with 'shopify-logo' -%}.
    Remove this line and save the changes.

If you don’t have password.liquid, search for main-password.liquid instead.