我使用opencart 1.5.6.4,即journal2主题,我在产品页面上制作了一个自定义相关项目。仅对某些产品我没有任何相关项目,我想禁用它的显示。
结果的Screendump:
有人会建议如何这样做吗?
我的代码为xml vqmod:
<modification>
<id>Related Products Custom tab </id>
<version>1.2</version>
<vqmver>2.1.5</vqmver>
<author>13Pixels</author>
<file name="catalog/view/theme/journal2/template/product/product.tpl">
<operation>
<search position="after"><![CDATA[<div class="related-custom-spot">]]>
</search>
<add><![CDATA[
<div class="related-custom" style="background-color: rgb(244, 244, 244);">
<?php if ($heading_title): ?>
<div class="secondary-title" style="background-color: rgb(169, 184, 192); margin: 0px;"><?php echo $tab_related; ?></div>
<?php endif; ?>
<div class="related-custom-pictures">
<?php foreach ($products as $product) { ?>
<?php if ($product['thumb']) { ?>
<a href="<?php echo $product['href']; ?>">
<img style="border-width: 5px; border-style: solid; border-color: rgb(244, 244, 244);" width="50px" height="50px" src="<?php echo $product['thumb']; ?>" title="<?php echo $product['name']; ?>" alt="<?php echo $product['name']; ?>" />
</a>
<?php } ?>
<?php } ?>
</div>
</div>
]]></add>
</operation>
</file>
</modification>