Magento 中缺少简短描述的第一个字母
Missing First Letter of Short Description in Magento
我可以毫无顾虑地将简短描述添加到后端,但是当我查看前端时它缺少第一个字母。
例如:http://www.bluescribecloud.com/index.php/nautical/bells/bronze-ship-s-bell-4.html
正如您在点击页面时看到的那样,图像右侧是“简短描述”文本,第一个字母丢失了。每个产品都一样。
您可以在产品名称底部的描述部分看到正确的描述。
附带说明一下,是否可以让简短描述以 3 个尾随省略号结束而不是突然结束?
谢谢!!!
当您回显模板文件中的描述时,肯定会出现一些问题。找到使用的模板,并修复问题,或者您可以在此处提供代码。
答对了,把密码改成这样;
<?php if ($_product->getShortDescription()):?>
<div class="short-description"> <!--<h2><?php echo $this->__('Quick Overview') ?></h2>-->
<?php $des = $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description');?>
<div class="std">
<?php if(strlen($des) > 200) {
echo substr($des,0,200).'...';
} else {
echo $des; } ?>
</div></div>
<?php endif;?>
我可以毫无顾虑地将简短描述添加到后端,但是当我查看前端时它缺少第一个字母。
例如:http://www.bluescribecloud.com/index.php/nautical/bells/bronze-ship-s-bell-4.html
正如您在点击页面时看到的那样,图像右侧是“简短描述”文本,第一个字母丢失了。每个产品都一样。
您可以在产品名称底部的描述部分看到正确的描述。
附带说明一下,是否可以让简短描述以 3 个尾随省略号结束而不是突然结束?
谢谢!!!
当您回显模板文件中的描述时,肯定会出现一些问题。找到使用的模板,并修复问题,或者您可以在此处提供代码。
答对了,把密码改成这样;
<?php if ($_product->getShortDescription()):?>
<div class="short-description"> <!--<h2><?php echo $this->__('Quick Overview') ?></h2>-->
<?php $des = $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description');?>
<div class="std">
<?php if(strlen($des) > 200) {
echo substr($des,0,200).'...';
} else {
echo $des; } ?>
</div></div>
<?php endif;?>