Hi All, Can anyone facing this error before. i'm u...
# suitecommerce
t
Hi All, Can anyone facing this error before. i'm using SCEM 2021.1.0 and SCA 2019.2. if anyone have any idea on how to resolve this that would be helpful a lot. thanks in advance.
m
This a know issue on 21.1 Tools, the IE files are missing, you can modify the ssp files to add "|| []" like this "var ie_css_files = app_includes.shopping.ie || [];"
👍 1
or create a new js file and include it at the end of the ssp libraries on the ssp application with the following:
if (this.appIncludes && this.appIncludes.shopping && this.appIncludes.shopping.css && !this.appIncludes.shopping.ie) { this.appIncludes.shopping.ie = []; } if (this.appIncludes && this.appIncludes.checkout && this.appIncludes.checkout.css && !this.appIncludes.checkout.ie) { this.appIncludes.checkout.ie = []; } if (this.appIncludes && this.appIncludes.myaccount && this.appIncludes.myaccount.css && !this.appIncludes.myaccount.ie) { this.appIncludes.myaccount.ie = []; }