Is there a miva replacement function for the toolkit quick function?
How can I call in certain image sizes and custom fields within this code?
Here is the current toolkit code I'm using. This is on a non category page template.
Thanks in advance.
How can I call in certain image sizes and custom fields within this code?
Here is the current toolkit code I'm using. This is on a non category page template.
Code:
<div class="row o-layout category-product-layout" style="margin: 0 0.5rem">
<mvt:item name="toolkit" param="quick|pcount|ILYR11,BMVRR11,MDR11C,TCR,BR11,WYMM11W,11MRPSB,WR11,11IGPR,11MDRIG,11IBBR,11MDRI B,11MR,11PRMSB,ICV3x2,TEFTG,TEFTS,TEFTGP,TEFTSP25,TEFTGP50" />
<mvt:foreach iterator="quicklist" array="quicklists">
<mvt:item name="toolkit" param="customimage|small|l.all_settings:quicklist:id||205|205|" />
<mvt:item name="toolkit" param="customimage|big|l.all_settings:quicklist:id |" />
<mvt:item name="toolkit" param="custom|wholesale_name|l.all_settings:quicklist:id|wholesale_name" />
<mvt:item name="toolkit" param="custom|wholesale_msrp|l.all_settings:quicklist:id|wholesale_msrp" />
<a class="view-image o-layout__item category-product" href="https://&mvt:global:domain:name;&mvt:global:imageroot;&mvte:global:big;" data-custom="https://&mvt:global:domain:name;&mvt:global:imageroot;&mvte:global:big;" title="&mvte:global:wholesale_name;">
<div class="place-holder">
<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==" width="207" height="207" data-src="&mvt:global:imageroot;&mvte:global:small;" alt="&mvte:global:wholesale_name;" title="&mvte:global:wholesale_name;">
<noscript><img src="&mvt:global:imageroot;&mvte:global:small;" width="207" height="207" alt="&mvte:global:wholesale_name;" /></noscript>
</div>
<p>&mvte:global:wholesale_name;</p>
<p class="bold">MSRP: &mvte:global:wholesale_msrp;<br><span class="red">Log In for Price</span></p>
</a>
</mvt:foreach>
</div>
Comment