-
Notifications
You must be signed in to change notification settings - Fork 1
v1.2.0 Updates
Matt Zimmermann edited this page Apr 15, 2015
·
4 revisions
Updates and additions to support the new features released in Miva 9.3:
- http://www.miva.com/mm9.3_template_changes.html
- http://extranet.miva.com/forums/showthread.php?115591-Miva-Merchant-9-0003-Is-Now-Available&p=430880#post430880
####HEAD Tag Added new pages to "screenCheck" variable:
<mvt:assign name="g.screenCheck" value="'ABAL,ACAD,ACED,AFAD,AFCL,AFED,ACLN,BASK,CEML,CPWD,FPWD,GFTL,INVC,LOGN,LOGOUT,OCST,OPAY,OPRC,ORHL,ORDH,ORDL,ORDS,OSEL,OUS1,OUSL,OUSM,PLMT,PRINTP,RGFT,SFNT,UATM,UATR'" />
####../js/scripts.js Added support for forgot password on GFTL page:
},
jsGFTL: function () {
// ---- Open Forgot Password ---- //
cornerstoneUX.sharedFunctions.openForgotPassword();
####...css/pages.css Added support for additional icons on ACLN page at line 902:
.acln .account-links .column {
margin-bottom: 1rem;
min-height: 9rem;
}
##Issue #1 ####../js/scripts.js
Within the jsPLST function, add:
// ---- Open Quick View ---- //
cornerstoneUX.sharedFunctions.openQuickView();
##Issue #3 ####../css/print.css
Replace:
body {
background-color: #fff;
color: #000;
-webkit-filter: grayscale(100%) !important;
filter: grayscale(100%) !important;
font: 0.57em / 1.3 Helvetica, Arial, sans-serif;
}
With:
body {
background-color: #fff;
color: #000;
font: 0.57em / 1.3 Helvetica, Arial, sans-serif;
}
##Issue #4 Updated the custom field code from "product-flags" to "product_flags" to prevent the Power Search build function from failing, if module is being used.