我正在建立一个基于Broadleaf模板的电子商务网站。我想从网站右侧删除精选列???
答案 0 :(得分:0)
我在product.html中找到了<section id="right_column">
标记。如果删除此标记,则会从网站中删除正确的面板。还有其他更好的解决方案吗?
答案 1 :(得分:0)
如果您使用的是位于以下位置的演示网站:https://github.com/BroadleafCommerce/DemoSite 你确实可以删除这一部分:
/site/src/main/webapp/WEB-INF/templates/catalog/product.html
来自<section id="right_column">
<header>Featured Products</header>
<div id="options">
<div class="section">
<blc:related_products productId="${product.id}"/>
<ul id="featured_products" class="group">
<li th:each="relatedProduct : ${relatedProducts}" th:object="${relatedProduct.relatedProduct}" th:include="catalog/partials/productListItem" class="product_container"></li>
</ul>
</div>
</div>
但可能会通过在源代码中搜索blc:related_products
来完成对特色产品的完全删除,并且您会将其找到4个文件中:site/src/main/webapp/WEB-INF/templates/content/default.html
,site/src/main/webapp/WEB-INF/templates/catalog/product.html
,{ {1}},site/src/main/webapp/WEB-INF/templates/catalog/category.html
但请记住,此处理器仅删除了针对不同上下文查找特色产品的调用,例如链接到类别或产品的特色产品等。
答案 2 :(得分:-1)