If others, like me, had this issue, I’ll explain how to fix it! The problem is caused by the ACM module used in template other than Uber. The less files in the acm folder you copied in templates/yourtemplate folder use the less function "translateY" that is present only in the Uber Template. To quick fix this issue:
-
edit the file /templates/ja_template/less/vars.less
-
if not present, create the line:
@import "mixins.less";
-
save the file and exit
-
if not present, in the same folder, create that mixins.less file and write in it:
.translateY(@y) {
-webkit-transform: translateY(@y);
-ms-transform: translateY(@y); // IE9 only
-o-transform: translateY(@y);
transform: translateY(@y);
}
- that is the missing function you’re looking at! 😉 Save, exit and enjoy!! 😉
Mario