You're almost right but you mangled the display of the vars.
This code won't get you anywhere:
Either use mvt:eval if you're gonna use l.settings, or get rid of l.settings and use page entities.
or
Take a look at this post, it explains things like the difference between l.settings and &mvt and similar stuff:
https://www.scotsscripts.com/blog/mi...-use-them.html
This code won't get you anywhere:
Code:
&mvt:l.settings:_catproduct:cat_id; <br> &mvt:l.settings:_catproduct:product_id; <br> &mvt:l.settings:_catproduct:disp_order; <br>
Code:
&mvt:_catproduct:cat_id; <br> &mvt:_catproduct:product_id; <br> &mvt:_catproduct:disp_order; <br>
Code:
<mvt:eval expr="l.settings:_catproduct:cat_id" /> etc...
https://www.scotsscripts.com/blog/mi...-use-them.html
Comment