我最近從magento 1.5升級到1.8,在升級「add your review
」鏈接後返回了一個類似於/review/product/list/id/250/#review-form
的URL。這個URL顯示了一個2列右對齊的模板,其中我的頁面是2列左設計....在升級之前,我使用下面的方法在產品視圖頁上顯示評論。「在您的產品查看頁面添加您的評論」鏈接升級到1.8後無法正常工作
我在catalog.xml
的「catalog_product_view
」句柄關閉之前添加了以下代碼。
<block type="review/product_view_list" name="product.info.product_additional_data" as="product_review" template="review/product/view/list.phtml">
<block type="review/form" name="product.review.form" as="review_form"/>
</block>
然後在目錄/產品view.phtml添加通話
<?php echo $this->getChildHtml('product_review') ?>
每一件事情是在1.5版本的罰款,並點擊「添加您的評論」的鏈接,它返回URL像www.mystore/product URL|#review-form
時,(這與版本1.8不同),因此顯示屏幕只跳轉到由同一頁面上的ID「review-form」定義的頁面位置,而不是像版本1.8那樣的新URL。
我已選中「add your review
」鏈接由函數「」生成「,它不會從1.5更改爲1.8。 review.xml中的1.5到1.8也沒有任何變化。所以我迷路了。
我的1.5版本是由其他開發人員創建的,可能有些事情需要做一些其他的地方纔能使用上面的方法來顯示產品頁面上的評論....爲什麼同樣的功能getReviewsSummaryHtml
返回不同的代碼看起來相同的URL從1.5到1.8?