LoginSignup
8
9

More than 5 years have passed since last update.

【EC-CUBE】テンプレートのコメントアウト

Last updated at Posted at 2015-05-19

EC-CUBEはテンプレートにSmartyを使っている。

通常、Smartyのコメントアウトは以下のように行う。

{* 以下のdiv要素はコメントアウトされている *}
{*
<div>
  <span>Hello, world!</span>
</div>
*}

でもEC-CUBEのテンプレートでは上記のようにすることはできない。

次のように、Smartyのコメントをで囲むような形をとる。

<!--{* ここがコメントアウトされる *}-->

以上。

8
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
9