Jump to content

chrome和遨游3版本下错位


babylonjudge

Recommended Posts

1.网站搜索的时候会出现错位现象,在IE,FIREFOX下显示正常,但在chrome和遨游3版本下出现错位。
网址:www.allshoesbuy.com 搜索nike. 出现错位。

2.关于评论,不知道为什么,评论发表后,无法看到评论。什么问题 ?

3.除了产品页面,其他页面如果有ADD TO CART,能否实现点击ADD TO CART之后进入产品页面选择产品属性之类的。而不是其他页面的ADD TO CART点击之后直接加入购物车?

4.prestashop的官网用firefox的访问速度远高于IE。嘿嘿 这是为什么呀。

23855_Ro1phRelskTk12DdgGtZ_t

Link to comment
Share on other sites

1.网站搜索的时候会出现错位现象,在IE,FIREFOX下显示正常,但在chrome和遨游3版本下出现错位。
网址:www.allshoesbuy.com 搜索nike. 出现错位。


product-list.tpl里,#product_list li嵌套错误。不晓得具体是什么代码改错了。


2.关于评论,不知道为什么,评论发表后,无法看到评论。什么问题 ?


先看看productcomments里moderate的设置。默认设置是需要验证才能在FO显示。



3.除了产品页面,其他页面如果有ADD TO CART,能否实现点击ADD TO CART之后进入产品页面选择产品属性之类的。而不是其他页面的ADD TO CART点击之后直接加入购物车?


这个效果不就是“View”产品吗?为什么还要用“ADD TO CART”重复“View”按钮的功能呢?如果需要,修改一下“ADD TO CART”的代码就可以了。


4.prestashop的官网用firefox的访问速度远高于IE。


Google一下浏览器测试对比吧。
Link to comment
Share on other sites

>{if isset($products)}
   <!-- Products list -->
</pre>
<ul>
   {foreach from=$products item=product name=products}


{if ($product.allow_oosp OR $product.quantity > 0)}{l s='Available'}{else}{l s='Out of stock'}{/if}
getImageLink($product.link_rewrite, $product.id_image, 'home')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" />
{if $product.new == 1}{l s='new'}{/if}{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}

{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}



               {if $product.on_sale}
{l s='On sale!'}
               {elseif ($product.reduction_price != 0 || $product.reduction_percent != 0) && ($product.reduction_from == $product.reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product.reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product.reduction_from))}
{l s='Price lowered!'}


                       {displayWtPrice p=$product.price_without_reduction}

               {/if}


{if !$priceDisplay || $priceDisplay == 2}{convertPrice price=$product.price}{if $priceDisplay == 2} {l s='+Tx'}{/if}{/if}
               {if $priceDisplay}{convertPrice price=$product.price_tax_exc}{if $priceDisplay == 2} {l s='-Tx'}{/if}{/if}
{if ($product.allow_oosp OR $product.quantity > 0) && $product.customizable != 2} {/if}

Free Shipping!


{l s='Add to cart'}




   {/foreach}
</ul>
<br>   <!-- /Products list --><br


这是我的代码 我在本地测试的话 同样的product_list.tpl文件 同样的CSS 同样的浏览器 本地就显示正常呀。

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...