我对 EE 比较陌生,而且我在类别方面遇到了麻烦......
我在这里有这个页面:
http://www.nationallighting.ie/testbed/index.php/products
所有的产品都被分类并分成盒子,所以当一个盒子被点击时,div 幻灯片显示类别。(到目前为止,我只添加了一些项目,例如户外类别中有 2 个)
现在我的问题是,当我单击单个项目并转到“单个产品”模板时
http://www.nationallighting.ie/testbed/index.php/products-single
列出的每个类别都有一个项目,而我只想显示我最初点击的项目,所以只有一个项目在“单一产品”模板中。
这里是“单品”模板的EE代码,明显是我做错了,看不出来是什么!!!任何帮助是极大的赞赏!!!
<!-- content about inside -->
<div class="inside products">
<h3>Product details</h3>
{exp:channel:categories style="linear" channel="products"}
{exp:channel:entries channel="single_product" category="{category_id}" limit="1"}
<div class="description">
<img src="{cat_main_image}" alt="{title}" />
<div class="descr-inside">
<h3>Crystal - Sgopera-3ch</h3>
<p><strong>Description: </strong>3 Light Pendant with glass beads</p>
<p><strong>Supplier: </strong>Endon</p>
<p><strong>Width: </strong>455mm</p>
<p><strong>Height: </strong>695mm</p>
<p><strong>Lamp Type: </strong>GU10</p>
<p><strong>Max. Wattage: </strong>3 x 50W</p>
<p><strong>Energy saving: </strong>yes</p>
</div>
</div>
{/exp:channel:entries}
{/exp:channel:categories}
</div> <!-- end of inside -->