Looking for advice on creating internal page links...
# suitecommerce
m
Looking for advice on creating internal page links on CMS pages. Apparently our redirects only work on external requests, so I can't figure out how to have a concise link to "/login" or order tracking, etc. that won't require finding and fixing every time we upgrade our SSP. The dev docs (https://developers.suitecommerce.com/page-navigation-and-redirection.html) have javascript examples but that seems pretty complex for the CMS pages.
s
In the same page there is a section called "Automatic Link Generation in Templates" which basically explains what you need to do via the HTML-only route.
In the CMS, when adding in a link, you will need to go to the HTML view of the page and use something like this:
Copy code
<a data-touchpoint="login" data-hashtag="login-register" href="#">Click here to login!</a>
👆 1
m
Thanks!