0
我是新來的PHP。任何人都可以指導我如何在產品頁面上顯示製造商的國家名稱。我做了幾個實驗,如重寫ProductController.php和其他技巧,但失敗。我也在互聯網上嘗試過不同的解決方案,但無法成功。提前致謝。顯示製造商國家Prestashop 1.6電子商務頁面的國家名稱
我是新來的PHP。任何人都可以指導我如何在產品頁面上顯示製造商的國家名稱。我做了幾個實驗,如重寫ProductController.php和其他技巧,但失敗。我也在互聯網上嘗試過不同的解決方案,但無法成功。提前致謝。顯示製造商國家Prestashop 1.6電子商務頁面的國家名稱
請注意,製造商可以有多個地址。此代碼只能從首地址獲取國家/地區。
覆蓋控制器ProductController
在override/controllers/front
:
class ProductController extends ProductControllerCore
{
public function initContent()
{
parent::initContent();
if (!$this->errors) {
$manufacturer = new Manufacturer((int)$this->product->id_manufacturer, $this->context->language->id);
$manufacturerAddress = $manufacturer->getAddresses($this->context->language->id);
if (isset($manufacturerAddress) && $manufacturerAddress[0]['country']) {
$this->context->smarty->assign(array(
'manufacturer_country' => $manufacturerAddress[0]['country'],
));
}
}
}
}
而在你的TPL打印:
{$manufacturer_country|escape:'html':'UTF-8'}
記得刪除cache/class_index.php
當你重寫控制器。