How can I remove duplicate address lines at checkout?

Hello!

I am interesting to remove the line shown in the image below of pickup location, and also to not display 2 times the same address in the block below.

Thanks in advance!

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

1 Like

hairworkshop.gr

Hi @mpatsi ,

This is Henry at PageFly - Shopify Advanced Page Builder app.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


Hope this answer helps.

Best regards,

Henry | PageFly

Hi @mpatsi ,

I understand that you want to to remove the line shown in the image and also to not display 2 times the same address in the block below.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “theme.scss.liquid, styles.scss.liquid or base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
._1fragemaf._1fragem1b._1mrl40q2._1fragem1z._1fragem2g._1fragem2._1fragem6._1fragem38._1fragem3c._16s97g73._16s97g75._16s97g7b._16s97g7d {
    display: none;
}

address._19gi7yt0._19gi7ytc._1fragem1i {
    display: none;
}

Result:

I hope it help.