去掉首页商品价格

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

首页推荐商品分类中,怎么把某一个分类商品的价格和市场价格去掉?希望大家帮帮忙

回答:
市场价格去掉方式:后台设置。不显示

商品价格:修改模板

直接去模板中去掉即可!!

在good.dwt当中进行修改就可以了

人家说的是首页,
修改 library/recommend_hot.lbi , recommend_best.lbi ,recommend_new.lbi 三个文件
  1. <!-- {if $goods.promote_price neq ""} -->
  2. {$goods.promote_price}
  3. <!-- {else}-->
  4. {$goods.shop_price}
  5. <!--{/if}-->
复制代码
删除,就不会显示价格了

这样
<tr>
<td><A href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.short_style_name}</A><br />
<!-- {if $goods.promote_price neq ""} -->
{$lang.promote_price}<span class="goods-price">{$goods.promote_price}</span>
<!-- {else}-->
{$lang.shop_price}<span class="goods-price">{$goods.shop_price}</span>
<!--{/if}-->
</td>
</tr>

比如我的商品分类有裤子,外套。我就把这两个分类推荐到首页显示,裤子的价格不让他先显示。外套的显示。
在请问一个问题就是这些商品价格是从哪个文件传过来的?

谢谢大家帮我解答



cat_goods.lbi模板
这是让商品分类id为1的不显示商品价格。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<div class="adv floatlft Inline" style="margin-top:7px; width:790px;margin-left:5px;padding:0px; overflow:hidden;">
<span class="floatlft" style="vertical-align:middle;background-image:url(images/catpic.jpg);width:780px;height:36px;padding-left:10px;margin-left:0px;margin-top:8px; margin-bottom:3px;overflow:hidden;">
<a href="{$goods_cat.url}" style="font-face:宋体;font-weight:bold;font-size:16px;color:#ff0061;">{$goods_cat.name|escape:html}</a>

</span>



<!--{foreach from=$cat_goods item=goods}-->
<div class="floatlft" style="width:197px;">
<span class="floatlft" style="width:195px;text-align:center;"><a href="{$goods.url}" target="_blank" ><img src="{$goods.thumb}" alt="{$goods.name}" class="goodsimg" width=195 height=260/></a></span>
<span class="floatlft" style="width:195px;text-align:left;padding-top:5px;"><a href="{$goods.url}" target="_blank"title="{$goods.name|escape:html}">{$goods.name}</a> </span>

<!--更改开始部位-->
<!-- {if $goods_cat.id !=1} lee start-->
<span class="floatlft" style="width:195px;text-align:left;"> <font style="color:#000;font-weight:bold;">{$lang.market_prices}</font> <font class="market"style=" text-decoration:line-through;">{$goods.market_price}</font> </span>
<span class="floatlft" style="width:195px ;text-align:left;">
<!-- {if $goods.promote_price neq ""} -->
<font style="color:#000;font-weight:bold;">{$lang.promote_price}</font><font class=" CorRed">{$goods.promote_price} </font>
<!-- {else}-->
<font style="color:#000;font-weight:bold;">{$lang.shop_prices}</font><font class=" CorRed">{$goods.shop_price} </font>
<!--{/if}-->
</span>

<!-- {/if} lee end -->
<!--更改结束部位-->
</div>
<!--{/foreach}-->


</div>