※社内専用

ECのプレビュー公開の時だけ表示がおかしい

  • HOME
  • EPRESS-EC
  • ECのプレビュー公開の時だけ表示がおかしい
トップページの時だけ<body>homeクラスがつくのですがそれがついているか確認してください。
過去案件ではついていないものがあると思います。
下記のように記述を差し替えてください。

main.js 1行目
$(function() {
  var local = location.protocol + '//' + location.host + location.pathname.replace('index.html', '');
  local=local.replace('preview/','');
  if (local === $('#host').val() + '/') $('body').addClass('home');
  $('#container').removeAttr('style').children().each(function() {
    $(this).removeAttr('style');
  });