Hi Community,
I have one page component in which I have some menu items.
I want to add hyperlink (href) on this like in Home Page using Sightly code. I tried using <a href='geometrixx/en.html' @ scheme='http', extension='html'">Home</a>
but its not working. Can you please help me to make it clickable so that it will redirect to some other page like in http://localhost:4502/content/geometrixx-outdoors/en.html when you click on Men's on Menu.
~ Prince
Solved! Go to Solution.
Views
Replies
Total Likes
Expressions are done like this:
${ pageYouWantToLinkTo @ extension='html'}
Views
Replies
Total Likes
Expressions are done like this:
${ pageYouWantToLinkTo @ extension='html'}
Views
Replies
Total Likes
Hi Feike,
Thanks for reply.
It would be great if you will give any example.
~ Prince
Views
Replies
Total Likes
This should work
<a href="${ pageYouWantToLinkTo @ extension='html'}" >My Page</a>
Views
Replies
Total Likes