我们使用电子商务平台X-cart来托管我们的购物车以及Janrain的内置集成,该集成允许通过Facebook等进行社交登录。 我们希望限制登录购物车页面的能力,因为.js代码会导致我们的网站在产品页面上加载缓慢。我们如何防止.js代码在产品页面上运行?
只需将以下内容放在导致速度缓慢的javascript文件的开头:
if (window.location.href.indexOf('/path/to/shopping/cart/pages') != -1) {
//We are in shopping cart pages
//and we don't this js file to cause slowness, so just exit
return;
}
// rest of the js file
...