在我正在处理http://www.idealtilenyc.com/index.php/lena-test-tile.html
的网站上出于某种原因,产品页面未在Chrome中显示,在Firefox和IE中,一切都很好。有谁知道可能出错了什么?
谢谢!
以下是代码:
<?php $_helper = $this->helper('catalog/output'); ?>
<?php $_product = $this->getProduct(); ?>
<script type="text/javascript">
var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
</script>
<div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
<div class="product-view">
<!------------------ SHOWROOM -------------->
<?php
$current_category = Mage::registry('current_category');
if ($current_category->getName() == 'Showroom'): ?> //this is line 55
<div class="product-essential">
<form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
<div class="no-display">
<input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
<input type="hidden" name="related_product" id="related-products-field" value="" />
</div>
答案 0 :(得分:0)
似乎您的服务器页面内存限制很低。因此,请尝试在php.ini文件中增加页面内存限制。设置内存限制,例如memory_limit = 250M
答案 1 :(得分:0)
如果你没有在view.phtml上做太多改动,那么前两行代码将为<?php $_product = $this->getProduct(); ?>
现在,使用上面的对象打印产品名称,如:<?php echo $_product->getName(); ?>
希望这会有所帮助!