I’m building some custom Pages for our store and I was wanting to use Liquid Objects to build bread crumb links at the top of the page. Such as:
Home >
Shop By > Brands
However, it appears the liquid references do not map out when used in a Page HTML. Are there any shortcuts to doing this without my having to fully define the URL?
Thanks.
tim_1
February 23, 2021, 4:15am
2
Any liquid entered inside page content field would not be processed. Same goes to product and collection description and so on.
However, you do not need it in your case, simple relative path, like href=“/collections/shop-by” would be sufficient. Or href=“/”.
Of course. Thanks for the feedback. Sometimes I forget to look outside of the liquid approach.