“银色数码”共享模板首页不能关闭显示“市场价格”

2016-07-07 16:31 来源:www.chinab4c.com 作者:ecshop专家

“银色数码”共享模板首页不能关闭显示“市场价格”。
不知道是我误操作,还是共享模板的缺陷。
求助高手帮忙!叩谢了!

本人建设中的小站 http://www.e-b-s.cn/
我已经在后台设置不显示“市场价格”了,点进具体
商品后可以看到不显示,但是首页显示的还是有。

回答:
可能设计师没有添加判断后台是否开启的代码

打开使用模板根目录 找其"goods.dwt"
搜索"{$goods.market_price}"
以下以默认模板为例
  1. <tr>
  2. <td>{$lang.market_price}</td>
  3. <td><span class="market-price">{$goods.market_price}</span></td>
  4. </tr>
复制代码
在这段代码前<tr>前加入
  1. <!-- {if $cfg.show_marketprice} -->
复制代码
在其代码最后</tr>后加入
  1. <!-- {/if} -->
复制代码
保存 上传 OK,收工!
记得备份下噢

非常感谢帮助,代码好象没错,不过我加了,没变化。下面是没加前的——

<!-- {if $cfg.show_marketprice} -->
<dd><strong>{$lang.market_price}</strong><span class="market-price">{$goods.market_price}</span></dd>
<!-- {/if} -->