<!-- こんな商品も買っています -->
{% set isAlsoProduct = you_may_also_like(goods.goodsId) %}
{% if isAlsoProduct is defined and isAlsoProduct is not null %}
<div id="recentviews" class="recentviews-style">
<div class="recentviews-ttl">
<p>この商品を買った人はこんな商品も買っています</p>
</div>
{{ isAlsoProduct|raw }}
</div>
{% endif %}
<!-- こんな商品も買っています -->