Magento 移动属性.phtml

发布于 2024-10-16 07:49:34 字数 65 浏览 2 评论 0原文

我需要删除 view.phtml 中的简短描述并替换为 attribute.phtml 选项卡...该怎么做?谢谢。

i need to remove short description in the view.phtml and replace with attribute.phtml tab...how to do it? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唐婉 2024-10-23 07:49:34

编辑主题的 template/catalog/product/view.phtml (不是基本主题,可能会被覆盖)并将其替换

<?php if ($_product->getShortDescription()):?>
    <div class="short-description">
        <h2><?php echo $this->__('Quick Overview') ?></h2>
        <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
    </div>
<?php endif;?>

为:

<?php echo $this->getChildHtml('additional') ?>

并在您看到同一行的地方将其删除。这避免了重复。

Edit your theme's template/catalog/product/view.phtml (not the base theme's, that can get overwritten) and replace this:

<?php if ($_product->getShortDescription()):?>
    <div class="short-description">
        <h2><?php echo $this->__('Quick Overview') ?></h2>
        <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
    </div>
<?php endif;?>

with this:

<?php echo $this->getChildHtml('additional') ?>

And further down where you see the same line delete it. This avoids duplication.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文