Home > Enterprise >  How to add custom link with store url in magento 2
How to add custom link with store url in magento 2

Time:04-02

How to add custom url with store url (Base URL) in magamenu - magento 2. I try {{base_url}} but not working

enter image description here

CodePudding user response:

In this case I would suggest using:

{{store url=crazy-clown-contact-lenses-pair.html}}

CodePudding user response:

In this situation, you can't. This field is for static links that you will input (ex: https://example.com/path).

You can override the renderer code which use this datum, to complete link when it matches with a pattern which you will define. For example : {{ baseurl }}/your-link.

  • Related