Breakpoint Name | Device | Min Pixels | Max Pixels | Min Em | Max Em |
---|---|---|---|---|---|
Extra-Small | Mobile (Small) | 0 | 639.98 | 0 | 39.999 |
Small | Mobile (Large) | 640 | 767.98 | 40 | 47.999 |
Medium | Tablet | 768 | 959 | 48 | 59.999 |
Large | Laptop | 960 | 1199.98 | 60 | 74.999 |
Extra-Large | Laptop (Large) | 1200 | 1439.98 | 75 | 89.999 |
Wide-Screen | Wide Screen | 1440 | Infinity | 90 | Infinity |
This method is preferred because preserving the original source of the mmx-product-carousel.js
will maintain future automatic update eligibility during Miva Software patches of flex components.
To use this method, add the following to some globally executed JavaScript file. For example, in Shadows that would be something like: ui/js/theme.js > themeFunctionality.global()
// Remove peek for just product carousel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:comment> | |
Fail-safe Write | |
</mvt:comment> | |
<mvt:if expr="l.settings:page:code CIN 'INVC'"> | |
<mvt:item name="customfields" param="Write_Basket( 'order_instructions', g.order_instructions )" /> | |
<mvt:item name="customfields" param="Write_Order( l.settings:order:id, 'order_instructions', g.order_instructions )" /> | |
</mvt:if> | |
<mvt:comment> |
Encoding | Value |
---|---|
Original | https://jsmith:[email protected]:443/path/to some/file.html?q=s&q2=a+b&q3=some thing#hash=value |
&mvte | https://jsmith:[email protected]:443/path/to some/file.html?q=s&q2=a+b&q3=some thing#hash=value |
encodeURI() | https://jsmith:[email protected]:443/path/to%20some/file.html?q=s&q2=a+b&q3=some%20thing#hash=value |
&mvta | https%3A%2F%2Fjsmith%[email protected]%3A443%2Fpath%2Fto+some%2Ffile.html%3Fq%3Ds%26q2%3Da%2Bb%26q3%3Dsome+thing%23hash%3Dvalue |
encodeURIComponent() | https%3A%2F%2Fjsmith%3Afoo%40www.example.com%3A443%2Fpath%2Fto%20some%2Ffile.html%3Fq%3Ds%26q2%3Da%2Bb%26q3%3Dsome%20thing%23hash%3Dvalue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:comment> | |
Parameters | |
</mvt:comment> | |
<mvt:assign name="l.combofacet_field_code" value="'ymm'" /> | |
<mvt:assign name="l.combofacet_product_value" value="'1967>Ford>Mustang|1967>Chevy>Camaro'" /> | |
<mvt:assign name="l.product_code" value="'fitment-test'" /> | |
<mvt:comment> | |
Loading the Data and Module Settings | |
</mvt:comment> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:comment>One-Time Setup</mvt:comment> | |
<mvt:do file="g.Module_Library_DB" name="l.module_loaded" value="Module_Load_Code_Cached('tg_transients', l.tg_transients_module)" /> | |
<mvt:do file="g.Module_Library_DB" name="l.storemodule_installed" value="StoreModule_Load_Cached(l.tg_transients_module:id, 'util', l.null)" /> | |
<mvt:if expr="l.tg_transients_module:active AND l.storemodule_installed"> | |
<mvt:assign name="g.Module_TG_Transients" value="g.Module_Root $ l.tg_transients_module:module" /> | |
<mvt:else> | |
<mvt:assign name="g.Module_TG_Transients" value="''" /> | |
</mvt:if> | |
<mvt:comment>Each Usage</mvt:comment> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:assign name="l.data_for_api:thing_1" value="'Foobar'" /> | |
<mvt:assign name="l.data_for_api:thing_2" value="'Lorem ipsum...'" /> | |
<mvt:capture variable="l.json_string"> | |
<mvt:do file="g.Module_JSON" name="l.success" value="JSON_Output( l.data_for_api )" /> | |
</mvt:capture> | |
<mvt:call action="'https://ssoule.mivamerchantdev.com/php/mvt-call-converter.php'" method="'GET'" fields="'json_string'"> | |
<mvt:eval expr="s.callvalue" /> | |
</mvt:call> |