我希望运费率标记出现在网站标题上,当客户访问我的国家的网站。如何在magento上编辑标题页?我搜索了magento扩展但没有找到任何东西。 这是我喜欢的帽子;
当我在topbar代码的header.phtml底部添加此代码时,我看到了这个结果; 首先是这段代码;
<div class="col-md6 col-sm-6 col-sms12">
<div class="currency-language">
echo $this->__('Shipping to'). ': ';
if ($this->getCountryCode()) {
echo '<img src="' . $this->getSkinUrl('images/countries/' . strtolower($this->getCountryCode()) . '.png') .'" alt="' . $this->getCountryName() . '" /> ';
<?php echo $this->getChildHtml('currency_top') ?>
<?php echo $this->getChildHtml('store_language') ?>
</div>
&#13;
这是结果上限;
我也可以为GEO IP编辑此代码吗?
答案 0 :(得分:0)
系统/配置/设计/ {标题标签} /欢迎文本
在此处添加文字。很遗憾,您无法在此处添加任何图片。
答案 1 :(得分:0)
你可以这样做。
将所有国家/地区标记上传到一个文件夹中,其国家/地区代码名称如下:it.png for Italy(让我们假设您将它们保存在此处:public_html \ skin \ frontend \ .. \ images \ countries)。您可以从here下载标准集。
然后使用类似这样的代码来检索它们:
echo $this->__('Shipping to'). ': ';
if ($this->getCountryCode()) {
echo '<img src="' . $this->getSkinUrl('images/countries/' . strtolower($this->getCountryCode()) . '.png') .'" alt="' . $this->getCountryName() . '" /> ';