2
我正在嘗試使用Magento ver創建一個商店。 1.8.1.0。我的編程能力並不好。我是一名電子工程師,只知道嵌入式C。所以,請好好對待我。getPriceHtml函數的返回值包括undefined
我已經從here安裝了主題鞋店。這個主題目前運行良好,但我遇到了價格附近的問題,有一個文本「未定義」,因爲它可以在下面的截圖中看到。
我用我的瀏覽器來檢查這一塊的代碼,它是這樣的:
<div class="price-box">
<span class="regular-price" id="product-price-1">
<span class="price">
<span class="cur_sym">1</span>
<span class="price_int">9,99 TL.</span>
<span class="price_deci">undefined</span></span>
</span>
</div>
<div class="actions">
<a class="details" href="http://www.myurl.com/store/denek-urun.html" title="Details">Details</a>
</div>
,並通過new_products.phtml頁是一部分生成的HTML代碼主題和使用以下內容打印上述HTML代碼:
<?php echo $this->getPriceHtml($_product, true) ?>
As據我瞭解,「未定義」來自價格的小數部分。我檢查了app/design/frontend/base/default/template/catalog/product/price.phtml
,但什麼都不明白。
我該如何擺脫「未定義」的文字?
這是幾乎可以肯定他們相關。交換演示主題,看看問題是否存在。對賣給你主題的人進行處理,可能會存在他們沒有告訴你的模塊依賴關係。 –