I have implemented an SSO service into shopify using multipass but i just finally need to edit the checkout so when someone clicks the little blue login button they are taken to my authentication url.
I am on shopify plus and can access the checkout.liquid file but no idea on how to actually just change the url within the login button.
2
Answers
You can modify it using javascript since the login button is located in the
content_for_layout
tag and you don’t have direct access to it.Another approach will be to use the liquid split filter on the above tag but that will be a little tricky and more work.
Just use plain javascript is my call.
You can modify the login link on checkout using JavaScript if using Shopify Plus.
Add the following snippet inside script tags on your custom
checkout.liquid
template.