Password Page Customize ( Shopify Tinker Theme )

Hello Everyone!

I am using the Shopify Tinker theme. I want to put text on the right side of Enter store password. Is it possible to put this? Please help me. Thanks in advance.

Password: Admin

Hi there!

Yes, this is completely possible. Since you are using the Tinker theme, you can achieve this by adding a small custom CSS or modifying the password.liquid file under your Sections/Templates.

Here is a quick way to look into it:

Go to your Shopify Admin > Online Store > Themes.

Click the three dots (…) next to Tinker theme and select Edit Code.

Search for the password.liquid file or check the main stylesheet (usually base.css or theme.css).

You can wrap the “Enter store password” label and your new text in a flexbox container (display: flex; align-items: center;) to make them sit side-by-side perfectly

@dreamtechzone_5

I think you can change this from the translation section or the password template. If you don’t get any option. You can try adding the following

  1. Go to your Shopify Admin and navigate to Online Store > Themes.
  2. Click the three dots (…) next to your active theme and choose Edit code.
  3. Open the theme.liquid file under the Layout folder.
  4. Scroll to the very bottom of the file, find the closing </body> tag, and paste the following code right above it:
{% if template.name == 'password' %}
  <style>
    .label-wrapper label::after {
       content: ' : Admin';
    }
  </style>
{% endif %}

You can change the content as per your needs.

Hope this helps!

I pasted the code but it’s not working.

here is

@dreamtechzone_5

Please try this code instead.

{% if request.page_type == 'password' %}
  <style>
    .label-wrapper label::after {
       content: ' : Admin';
    }
  </style>
{% endif %}

Not work. Is it possible to fix this? If you want, I will add you to my store.

Not sure if you’re using an old version, or a custom password page, but if you update the theme to Tinker 4.1.1, what you are asking for is directly in the theme editor:

Are you on a free trial plan?

Hello @dreamtechzone_5

Yes, it’s possible to edit the password page.

Please follow this screen recording for the steps: https://vimeo.com/1206142461

Hope this helps!